123456789101112131415161718192021222324252627282930313233343536 |
- 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='//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic|Anonymous+Pro:400,700,400italic,700italic|Merriweather:400,700,300')
- link(rel='stylesheet', href=contents.css['main.css'].url)
- body(class=bodyclass)
- header.header
- div.content-wrap
- block header
- div.logo
- h1
- a(href=locals.url)= 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.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
|