doctype html
block vars
- var bodyclass = null;
html(lang='en')
head
block head
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge,chrome=1')
meta(name='viewport', content='width=device-width')
title
block title
= locals.name
link(rel='alternate', href=locals.url+'/feed.xml', type='application/rss+xml', title=locals.description)
link(rel='stylesheet', href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic|Anonymous+Pro:400,700,400italic,700italic|Merriweather:400,700,300')
link(rel='stylesheet', href='/css/main.css')
body(class=bodyclass)
header.header
div.content-wrap
block header
div.logo
h1
a(href=locals.url)
img(src="/img/avatar.png")
= locals.name
p.description= locals.description
div#content
div.content-wrap
block content
h2 Welcome to zombocom!
footer
div.content-wrap
block footer
section.about
!=contents['about.md'].html
section.social-links
include mixins/social
+social_links
section.copy
p © #{ new Date().getFullYear() } #{ locals.owner } — powered by
a(href='https://github.com/jnordberg/wintersmith') Wintersmith
//- please leave the "powered by" if you use the design
script(type='text/javascript').
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34513423-1']);
_gaq.push(['_setDomainName', '.brett.is']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();