summaryrefslogtreecommitdiff
path: root/_layouts/static.html
blob: eaf41fc0bdf0064e98e08c51ad30684488e1d333 (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
<!DOCTYPE html>
<html>
  <head>
    <title>José Mota &bull; {{page.title}}</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>
            {{site.title}} <br/>
            <small id="slogan">{{page.title}}</small>
          </h1>

        </div>
      </div>
    </div>

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

        <ul class="pager">
          {% if paginator.previous_page %}
            <li class="previous">
              {% if paginator.previous_page == 1 %}
                <a href="/" title="Previous Page">&larr; Previous Page</a>
              {% else %}
                <a href="/page{{ paginator.previous_page }}/">&larr; Previous</a>
              {% endif %}
            </li>
          {% endif %}

          {% if paginator.next_page %}
            <li class="next">
              <a class="next text-small" href="/page{{ paginator.next_page }}/" >Next &rarr;</a>
            </li>
          {% endif %}
        </ul>
      </div>
    </div>

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