-
Notifications
You must be signed in to change notification settings - Fork 2
/
_header.twig
75 lines (60 loc) · 3.53 KB
/
_header.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="{{ paths.theme }}/utf-8">
<title>
{% if record.title is defined %}{{ record.title|striptags }} | {% endif %}
{{ app.config.get('general/sitename') }}
{% if record.title is not defined and app.config.get('general/payoff') %} | {{ app.config.get('general/payoff') }}{% endif %}
</title>
<meta name="{{ paths.theme }}/viewport" content="width=device-width, initial-scale=1.0">
<meta name="{{ paths.theme }}/description" content="">
<meta name="{{ paths.theme }}/author" content="">
<link href="{{ paths.theme }}/scripts/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="{{ paths.theme }}/scripts/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Icons -->
<link href="{{ paths.theme }}/scripts/icons/general/stylesheets/general_foundicons.css" media="screen" rel="stylesheet" type="text/css" />
<link href="{{ paths.theme }}/scripts/icons/social/stylesheets/social_foundicons.css" media="screen" rel="stylesheet" type="text/css" />
<!--[if lt IE 8]>
<link href="scripts/icons/general/stylesheets/general_foundicons_ie7.css" media="screen" rel="stylesheet" type="text/css" />
<link href="scripts/icons/social/stylesheets/social_foundicons_ie7.css" media="screen" rel="stylesheet" type="text/css" />
<![endif]-->
<link href="{{ paths.theme }}/scripts/camera/css/camera.css" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Chewy" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Abel" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Terminal+Dosis+Light" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Maven+Pro" rel="stylesheet" type="text/css">
<link href="{{ paths.theme }}/styles/custom.css" rel="stylesheet" type="text/css" />
</head>
<body id="pageBody">
<div id="divBoxed" class="container">
<div class="transparent-bg" style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: -1;zoom: 1;"></div>
<div class="divPanel notop nobottom">
<div class="row-fluid">
<div class="span12">
<div id="divLogo">
<a href="{{ paths.root }}" id="divSiteTitle">{{ app.config.get('general/sitename') }}</a><br />
<a href="{{ paths.root }}" id="divTagLine">{{ app.config.get('general/payoff') }}</a>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div id="divMenuRight" class="pull-right">
<div class="navbar">
<button type="button" class="btn btn-navbar-highlight btn-large btn-primary" data-toggle="collapse" data-target=".nav-collapse">
NAVIGATION <span class="icon-chevron-down icon-white"></span>
</button>
<div class="nav-collapse collapse">
<ul class="nav nav-pills ddmenu">
{{ menu('main', '_sub_menu.twig') }}
</ul>
</div>
</div>
</div>
</div>
</div>