summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: e25820319e7e37ef96971710eb1742c116eb3ba9 (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
44
45
46
47
48
49
50
51
52
53
<!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>

      <p>
        <a rel="license" 
          title="This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License." 
          href="http://creativecommons.org/licenses/by-nc-nd/3.0/deed.en_US">
          <img alt="Creative Commons License" 
          style="border-width:0" 
          src="http://i.creativecommons.org/l/by-nc-nd/3.0/80x15.png" />
        </a>
      </p>

      <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>