Created
October 7, 2013 20:39
-
-
Save mcrider/6874576 to your computer and use it in GitHub Desktop.
application.html.slim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype html | |
/[if IE 8] | |
| <html class="no-js lt-ie9"> | |
/[if IE 9] | |
| <html class="ie9"> | |
html.no-js | |
/! <![endif] | |
head | |
meta charset="utf-8" | |
meta name="viewport" content="width=device-width" | |
title | |
| Hale Makua Health Services | |
- if @page | |
= " | " + @page.title | |
- if @meta_description.present? | |
meta name="description" content="#{@meta_description}" | |
= stylesheet_link_tag "application", media: "all" | |
= javascript_include_tag "custom.modernizr.js" | |
= csrf_meta_tags | |
script type="text/javascript" src="//use.typekit.net/vmq3ssh.js" | |
script type="text/javascript" try{Typekit.load();}catch(e){} | |
body | |
.container | |
== render partial: 'shared/header' | |
= yield | |
== render partial: 'shared/footer' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
And the new _header shared partial: