summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 19908d2907ff6ed87f21b5c5e8f4dfd9c9764db0 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
  <head>
    <title>{{page.title}} &bull; José Mota</title>
    {% include head.html %}
  </head>

  <body>
    <div id="title" class="text-center">
      <div class="container">
        <div class="col-md-8 col-md-offset-2">
          <h1 id="logo">
            <a href="/">
              <img src="/css/images/favicon.png"
                title="{{site.title}}"
                alt="{{site.title}}"/>
            </a>
          </h1>
          <h1>
            {{page.title}}
          </h1>

          <h2>
            <small id="slogan">{{page.date | date_to_long_string}}</small>
          </h2>

          <ul class="list-inline">
            {% for tag in page.tags %}
            <li>
              <span class="label label-default">
                <i class="fa fa-tag"></i>
                {{tag}}
              </span>
            </li>
            {% endfor %}
          </ul>
        </div>
      </div>
    </div>

    <div class="container">
      <div class="col-md-8 col-md-offset-2">

        {{content}}

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

    {% include typekit.html %}
  </body>
</html>