summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 6d05dcdc1077fa00dcd88cec480ee3cffdd60478 (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
27
28
29
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>{{page.title}}</title>
    <link href='http://fonts.googleapis.com/css?family=PT+Serif:400,400italic&subset=latin,latin-ext' rel='stylesheet' />
    <link rel="alternate" type="application/rss+xml" href="/rss.xml" />
    <link rel="stylesheet" href="/css/highlight.css" />
    <link rel="stylesheet" href="/css/main.css" />
  </head>

  <body>
    <div id="bucket">
      <h1 id="logo"><a href="/">{{site.title}}</a></h1>
      <h1>{{page.title}}</h1>
      <cite id="slogan">{{page.date | date_to_long_string}}</cite>

      {{content}}

      <aside>
      <h3>Tags</h3>
      {% for tag in page.tags %}
      <li>{{tag}}</li>
      {% endfor %}
      </aside>

    </div>
  </body>
</html>