summaryrefslogtreecommitdiff
path: root/_layouts/static.html
blob: 969ca7d088194c495f551eb2fe8bb8d44c15839e (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
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>José Mota &bull; {{page.title}}</title>
    <meta http-equiv="description" content="José Mota is a web interface designer and Ruby / Javascript developer. He speaks occasionally and he loves his Vim editor."/>
    <link href='http://fonts.googleapis.com/css?family=Merriweather:300,400,700,300italic,400italic,700italic' rel='stylesheet' type='text/css'/>
    <link href='http://fonts.googleapis.com/css?family=Arapey:400italic' rel='stylesheet' type='text/css'>
    <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">

      <nav id="pagination">
      {% if paginator.previous_page %}
        {% if paginator.previous_page == 1 %}
          <a class="previous" href="/" title="Previous Page">&#x25c0;</a>
        {% else %}
          <a class="previous" href="/page{{ paginator.previous_page }}/" title="Previous Page">&#x25c0;</a>
        {% endif %}
      {% endif %}

      {% if paginator.next_page %} 
        <a class="next" href="/page{{ paginator.next_page }}/" title="Next Page">&#x25b6;</a>
      {% endif %} 
      </nav>

      <h1 id="logo"><a href="/">{{site.title}}</a></h1>
      <h1>{{page.title}}</h1>

      {{content}}

    </div>
  </body>
</html>