blob: 269019625d6df269bc52d872ebc1e8f0a52b814e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends "base.html" %}
{% block content %}
<h1>{{ section.title }}</h1>
<div class="blog-list-content">
<pre class="wrap blog-ls">
<span class="white">$ </span><span class="green">ls</span>
</pre>
<div class="blog-list">
{% for page in section.pages %}
<pre class="blog-entry wrap">
<a href="{{ page.permalink | safe}}" class="blog-date"><span class="yellow">{{ page.date }}.md</span></a>
{% if page.extra.image %}
<div class="blog-image-wrap">
<a href="{{ page.permalink | safe}}"><img src="{{ page.extra.image | safe}}" alt="{{ page.title }}" class="blog-thumbnail"></a>
</div>
{% endif %}
<h2 class="blog-title">
<a href="{{ page.permalink | safe}}">{{ page.title }}</a>
</h2>
</pre>
{% endfor %}
</div>
</div>
{% endblock content %}
|