summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 41d7085bebde30873028c7abf05db6c73de43727 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>{{page.title}} &bull; José Mota</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 id="disqus_thread"></div>
    </div>
    <script type="text/javascript">
        /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
        var disqus_shortname = 'josemotablog'; // required: replace example with your forum shortname

        /* * * DON'T EDIT BELOW THIS LINE * * */
        (function() {
            var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
            dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
            (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
        })();
    </script>
    <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
        
  </body>
</html>