-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_subpage.inc
executable file
·30 lines (27 loc) · 1.12 KB
/
template_subpage.inc
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
<?php
echo "<section class='top' style='background: url(img/pages/" . $pages[$page_no]->content_image . ") no-repeat;'>";
?>
<div class="wrapper content_header clearfix">
<div class="work_nav">
<ul class="btn clearfix">
<li><a href=<?php echo ".?" . $page_no . "";?> class="previous" data-title="Edellinen"></a></li>
<li><a href="." class="grid" data-title="Etusivu"></a></li>
<li><a href=<?php echo ".?" . $page_no . "";?> class="next" data-title="Seuraava"></a></li>
</ul>
</div><!-- end work_nav -->
<?php
echo "<h1 class='title'>" . $pages[$page_no]->link_text . "";
if($pages[$page_no]->content_title) {
echo " - " . $pages[$page_no]->content_title . "";
}
echo "</h1>"
?>
</div>
</section><!-- end top -->
<section class="wrapper">
<div class="content">
<?php
include("pages/" . $pages[$page_no]->content_page);
?>
</div><!-- end content -->
</section>