summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 3422dbef6477ef4f9756987e6a9c6641f4532d0b (plain) (blame)
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
---
layout: default
---
<h2 class="post-title"><a href="{{ page.url }}">{{ page.title }}</a></h2>

<p class="date">{{ page.date | date_to_string }}</p>

{{ content }}

<hr />

<div id="call-to-action">
    <h3>Read More</h3>
    <ul>
    {% for post in site.related_posts %}{% if post.url != page.url %}
    <li>
        <a href="{{ post.url }}">{{ post.title }}</a>
        ({{ post.date | date_to_string }})
    </li>
    {% endif %}{% endfor %}
    </ul>
</div>

<hr/>

<footer>
    <span>I sleep all night and I work all day.</span><br/>
</footer>