-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.htm
More file actions
74 lines (72 loc) · 2.03 KB
/
template.htm
File metadata and controls
74 lines (72 loc) · 2.03 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
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
<?php
/**
* @author David Stutz
* @license GPLv3
* @package pictures
* @see https://sourceforge.net/projects/cmsimplebstrt/
*
* Copyright 2013 - 2014 David Stutz
*
* This file is part of the bootstrap template for CMSimple.
*
* The plugin is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The template is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* @see <http://www.gnu.org/licenses/>.
*/
?>
<?php require_once 'functions.php'; ?>
<!DOCTYPE html>
<html>
<head>
<?php echo head();?>
</head>
<body <?php echo onload();?>>
<div class="container">
<div class="header">
<div class="page-header">
<h3>
<?php echo $cf['site']['title']; ?>
<small>
<?php if (isset($cf['site']['subtitle'])) echo $cf['site']['subtitle']; ?>
<?php echo bootstrap_li($hc,'menulevel'); ?>
</small>
</h3>
</div>
</div>
<div id="content">
<p>
<?php echo editmenu();?>
</p>
<?php echo content(); ?>
</b></u></i>
<br style="clear: both" />
</div>
<hr>
<div id="footer">
<div class="row">
<div class="span4">
<p>
<span class="muted">© <?php echo date('Y'); ?> David Stutz</span><br>
<span class="muted">Powered by <a href="http://www.cmsimple-xh.org/">CMSimple XH</a></span><br>
<span class="muted">Powered by <a href="https://sourceforge.net/projects/cmsimplebstrt/">CMSimple Bootstrap Theme</a></span>
</p>
</div>
<div class="span4">
<p>
<a href="http://davidstutz.de/impressum-legal-notice/">Impressum - Legal Notice</a>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>