summaryrefslogtreecommitdiff
path: root/_layouts/static.html
diff options
context:
space:
mode:
authorJosé Mota <jose@josemota.net>2014-05-01 13:23:55 +0100
committerJosé Mota <jose@josemota.net>2014-05-01 13:23:55 +0100
commitd15bb91716a7c4f7a294f3926aa8ff441c1569c2 (patch)
treea87b8af92d6a37039ad2044641fa83efb0bd8f82 /_layouts/static.html
parentf4909eba6c82b27630995e88a8fd4839a349fb67 (diff)
Update layouts.
Diffstat (limited to '_layouts/static.html')
-rw-r--r--_layouts/static.html37
1 files changed, 20 insertions, 17 deletions
diff --git a/_layouts/static.html b/_layouts/static.html
index 969ca7d..03d98a5 100644
--- a/_layouts/static.html
+++ b/_layouts/static.html
@@ -4,35 +4,38 @@
<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" />
+ <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/>
+ <script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
+ <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
</head>
<body>
- <div id="bucket">
+ <div class="container">
+ <div class="col-md-8 col-md-offset-2">
- <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>
+ <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 %}
- {% endif %}
- {% if paginator.next_page %}
- <a class="next" href="/page{{ paginator.next_page }}/" title="Next Page">&#x25b6;</a>
- {% endif %}
- </nav>
+ {% 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>
+ <h1 id="logo"><a href="/">{{site.title}}</a></h1>
+ <h1>{{page.title}}</h1>
- {{content}}
+ {{content}}
+ </div>
</div>
</body>
</html>