summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: c889b8b3ce669e1290bd64325078513a1d49713a (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
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>{{page.title}}</title>
    <link href='http://fonts.googleapis.com/css?family=Gentium+Book+Basic:400,400italic&subset=latin,latin-ext' rel='stylesheet' />
    <link rel="stylesheet" href="/css/highlight.css" />
    <link rel="stylesheet" href="/css/main.css" />
  </head>

  <body>
    <div id="bucket">
      <h1 id="logo">{{site.title}}</h1>
      <h1>{{page.title}}</h1>

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

      {{content}}
    </div>
  </body>
</html>