-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 886 Bytes
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
layout: default
---
<main class="main">
{% for category in site.categories %}
<div class="row row--category">
<h3>{{ category | first }}</h3>
</div>
{% for posts in category reversed %}
{% for post in posts reversed %}
{% if post.title %}
<div class="row">
<div class="description">
<h5>{{ post.title }}</h5>
<p>{{ post.description }}
<br><br>
</p>
</div>
<div class="example">
{{ post.content }}
</div>
<label for="source">Markup</label>
<pre class="prettyprint linenums lang-html" lang="html" name="source">
<code>
{{ post.content | xml_escape | texttify }}
</code>
</pre>
</div>
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
</main>