clarion/app/views/layouts/application.html.slim

28 lines
824 B
Plaintext

doctype html
html
head
meta charset="utf-8"
title
= Conference.current.title
= yield :title if content_for? :title
= stylesheet_link_tag 'application'
= stylesheet_link_tag 'http://openfest.org/wp-content/themes/thematic-openfest/style.css'
= csrf_meta_tags
body
#wrapper.hfeed
header#header
#branding
#blog-title
span
= link_to 'http://openfest.org/', title: 'OpenFest', rel: 'home' do
= image_tag '//openfest.org/images/logo-header.png', alt: 'OpenFest'
h1#blog-description
= t(:of_motto)
#access
== render partial: '/shared/nav'
#main
== render(partial: '/shared/flash_messages') unless flash.empty?
== yield
= javascript_include_tag 'application'