Files
mozo-backend/app/views/layouts/theme1.html.slim
T
2015-01-13 18:08:21 +01:00

40 lines
1.3 KiB
Plaintext

doctype html
html lang="en"
head
meta charset="utf-8"
meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"
meta name="viewport" content="width=device-width, initial-scale=1.0"
title= site_page_title
= csrf_meta_tags
/! Le HTML5 shim, for IE6-8 support of HTML elements
/[if lt IE 9]
= javascript_include_tag "http://html5shim.googlecode.com/svn/trunk/html5.js"
= stylesheet_link_tag "theme1/application", :media => "all"
link href="/favicon.ico" rel="shortcut icon"
link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'
body
.header-nav-banner
= render 'theme1/header'
#content-header
.left
.right
.container
.top-ribbon
#main-wrap
.container
.main-inner
- if flash[:alert].present?
.flash-box.alert
div= flash[:alert]
a.close data-dismiss="alert" ×
- if flash[:notice].present?
.flash-box.notice
div= flash[:notice]
a.close data-dismiss="alert" ×
- if @page && @page.title.present?
h1.page-title= @page.title
= yield
= render 'theme1/footer'
= javascript_include_tag "theme1/application"