diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..f13d7de --- /dev/null +++ b/content/_index.md @@ -0,0 +1,6 @@ +--- +title: Santiago Forero +--- +# ~forero + +Hey, you made it to my site \ No newline at end of file diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..45f097c --- /dev/null +++ b/content/about.md @@ -0,0 +1,25 @@ +--- +title: About me +--- + +# About me +My name is Santiago Forero, but I'm also known as **~forero**. + +I am 15 years old, I like computers, I'm ambidextrous and I'm an athlete. + +- **country:** Colombia 🇨🇴 +- **date of birth:** 6th may 2006 +- **pronouns:** he/him +- **distro:** arch linux + +## social media +- [YouTube channel](https://www.youtube.com/channel/UC0l709qNeW3ZpZGdsR2Z6pw) +- Instagram: [@santiagoforer](https://www.instagram.com/santiagoforer/) +- GitHub: [forerosantiago](https://github.com/forerosantiago/) +- Mastodon: [@forero@tilde.zone](https://tilde.zone/@forero) + +## contact +- **email:** [santiago@forero.xyz](mailto:santiago@forero.xyz) +- **irc:** I'm forero on libera.chat, [join #forero](https://web.libera.chat/#forero) or DM me +- **discord:** Forero#9233 + diff --git a/content/donations.md b/content/donations.md new file mode 100644 index 0000000..216a7f6 --- /dev/null +++ b/content/donations.md @@ -0,0 +1,22 @@ +--- +title: Donations +--- + +# Donations + +All donations are appreciated! + +### Bitcoin +**Address:** bc1q8xv9ktfmywwskpl978h0f9kdvrrvcw68z67cc4 + +**QR:** + +![](/bitcoin.png) + +### Nequi + +If you are in Colombia you can send your money through nequi here: *+573053156599* + +**QR:** + +![](/nequi.png) \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..9e15b99 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,12 @@ + + +{{ partial "head.html" . }} + + {{ partial "nav.html" . }} +
+ {{ .Content }} +
+ {{ partial "footer.html" . }} + + + \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..9e15b99 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,12 @@ + + +{{ partial "head.html" . }} + + {{ partial "nav.html" . }} +
+ {{ .Content }} +
+ {{ partial "footer.html" . }} + + + \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html index 62a34e7..cff89c9 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,39 +1,3 @@ - - -{{ partial "head.html" . }} - - {{ 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 +{{ define "main" }} + {{ .Content }} +{{ end }} \ No newline at end of file