-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.php
More file actions
49 lines (45 loc) · 2.36 KB
/
header.php
File metadata and controls
49 lines (45 loc) · 2.36 KB
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
<!DOCTYPE HTML>
<html prefix="og: http://ogp.me/ns#">
<head>
<title>{content_meta_title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta property="og:title" content="{content_meta_title}">
<meta name="keywords" content="{content_meta_keywords}">
<meta name="description" content="{content_meta_description}">
<meta property="og:type" content="{og_type}">
<meta property="og:url" content="{content_url}">
<meta property="og:image" content="{content_image}">
<meta property="og:description" content="{og_description}">
<meta property="og:site_name" content="{og_site_name}">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<?php $theme_css_file = get_option("bootswatch_theme_css_file", "bootswatch_theme"); ?>
<?php if ($theme_css_file == ''): ?>
<link rel="stylesheet" id="bootstrap_theme" href="<?php print template_url() ?>css/default.css" type="text/css"
media="all">
<?php else: ?>
<link rel="stylesheet" id="bootstrap_theme" href="<?php print $theme_css_file; ?>" type="text/css" media="all">
<?php endif; ?>
<link rel="stylesheet" href="{TEMPLATE_URL}css/style.css" type="text/css" media="all">
<script type="text/javascript" src="{TEMPLATE_URL}js/bootstrap.min.js"></script>
<script type="text/javascript" src="{TEMPLATE_URL}js/default.js"></script>
<script>
mw.lib.require('font_awesome');
</script>
<link rel="stylesheet" href="<?php print template_url() ?>css/froala_blocks.css" type="text/css" media="all">
</head>
<body class="<?php print helper_body_classes(); ?>">
<nav class="navbar navbar-default" id="menu">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-nav">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<module type="logo" id="logo_header" default-text="Bootstrap"/>
</div>
<module type="menu" name="header_menu" class="collapse navbar-collapse" id="main-nav" template="navbar"/>
</div>
</nav>