my_blog/templates/index.html

59 lines
2.9 KiB
HTML

{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block page_content %}
<main id="page-content">
<aside id="skip-links">
<nav>
<h3>skip links</h3>
<ul class="link-list">
<li><a href="#introductions">skip to "Introductions"</a></li>
<li><a href="#contact-info">skip to "Contact Info"</a></li>
<li><a href="#latest-posts">skip to "Latest Posts"</a></li>
<li><a href="#botany">skip to "My Botany Plant"</a></li>
</ul>
</nav>
</aside>
<div id="main-content">
<section id="introductions" aria-label="Introductions">
<h2>Introductions</h2>
<p>Hello!</p>
<p>On the internet I go by chmod777. Feel free to ask me anything.</p>
<p>A computer science graduate with only vague ideas of what they are doing in life.</p>
<p>Lately my life has been revolving around a blue colar job that just ended. In my limited spare time I work on side projects that interest me. They will be the the focus of this blog.</p>
<p>If you follow me on mastodon you may have seen my posts about one of my projects Roll Lang. It is a dice notation interpreter with similar syntax to Roll20's. It's getting close to a 1.0 version.</p>
<p>I'm interested in contributing to a decentralized web. Currently I'm working on an application that uses conflict-free replicated data types(CRDT) for syncronous editing of a digital Kanban style board.</p>
<p>Gardening is a hobby of mine. I'll give an update on the garden when I prune the cherry and apple trees this fall.</p>
<p>I've slowly been building an aluminium Settlers of Cattan board out of casted aluminum tiles. This is my longest running project mostly due to the weather, my casting setup, and motivation to deal with both.</p>
<p>It's been years since I've used an arduino but I recently bought a Raspberry Pi Pico and have been tinkering with it, as well as diving into KiCad. I've been designing a wireless controller for future electronics projects which may include a wheeled robot, and/or a drone.</p>
<p>I've started many Vulkan, OpenGL, and WebGL projects with grand intentions. One of these days I'll get around to getting one of them into a state that I feel is worth sharing.</p>
</section>
<section id="contact-info" aria-label="Contact Info">
<h2>Contact Info</h2>
<ul>
<li>fediverse/mastodon: @chmod777@tilde.zone</li>
<li>irc.tilde.chat: chmodrwx or chmod777</li>
<li>gitea: tildegit.org/chmod777</li>
</ul>
</section>
<section id="latest-posts" aria-label="Latest Posts">
<h2>Latest Posts</h2>
{% for post in posts | slice(end=3) %}
{{ macros::post_card(post=post) }}
{% endfor %}
<ul>
<li><a href="/blog/blog.html">blog home page</a></li>
<li><a href="/blog/archived.html">archived posts</a></li>
</ul>
</section>
<section id="botany" tabindex="0" aria-label="My Botany Plant">
<h2>My Botany Plant</h2>
</section>
</div>
</main>
{% endblock page_content %}