diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..d0d3a79 --- /dev/null +++ b/config.toml @@ -0,0 +1,3 @@ +baseURL = 'https://forero.xyz/' +languageCode = 'en-us' +title = 'Santiago Forero' \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..c6350f9 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + {{ .Site.Title }} + + + {{ partial "nav.html" . }} +
+

hi

+

I'm known as ~forero, I am 15 years old, I like computers and I'm an athlete.

+ +

contact

+ + +

social media

+ + +

donations

+

bitcoin

+

Address: bc1q8xv9ktfmywwskpl978h0f9kdvrrvcw68z67cc4

+

QR:

+ + +

nequi

+

If you are in Colombia you can send your money here: +573053156599

+

QR:

+ + +
+ {{ partial "footer.html" . }} + + + \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..12b0dc0 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,9 @@ +
+ \ No newline at end of file diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html new file mode 100644 index 0000000..69d3b13 --- /dev/null +++ b/layouts/partials/nav.html @@ -0,0 +1,3 @@ + diff --git a/static/bitcoin.png b/static/bitcoin.png new file mode 100644 index 0000000..e2ac791 Binary files /dev/null and b/static/bitcoin.png differ diff --git a/static/nequi.png b/static/nequi.png new file mode 100644 index 0000000..b7e8a09 Binary files /dev/null and b/static/nequi.png differ diff --git a/static/theme.css b/static/theme.css new file mode 100644 index 0000000..861e33d --- /dev/null +++ b/static/theme.css @@ -0,0 +1,33 @@ +body { + background: #1d1f21; + color: #c5c8c6; + font-family: 'JetBrains Mono', monospace; +} + +#main-nav { + text-align: center; + margin-bottom: 5%; +} + +#main-nav > a { + margin: 5%; +} + +a { + color: #b5bd68; + text-decoration: none; +} + +a:hover { + opacity: 0.8; + text-decoration: underline; +} + +#content { + width: 80%; + margin: auto; +} + +#main-footer { + margin: 5%; +} \ No newline at end of file