upd
This commit is contained in:
@ -15,13 +15,6 @@
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<p>
|
||||
{% if page.template == 'index.jinja2' %}
|
||||
{{ site.title }}
|
||||
{% else %}
|
||||
<a href="/">{{ site.title }}</a> / {{ page.title }}</p>
|
||||
{% endif %}
|
||||
</p>
|
||||
<p>
|
||||
{% for link in site.links %}
|
||||
<a href="{{ link.url }}" target="{{ link.target }}">
|
||||
|
@ -4,10 +4,13 @@
|
||||
<ul id="posts">
|
||||
{% for post in aggr.posts %}
|
||||
<li>
|
||||
<a href="{{ post.path }}">{{ post.title }}</a>
|
||||
<span class="meta"> — {{ post.date }}</span>
|
||||
<a href="{{ post.path }}">{{ post.title }}</a><br>
|
||||
<span class="meta">{{ post.date }}</span>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
{{ html | safe }}
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user