satchlj.com/themes/zenn/templates/landing.html

74 lines
3.3 KiB
HTML

{% extends "site.html" %}
{% import "post_macros.html" as post_macros %}
{% block header %}
<header id="banner">
<p class="greeting top">Hey, I'm</p>
<a href="/" class="logo">{{ config.extra.zenn_title }}</a>
<p class="greeting bottom">I build and break applications.</p>
<div class="links">
<div class="left">
<b>Quick links</b>
<ul>
<li class="described">
<span>
Easily and securely share files from the CLI.
Fully featured Firefox Send client.
</span>
<a href="https://github.com/timvisee/ffsend" target="_blank">ffsend</a>
</li>
<li class="described">
<span>
Bar management application for payments and
inventory.
</span>
<a href="https://github.com/timvisee/barbapappa" target="_blank">BARbapAPPa</a>
</li>
<li>
<a href="{{ get_url(path="@/projects.md") | safe }}">Projects</a>
&nbsp;&middot;&nbsp;
<a href="{{ get_url(path="@/blog/_index.md") | safe }}">Blog</a>
&nbsp;&middot;&nbsp;
<a href="{{ get_url(path="@/about.md") | safe }}">About</a>
&nbsp;&middot;&nbsp;
<a href="{{ get_url(path="@/contact.md") | safe }}">Contact</a>
</li>
</ul>
</div>
<div>
<b>Me around the web</b>
<ul>
<li>
<a href="https://github.com/timvisee" target="_blank">GitHub</a>
&nbsp;&middot;&nbsp;
<a href="https://gitlab.com/timvisee" target="_blank">GitLab</a>
&nbsp;&middot;&nbsp;
<a href="https://git.sr.ht/~timvisee" target="_blank">sr.ht</a>
</li>
<li>
<a href="https://stackoverflow.com/users/1000145" target="_blank">StackOverflow</a>
&nbsp;&middot;&nbsp;
<a href="https://stackexchange.com/users/980236?tab=accounts" target="_blank">Exchange</a>
</li>
<li>
<a href="https://reddit.com/r/timvisee" target="_blank">Reddit</a>
&nbsp;&middot;&nbsp;
<a href="https://news.ycombinator.com/user?id=timvisee" target="_blank">Hacker News</a>
&nbsp;&middot;&nbsp;
<a href="https://lobste.rs/u/timvisee/" target="_blank">Lobsters</a>
</li>
<li>
<a href="https://mastodon.social/@timvisee" target="_blank">Mastodon</a>
</li>
<li><a href="{{ get_url(path="@/about.md#me-around-the-web") | safe }}"><i>More...</i></a></li>
</ul>
</div>
</div>
</header>
{% endblock header %}
{% block body %}
{{ section.content | safe }}
{% endblock body %}