create a basic layout structure

This commit is contained in:
Santiago Forero 2021-10-12 15:16:56 -05:00
parent 8d727fa7e5
commit 5b56419133
6 changed files with 80 additions and 39 deletions

6
content/_index.md Normal file
View File

@ -0,0 +1,6 @@
---
title: Santiago Forero
---
# ~forero
Hey, you made it to my site

25
content/about.md Normal file
View File

@ -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

22
content/donations.md Normal file
View File

@ -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)

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
<body>
{{ partial "nav.html" . }}
<div id="content">
{{ .Content }}
</div>
{{ partial "footer.html" . }}
</body>
</html>

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
<body>
{{ partial "nav.html" . }}
<div id="content">
{{ .Content }}
</div>
{{ partial "footer.html" . }}
</body>
</html>

View File

@ -1,39 +1,3 @@
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
<body>
{{ partial "nav.html" . }}
<div id="content">
<h2>hi</h2>
<p>I'm known as ~forero, I am 15 years old, I like computers and I'm an athlete.</p>
<h2>contact</h2>
<ul>
<li>email: <a href="mailto:santiago@forero.xyz">santiago@forero.xyz</a></li>
<li>irc: <a href="https://web.libera.chat/#forero">join #forero on libera.chat</a> or DM forero</li>
</ul>
<h2>social media</h2>
<ul>
<li><a href="https://www.youtube.com/channel/UC0l709qNeW3ZpZGdsR2Z6pw">YouTube channel</a></li>
<li>Instagram: <a href="https://www.instagram.com/santiagoforer/">@santiagoforer</a></li>
<li>GitHub: <a href="https://github.com/forerosantiago/">forerosantiago</a></li>
<li>Mastodon: <a href="https://tilde.zone/@forero">@forero@tilde.zone</a></li>
</ul>
<h2>donations</h2>
<h3>bitcoin</h3>
<p><b>Address:</b> bc1q8xv9ktfmywwskpl978h0f9kdvrrvcw68z67cc4</p>
<p><b>QR:</b></p>
<img src="bitcoin.png" alt="">
<h3>nequi</h3>
<p>If you are in Colombia you can send your money here: +573053156599</p>
<p><b>QR:</b></p>
<img src="nequi.png" alt="">
</div>
{{ partial "footer.html" . }}
</body>
</html>
{{ define "main" }}
{{ .Content }}
{{ end }}