-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (40 loc) · 1.1 KB
/
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
41
42
---
layout: default
---
<h1 style="color: orangered;">Welcome!</h1>
<p>Welcome to my corner of the web. A bit of a mix of ephemera, ideas, music and other oddities.</p>
<div class="home">
<ul class="post-list">
{% for post in site.posts %}
<li>
<h2 class="post-link">
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
{{ post.excerpt | strip_html }}
<br />
<span class="post-meta">
<a href="{{ post.url | prepend: site.baseurl }}">Posted {{ post.date | date: "%b %-d, %Y" }}</a>
{% if post.tags != empty %}
§
{% endif %}
</span>
<ul class="horizontal small">
<li>tagged</li>
{% for tag in post.tags %}
<li>{{ tag | downcase }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<h1 class="page-heading">Pages and categories</h1>
<ul class="post-list">
{% for post in site.html_pages %}
{% if post.title %}
<li>
<a href="{{ post.url| prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>