update index page

This commit is contained in:
yequari 2023-05-17 22:38:37 -07:00
parent 3f87b47282
commit ed45fc146c
7 changed files with 53 additions and 28 deletions

4
content/_index.md Normal file
View File

@ -0,0 +1,4 @@
---
title: yequari.com
---
Hello, I'm yequari, welcome to my homepage! I write about my hobbies, which include collecting [Transformers toys](/transformers), listening to [music](/music), and [gaming](#), as well as random thoughts I have on my [blog](/blog). Also, I like to publish my [notes](/notes), which are mostly about tech, as a personal knowledge base.

View File

@ -1,15 +0,0 @@
---
title: About
---
<div class="h-card idx-card">
<div id="sidebar">
</div>
<div id="content">
<h1>About Me</h1>
<p class="p-note">
Hello, I'm <span class="p-name">yequari</span>. I like to play TCGs and TTRPGs. I've played a lot of D&D 5e but am currently exploring Pathfinder 2. I'm a software developer, interested in the smallweb and permacomputing, and trying to learn more about systems programming. I love to collect Transformers figures, my favorite is Starscream.
</p>
</div>
</div>

6
content/about.md Normal file
View File

@ -0,0 +1,6 @@
---
title: About
---
# About Me
Hello, I'm yequari. I like to play TCGs and TTRPGs. I've played a lot of D&D 5e but am currently exploring Pathfinder 2. I'm a software developer, interested in the smallweb and permacomputing, and trying to learn more about systems programming. I love to collect Transformers figures, my favorite is Starscream.

28
content/updates.md Normal file
View File

@ -0,0 +1,28 @@
---
title: Changelog
---
### Changelog
**04/18/2023**: Update Mastodon link to reflect moving to a new instance.
**04/17/2023**: Regenerate website with Hugo. Remove Yesterweb webring widget following the closure of the webring
**03/22/2023**: Added more links to [links](/links) page.
**01/09/2023**: Change header logo, add status.cafe widget, update CSS responsiveness
**12/26/2022**: More backend upgrades. Revamped the [links page](/links). Added some IndieWeb support, most notable webmentions! Check out my post [I Uninstalled TikTok, Again](/blog/2022/11/goodbye-tiktok) to see some webmentions in action :)
**11/14/2022**: Major update to the backend side of things, now the site is (mostly) statically generated, which saves resources! Added some topic pages in tech, and landing pages for music and transformers, which will have content soon. I've also added an RSS feed.
**11/7/2022**: Minor style edits, style is much more responsive
**11/6/2022**: Added topic pages for shrines / things I want to talk about
**7/22/2022**: Moved navigation back to the top, made sidebar content unique per page
**7/6/2022**: Revamped links page
**6/24/2022**: Removed music player and Google web fonts, changed max-height, minor color changes. Updated /now
**5/7/2022**: Moved navigation from the top to the side, added an audio player, made stylesheet more responsive.

View File

@ -1,16 +1,11 @@
{{ define "main" }} {{ define "main" }}
<div class="h-card idx-card"> <div id="sidebar" class="sidebar left">
<div id="sidebar"> {{ partial "left-sidebar.html" . }}
<a class="u-url" href="https://yequari.com"><img class="u-photo" src="/images/starscream_d.png"></a> </div>
</div> <div id="content">
<div id="content"> {{ .Content }}
<p class="p-note"> </div>
Hello I'm <span class="p-name">yequari</span>. I like to code, play TCGs, and collect Transformers. The Internet is a busy place, so thanks for checking out my small corner of it. Come in and take a break! <div id="right-sidebar" class="sidebar right">
</p> {{ partial "right-sidebar.html" . }}
<p>
<div id="statuscafe"><div id="statuscafe-username"></div><div id="statuscafe-content"></div></div><script src="https://status.cafe/current-status.js?name=yequari" defer></script>
</p>
</div>
</div> </div>
{{ end }} {{ end }}

View File

@ -0,0 +1,4 @@
<p>Latest Blog Posts</p>
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
<p><a href="{{ .RelPermalink }}">{{ .Name }}</a></p>
{{ end }}

View File

@ -0,0 +1,3 @@
<p>
<div id="statuscafe"><div id="statuscafe-username"></div><div id="statuscafe-content"></div></div><script src="https://status.cafe/current-status.js?name=yequari" defer></script>
</p>