-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-nav.php
27 lines (26 loc) · 937 Bytes
/
template-nav.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
<?php
$meta_title="CSS Cement - Navigation";
$slug="Navigation";
?>
<?php include("header.php"); ?>
<nav class="side">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="template-widgets.php">Standard Widets</a></li>
<li><a href="template-grid-sizes.php">Grid system</a></li>
<li><a href="template-forms.php">Forms</a></li>
<li><a href="template-type.php">Type</a></li>
<li><a href="template-nav.php">side navigation</a></li>
<li><a href="template-non-semantic.php">Other widgets</a></li>
<li><a href="themes.php">Themes</a></li>
<li><a href="https://github.com/rachelreveley/css-cement">Github</a></li>
</ul>
</nav>
<div class="content">
<div class="parent dt-1-1 tb-1-20 mb-1-1">
<div class="highlight">
<p>This page is a demo to show how to add a side navigation bar.</p>
</div>
</div>
</div>
<?php include("footer.php"); ?>