net/_layouts/default.html

39 lines
1.3 KiB
HTML
Raw Normal View History

2012-01-02 23:15:05 -05:00
<!DOCTYPE html>
<html>
<head>
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
2015-01-29 08:51:59 -05:00
{% include meta.html %}
2012-01-02 23:15:05 -05:00
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
2015-01-29 08:51:59 -05:00
<link href='http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
2013-11-10 12:47:53 -05:00
<link href="//netdna.bootstrapcdn.com/font-awesome/latest/css/font-awesome.css" rel="stylesheet">
2015-01-29 08:51:59 -05:00
2012-01-02 23:15:05 -05:00
<link rel="shortcut icon" href="/favicon.ico" >
<link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml">
</head>
<body>
2013-11-08 12:47:13 -05:00
<div class="container">
2013-11-10 12:47:03 -05:00
<div id="header">
<header>
<h1 id="title"><a href="/">{{ site.title }}</a></h1>
</header>
<nav role="navigation">
<ul class="navigation">
<li><a href="/about.html">About</a></li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/contact.html">Contact</a></li>
2015-02-11 23:35:29 -05:00
<li><a href="/atom.xml">Feed <i class="fa fa-rss"></i></a></li>
2013-11-10 12:47:03 -05:00
</ul>
</nav>
</div>
2013-11-08 12:47:13 -05:00
<section id="main">
2015-01-29 08:51:59 -05:00
{{ content }}
2013-11-08 12:47:13 -05:00
</section>
<footer>
&copy; 2002-{{ site.time | date:"%Y" }} {{ site.author }}
</footer>
</div>
2012-01-03 00:20:32 -05:00
{% include google_analytics.html %}
2012-01-02 23:15:05 -05:00
</body>
</html>