-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
94 lines (92 loc) · 3.68 KB
/
header.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><?php echo $meta_title;?></title>
<meta name="author" content="Rachel Reveley">
<link rel="stylesheet/less" type="text/css" href="styles.less" />
<link rel="stylesheet/less" type="text/css" href="<?php
if( isset($_GET["theme"]) ){ echo $_GET["theme"],"/", $_GET["theme"], ".less"; }
else { echo "berry/berry.less"; }
?>" />
<script type="text/javascript">
less = {
env: "development", // or "production"
async: false, // load imports async
fileAsync: false, // load imports async when in a page under
// a file protocol
poll: 1000, // when in watch mode, time in ms between polls
functions: {}, // user functions, keyed by name
dumpLineNumbers: "comments", // or "mediaQuery" or "all"
relativeUrls: false,// whether to adjust url's to be relative
// if false, url's are already relative to the
// entry less file
//resource
strictMath: true,
};
</script>
<script src="less.js" type="text/javascript"></script>
<meta name="viewport" content="initial-scale=1" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4069218-3', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="tools fixed fixed-0">
<div>
<nav>
<ul>
<li>
<a href="/">Built by Rachel Reveley</a>
</li>
</ul>
</nav>
</div>
</div>
<header>
<div>
<div class="logo">
<a href="/css-cement">CSS Cement</a>
<span>Less powered front-end framework</span>
</div>
<a href="https://github.com/rachelreveley/css-cement" class="download">Download<span>v1.1</span></a>
</div>
<nav class="main">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="template-widgets.php">Standard Widgets</a>
<ul>
<li><a href="template-widgets.php#bar-chart">Bar charts</a></li>
<li><a href="template-widgets.php#calendar">Calendar</a></li>
<li><a href="template-widgets.php#chat-boxes">Chat boxes</a></li>
<li><a href="template-widgets.php#corner-ribbons">Corner ribbons</a></li>
<li><a href="template-widgets.php#dialog-boxes">Dialog boxes</a></li>
<li><a href="template-widgets.php#feature-boxes">Feature boxes</a></li>
<li><a href="template-widgets.php#forum-threads">Forum threads</a></li>
<li><a href="template-widgets.php#gallery">Gallery</a></li>
<li><a href="template-widgets.php#highlight">Highlighted content box</a></li>
<li><a href="template-widgets.php#loading">Loading</a></li>
<li><a href="template-widgets.php#pagination">Pagination</a></li>
<li><a href="template-widgets.php#progress-bar">Progress bar</a></li>
<li><a href="template-widgets.php#tables">Tables</a></li>
<li><a href="template-widgets.php#static-tabs">Static Tabs</a></li>
<li><a href="template-widgets.php#tags">Tags</a></li>
</ul>
</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>
</header>
<div class="main">
<div>