26 lines
1 KiB
Text
26 lines
1 KiB
Text
|
!!! 5
|
||
|
%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= content_for?(:title) ? yield(:title) : "Foodsoft"
|
||
|
= csrf_meta_tags
|
||
|
= stylesheet_link_tag "application", :media => "all"
|
||
|
%link(href="images/apple-touch-icon-144x144.png" rel="apple-touch-icon-precomposed" sizes="144x144")
|
||
|
%link(href="images/apple-touch-icon-114x114.png" rel="apple-touch-icon-precomposed" sizes="114x114")
|
||
|
%link(href="images/apple-touch-icon-72x72.png" rel="apple-touch-icon-precomposed" sizes="72x72")
|
||
|
%link(href="images/apple-touch-icon.png" rel="apple-touch-icon-precomposed")
|
||
|
//%link(href="images/favicon.ico" rel="shortcut icon")
|
||
|
|
||
|
= yield(:head)
|
||
|
|
||
|
%body
|
||
|
= yield
|
||
|
|
||
|
/
|
||
|
Javascripts
|
||
|
\==================================================
|
||
|
/ Placed at the end of the document so the pages load faster
|
||
|
= javascript_include_tag "application"
|
||
|
= yield(:javascript)
|