mirror of
https://github.com/venthur/blag.git
synced 2025-11-26 05:02:58 +00:00
updated default theme
This commit is contained in:
@@ -23,9 +23,9 @@
|
|||||||
<h2>{{ site.description }}</h2>
|
<h2>{{ site.description }}</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><h2><a href="/">Blog</a></h2></li>
|
<li><h2><a href="/">Blog</a></h2></li>
|
||||||
|
<li><h2><a href="/archive.html">Archive</a></h2></li>
|
||||||
<li><h2><a href="/tags/">Tags</a></h2></li>
|
<li><h2><a href="/tags/">Tags</a></h2></li>
|
||||||
<li><h2><a href="/about.html">About Me</a></h2></li>
|
<li><h2><a href="/about.html">About Me</a></h2></li>
|
||||||
<li><h2><a href="/atom.xml">Feed</a></h2></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
@@ -38,10 +38,11 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
|
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
|
||||||
<br>
|
<br>
|
||||||
|
Subscribe to the <a href="/atom.xml">atom feed</a>.
|
||||||
|
<br>
|
||||||
Contact me via
|
Contact me via
|
||||||
<a rel="me" href="TODO">[TODO] Mastodon</a>,
|
<a rel="me" href="https://mastodon.social/[FIXME]">[FIXME] Mastodon</a> or
|
||||||
<a href="TODO">[TODO] Twitter</a> or
|
<a href="https://github.com/[FIXME]">[FIXME] Github</a>.
|
||||||
<a href="TODO">[TODO] Github</a>.
|
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -3,18 +3,20 @@
|
|||||||
{% block title %}{{ site.title }}{% endblock %}
|
{% block title %}{{ site.title }}{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% for entry in archive[:10] %}
|
|
||||||
|
|
||||||
{% if entry.title %}
|
{% for entry in archive[:15] %}
|
||||||
<h1><a href="{{entry.dst}}">{{entry.title}}</a></h1>
|
|
||||||
|
|
||||||
{% if entry.description %}
|
<article>
|
||||||
<p>— {{ entry.description }}</p>
|
<header>
|
||||||
{% endif %}
|
<time datetime="{{ entry.date }}">{{ entry.date.date() }}</time>
|
||||||
|
<div>
|
||||||
{% endif %}
|
<h2><a href="{{ entry.dst }}">{{ entry.title }}</a></h2>
|
||||||
|
{% if entry.description %}
|
||||||
<p>Written on {{ entry.date.date() }}.</p>
|
<p>— {{ entry.description }}</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</article>
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block title %}Tag: {{ tag }}{% endblock %}
|
{% block title %}#{{ tag }}{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user