-
Notifications
You must be signed in to change notification settings - Fork 2
/
basic.layout
39 lines (36 loc) · 1.1 KB
/
basic.layout
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
<!--Copyright © 2014 Max Penrose-->
<!DOCTYPE html>
<html>
<head>
<title>YouRevise</title>
<link type='text/less' rel="stylesheet/less" href="css/commons.less"/>
<link type='text/less' rel="stylesheet/less" href="css/specifics.less"/>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
<script src="/less.js" type="text/javascript"></script>
<style>
p.copyright{
font-size:11px;
text-align:center;
}
</style>
</head>
<body>
<header>
<a href='index.php'>
<svg height="20" width="25">
<line x1="0" y1="2" x2="30" y2="2" style="stroke:white;stroke-width:4" />
<line x1="0" y1="10" x2="30" y2="10" style="stroke:white;stroke-width:4" />
<line x1="0" y1="18" x2="30" y2="18" style="stroke:white;stroke-width:4" />
</svg>
</a>
</header>
<div class='content'>
@content
</div>
<p class="copyright">
Copyright © 2014 Max Penrose,Ryan Kendrick, Joe Dyer
</p>
</body>
</html>