2013-05-27 23:24:24 +00:00
|
|
|
doctype html
|
|
|
|
html[lang="en"]
|
|
|
|
head
|
|
|
|
meta[charset="utf-8"]
|
2015-02-18 09:58:23 +00:00
|
|
|
meta[http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"]
|
2013-11-17 15:49:46 +00:00
|
|
|
meta[name="viewport" content="width=device-width, initial-scale=1.0"]
|
2013-05-27 23:24:24 +00:00
|
|
|
title = page_title
|
|
|
|
= csrf_meta_tags
|
|
|
|
= stylesheet_link_tag "application", :media => "all"
|
2013-11-22 12:47:02 +00:00
|
|
|
= javascript_include_tag "application"
|
2016-02-06 11:26:05 +00:00
|
|
|
= javascript_include_tag "asciinema-player"
|
2013-05-27 23:24:24 +00:00
|
|
|
= favicon_link_tag 'favicon.png'
|
2015-03-29 18:07:13 +00:00
|
|
|
= render 'layouts/ga' if Rails.env.production?
|
2015-03-29 18:43:32 +00:00
|
|
|
= content_for(:head)
|
2013-05-27 23:24:24 +00:00
|
|
|
body
|
2013-11-17 15:49:46 +00:00
|
|
|
= render 'layouts/header'
|
|
|
|
= render 'shared/flash'
|
|
|
|
.main = content_for?(:content) ? yield(:content) : yield
|
|
|
|
= render 'layouts/footer'
|