-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
67 lines (62 loc) · 2.16 KB
/
page.php
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
<header id="header">
<?php if ($logo): ?>
<span class="logo">
<a href="<?php echo $base_path; ?>">
<img src="<?php echo $logo; ?>" alt="Logo site" class="img-responsive logo">
</a>
</span>
<?php endif; ?>
<h2><a href="<?php echo $base_path; ?>"><?php echo htmlspecialchars($title); ?></a></h2>
<?php if (!empty($section[ 'header' ])): ?>
<?php echo $section[ 'header' ]; ?>
<?php endif; ?>
</header>
<!-- Nav -->
<nav id="nav">
<?php echo $section[ 'main_menu' ]; ?>
</nav>
<!-- Main -->
<div id="main">
<section id="content" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2><?php echo htmlspecialchars($title_main); ?></h2>
<?php if (!empty($section[ 'messages' ])): ?>
<?php echo $section[ 'messages' ]; ?>
<?php endif; ?>
</header>
<?php if (!empty($section[ 'content_header' ])): ?>
<?php echo $section[ 'content_header' ]; ?>
<?php endif; ?>
<?php echo $section[ 'submenu' ]; ?>
<?php echo $section[ 'content' ]; ?>
<?php if (!empty($section[ 'content_footer' ])): ?>
<?php echo $section[ 'content_footer' ]; ?>
<?php endif; ?>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<?php if (!empty($section[ 'footer_first' ])): ?>
<section>
<?php echo $section[ 'footer_first' ]; ?>
</section>
<?php endif; ?>
<?php if (!empty($section[ 'footer_second' ])): ?>
<section>
<?php echo $section[ 'footer_second' ]; ?>
</section>
<?php endif; ?>
<section>
<?php echo $section[ 'second_menu' ]; ?>
</section>
<p class="copyright">
Built by <a href="https://twitter.com/ajlkn">@ajlkn</a> for <a href="https://html5up.net">HTML5 UP</a>.
</p>
<?php if (!empty($section[ 'footer' ])): ?>
<?php echo $section[ 'footer' ]; ?>
<?php endif; ?>
</footer>