mirror of
https://github.com/wezm/wezm.net.git
synced 2025-04-09 05:00:42 +00:00
Compare commits
5 commits
cbb4856a9b
...
65a0f47e1a
Author | SHA1 | Date | |
---|---|---|---|
65a0f47e1a | |||
b03dae8fd9 | |||
13f34d365b | |||
08b8a7a603 | |||
c2799792d6 |
3 changed files with 54 additions and 47 deletions
v2/templates
|
@ -35,17 +35,15 @@
|
|||
|
||||
<ul class="projects">
|
||||
<li>
|
||||
<a href="https://github.com/wezm/feedlynx" class="no-border">
|
||||
<img src="{{ config.base_url }}/images/feedlynx.svg" width="32" alt="">
|
||||
<a href="https://github.com/wezm/feedlynx">
|
||||
<img src="{{ config.base_url }}/images/feedlynx.svg" width="32" alt="">Feedlynx
|
||||
</a>
|
||||
<a href="https://github.com/wezm/feedlynx">Feedlynx</a>
|
||||
<p>Collect links to read or watch later in an RSS feed.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/wezm/rsspls" class="no-border">
|
||||
<span class="emoji-img">📰</span>
|
||||
<a href="https://github.com/wezm/rsspls">
|
||||
<span class="emoji-img">📰</span>RSS Please
|
||||
</a>
|
||||
<a href="https://github.com/wezm/rsspls">RSS Please</a>
|
||||
<p>Generate RSS feeds from web pages.</p>
|
||||
</li>
|
||||
<li>
|
||||
|
@ -61,10 +59,9 @@
|
|||
<p>Font parser, shaping engine, and subsetter implemented in Rust.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/wezm/git-grab" class="no-border">
|
||||
<span class="emoji-img">⤵️</span>
|
||||
<a href="https://github.com/wezm/git-grab">
|
||||
<span class="emoji-img">⤵️</span>Git Grab
|
||||
</a>
|
||||
<a href="https://github.com/wezm/git-grab">Git Grab</a>
|
||||
<p>Clone a git repository into a standard location organised by domain and path.</p>
|
||||
</li>
|
||||
<li>
|
||||
|
|
|
@ -27,7 +27,11 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1 class="logo"><a href="{{ config.base_url }}/" class="no-border hover-underline">👨💻 {{ config.title }}</a></h1>
|
||||
<header>
|
||||
<h1 class="logo">
|
||||
<a href="{{ config.base_url }}/" class="no-border hover-underline">👨💻 {{ config.title }}</a>
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
{% for ancestor in page.ancestors %}
|
||||
|
@ -41,7 +45,8 @@
|
|||
{% endfor %}
|
||||
</nav>
|
||||
|
||||
<article id="{{ page.slug }}">
|
||||
<main>
|
||||
<article id="{{ page.slug }}">
|
||||
<h2>
|
||||
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
||||
</h2>
|
||||
|
@ -79,5 +84,6 @@
|
|||
or <a href="mailto:wes@wezm.net">send me an email</a>.
|
||||
</p>
|
||||
</div>
|
||||
</article>
|
||||
</article>
|
||||
</main>
|
||||
{% endblock %}
|
||||
|
|
|
@ -3,7 +3,11 @@
|
|||
{% block title %}{{ section.title }} - {{ config.title }}{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1 class="logo"><a href="{{ config.base_url }}/" class="no-border hover-underline">👨💻 {{ config.title }}</a></h1>
|
||||
<header>
|
||||
<h1 class="logo">
|
||||
<a href="{{ config.base_url }}/" class="no-border hover-underline">👨💻 {{ config.title }}</a>
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
{% for ancestor in section.ancestors %}
|
||||
|
|
Loading…
Reference in a new issue