2009-10-18 21:42:54 -04:00
|
|
|
---
|
2009-10-20 09:50:16 -04:00
|
|
|
blog_title: My Octopress Blog
|
|
|
|
root_url:
|
2009-10-18 21:42:54 -04:00
|
|
|
---
|
|
|
|
|
2009-10-18 20:07:36 -04:00
|
|
|
!!! 1.1 Transitional
|
|
|
|
%html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en")
|
|
|
|
%head
|
2009-10-20 10:16:14 -04:00
|
|
|
%title= "#{page.title} - #{page.blog_title}"
|
2009-10-18 20:07:36 -04:00
|
|
|
- if page.respond_to? :description
|
2009-10-20 09:50:16 -04:00
|
|
|
%meta(name="description" content="#{page.description}")/
|
2009-10-18 20:07:36 -04:00
|
|
|
- if page.respond_to? :keywords
|
2009-10-20 09:50:16 -04:00
|
|
|
%meta(name="keywords" content="#{page.keywords}")/
|
|
|
|
%link(href="#{page.root_url}/stylesheets/screen.css" rel="stylesheet" media="screen projection" type="text/css")
|
2009-10-20 10:16:14 -04:00
|
|
|
%link(href="#{page.root_url}/atom.xml" rel="alternate" title="#{page.blog_title}" type="application/atom+xml")
|
2009-10-18 20:07:36 -04:00
|
|
|
%body
|
|
|
|
#header
|
|
|
|
.page_width
|
2009-10-18 21:42:54 -04:00
|
|
|
%a.title(href="/")=page.blog_title
|
2009-10-21 12:39:53 -04:00
|
|
|
#nav
|
|
|
|
.page_width
|
|
|
|
%ul
|
2009-10-18 20:07:36 -04:00
|
|
|
%li.alpha
|
2009-10-21 12:39:53 -04:00
|
|
|
%a(href="#{page.root_url}/") Blog
|
2009-10-18 21:10:45 -04:00
|
|
|
%li.omega
|
2009-10-21 12:39:53 -04:00
|
|
|
%a(href="#{page.root_url}/about") About
|
|
|
|
%li.subscribe
|
2009-10-20 09:50:16 -04:00
|
|
|
%a(href="#{page.root_url}/atom.xml") Subscribe
|
2009-10-18 20:07:36 -04:00
|
|
|
#page
|
|
|
|
.page_width
|
2009-10-20 09:50:16 -04:00
|
|
|
- if page.respond_to? :date
|
|
|
|
%h2= page.title
|
|
|
|
= content
|
|
|
|
%p.pubdate
|
|
|
|
Published:
|
|
|
|
=page.date.strftime("%d %b, %Y")
|
|
|
|
- else
|
|
|
|
= content
|
2009-10-18 20:07:36 -04:00
|
|
|
#footer
|
2009-10-20 10:08:12 -04:00
|
|
|
.page_width
|
|
|
|
= "Copyright © #{Time.now.strftime('%Y')} - #{page.blog_title} | "
|
2009-10-21 12:39:53 -04:00
|
|
|
%span.credit Powered by <a href="http://github.com/imathis/octopress/">Octopress</a>
|