blob: 833aef6a6be9cd77ed2a4328f8a9a47a4fa86a87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
!!!
%html{:lang => @locals[:locale].to_s}
%head
%title
= @page.nav_title + ' - ' + t(:site_title)
%meta(name="viewport" content="width=device-width, initial-scale=1.0")
%meta(charset="UTF-8")
%link(rel="stylesheet" href="/assets/bootstrap.min.css")
%link(rel="stylesheet" href="/assets/font-awesome/css/font-awesome.min.css")
%link(rel="stylesheet" href="/assets/style.css")
%script(src="/assets/js/jquery.min.js")
%link(rel="icon" href="/favicon.ico" type="image/x-icon")
= html_head_base
%body
#wrap
#masthead
= render 'layouts/masthead'
#main.container
.row
- if has_navigation?
#sidebar.col-sm-3.col-md-2
= render 'layouts/sidebar'
.col-sm-9.col-md-10
.shadow-box
.title-box
= yield :title
- if @page.props.summary
.summary
= @page.props.summary
.content-box
- if translation_missing?
.alert.alert-info= t(:missing_translation)
= yield :content
- else
.col-sm-12
.shadow-box
.title-box
= yield :title
.content-box
= yield :content
#footer
= render 'layouts/footer'
|