update index page
This commit is contained in:
parent
3f87b47282
commit
ed45fc146c
|
@ -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.
|
|
@ -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>
|
||||
|
|
@ -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.
|
|
@ -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.
|
|
@ -1,16 +1,11 @@
|
|||
{{ define "main" }}
|
||||
<div class="h-card idx-card">
|
||||
<div id="sidebar">
|
||||
<a class="u-url" href="https://yequari.com"><img class="u-photo" src="/images/starscream_d.png"></a>
|
||||
</div>
|
||||
<div id="content">
|
||||
<p class="p-note">
|
||||
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!
|
||||
</p>
|
||||
<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 id="sidebar" class="sidebar left">
|
||||
{{ partial "left-sidebar.html" . }}
|
||||
</div>
|
||||
<div id="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
<div id="right-sidebar" class="sidebar right">
|
||||
{{ partial "right-sidebar.html" . }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
|
|
@ -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 }}
|
|
@ -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>
|
Loading…
Reference in New Issue