mirror of
https://github.com/meineerde/holgerjust.de.git
synced 2025-10-17 17:01:01 +00:00
We use the casper theme from https://github.com/danielbayerlein/middleman-casper in version 34ec5aa9e2a7f179146a5e21d31b4ba61e2bd926
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
!!! 5
|
|
%html
|
|
%head
|
|
%title= page_title
|
|
%meta{name: :description, content: page_description}
|
|
%meta{charset: 'utf-8'}
|
|
%meta{name: :viewport, content: 'width=device-width, initial-scale=1.0'}
|
|
%meta{'http-equiv' => 'X-UA-Compatible', content: 'IE=edge'}
|
|
%meta{name: 'HandheldFriendly', content: 'True'}
|
|
= feed_tag :atom, "#{blog.options.prefix.to_s}/feed.xml", title: "Atom Feed"
|
|
= favicon_tag 'images/favicon.ico'
|
|
= stylesheet_link_tag :application
|
|
%link{rel: :stylesheet, type: 'text/css', href: '//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400'}
|
|
%body{class: "#{page_class} nav-closed"}
|
|
|
|
= partial(:navigation)
|
|
|
|
.site-wrapper
|
|
= yield
|
|
|
|
%footer.site-footer.clearfix
|
|
%section.copyright
|
|
%a{href: home_path}= blog_settings.name
|
|
©
|
|
= Time.now.year
|
|
%section.poweredby
|
|
-#
|
|
Proudly published with
|
|
%a{href: 'http://middlemanapp.com'} Middleman
|
|
Casper theme powered by
|
|
%a{href: 'https://ghost.org'} Ghost
|
|
|
|
= javascript_include_tag :application
|