You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
!!!
|
|
%html
|
|
%head
|
|
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
|
%meta{:charset => "utf-8"}/
|
|
%meta{:content => "width=device-width, initial-scale=1, shrink-to-fit=no", :name => "viewport"}/
|
|
%link{href: "https://fonts.googleapis.com/css?family=Bitter:400,600,700", rel: "stylesheet", type: "text/css"}/
|
|
%link{href: "https://fonts.googleapis.com/css?family=Cabin:400,600,700", rel: "stylesheet", type: "text/css"}/
|
|
%title MCIEA
|
|
= csrf_meta_tags
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload'
|
|
= stylesheet_link_tag 'https://fonts.googleapis.com/css?family=Roboto:300,700'
|
|
= javascript_include_tag 'application', 'data-turbolinks-track': 'reload'
|
|
|
|
/ Global site tag (gtag.js) - Google Analytics
|
|
%script{:async => "", :src => "https://www.googletagmanager.com/gtag/js?id=UA-132936999-1"}
|
|
:javascript
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-132936999-1');
|
|
|
|
%body
|
|
.container
|
|
.row
|
|
.col-12
|
|
= render partial: 'layouts/header'
|
|
|
|
- if notice.present?
|
|
%p.notice= notice
|
|
|
|
- if alert.present?
|
|
%p.alert= alert
|
|
|
|
= yield
|