forked from pnowy/CouscousNativeTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.twig
132 lines (108 loc) · 5.91 KB
/
default.twig
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ title }}</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Merriweather:400,900,700,300|Open+Sans:400,800,700|Titillium+Web:600,400' type='text/css'>
<link rel="stylesheet" href="{{ baseUrl }}/css/bootstrap.min.css">
<link rel="stylesheet" href="{{ baseUrl }}/css/font-awesome.min.css">
<link rel="stylesheet" href="{{ baseUrl }}/css/github.css">
<link rel="stylesheet" href="{{ baseUrl }}/css/main.css">
</head>
<body>
<header class="site-header">
<div class="site-branding">
<h1 class="site-name">
<a href="{{ baseUrl }}" >{{ title|default('The title') }}</a> <i class="{{ fontAwesomeIcon|default('fa fa-hand-peace-o') }}"></i>
</h1>
<h2 class="site-description">{{ subTitle|default('This is the default subtitle!')|raw }}</h2>
</div>
<div class="button-line">
<a href="https://github.com/{{ github.user }}/{{ github.repo }}" target="_blank" class="btn btn-default">View on GitHub</a>
<a href="https://github.com/{{ github.user }}/{{ github.repo }}/zipball/master" class="btn btn-default hidden-xs">Download .zip</a>
<a href="https://github.com/{{ github.user }}/{{ github.repo }}/tarball/master" class="btn btn-default hidden-xs">Download .tar.gz</a>
</div>
{% if github is defined %}
<a href="https://github.com/{{ github.user }}/{{ github.repo }}">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
</a>
{% endif %}
<div class="text-left visible-xs-block" style="margin-left: 15px;">
<a href="#sidebar" data-toggle="collapse"><i class="fa fa-3x fa-bars" aria-hidden="true"></i></a>
</div>
</header>
<main class="{{ menu ? 'container-fluid' : 'container' }}">
<div class="row">
{% if menu is defined %}
<nav id="sidebar" class="col-sm-3 col-lg-2 collapse in" role="navigation">
{% for section in menu.sections %}
<p class="text-muted">
{{ section.name }}
</p>
<ul class="nav nav-pills nav-stacked">
{% for itemId, item in section.items %}
<li class="{{ itemId == currentMenu ? 'active' }}">
<a href="{{ item.absoluteUrl|default(baseUrl ~ '/' ~ item.relativeUrl) }}">
{{ item.text|raw }}
</a>
</li>
{% endfor %}
</ul>
{% endfor %}
</nav>
{% endif %}
<section class="{{ menu ? 'col-sm-9 col-lg-10 content' : 'col-sm-12 content' }}">
{{ content|raw }}
</section>
</div>
</main>
<footer class="site-footer">
<div class="top-bar-line"></div>
<div class="bottom-panel">
<div class="text-center">
<span>
{% if footerText is defined %}
{{ footerText }}
{% endif %}
{#<i class="fa fa-copyright"></i>#}
</span>
</div><!-- text-center -->
</div><!-- bottom-panel -->
</footer>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="{{ baseUrl }}/js/highlight.pack.js"></script>
<script>
hljs.initHighlighting();
function checkWidth($highlight) {
if ($(window).width() < 768) {
$highlight.addClass('collapse');
} else {
$highlight.removeClass('collapse');
}
}
$(document).ready(function () {
var $highlights = $('.hljs');
$highlights.each(function (index) {
var $this = $(this).parent();
var elementId = 'hljs' + index;
$this.attr('id', elementId);
$this.before('<a class="visible-xs-inline visible-sm-inline" href="#' + elementId + '" data-toggle="collapse"><i class="fa fa-expand"></i> Toggle source code ...</a>');
checkWidth($this);
$(window).resize(function () {
checkWidth($this);
});
});
});
{% if googleAnalyticsCode is defined %}
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ googleAnalyticsCode }}', 'auto');
ga('send', 'pageview');
{% endif %}
</script>
</body>
</html>