forked from byuweb/HTML-Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (53 loc) · 3.07 KB
/
index.html
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
<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Page Title</title>
<meta name="description" content="Description about your department." />
<meta name="author" content="Your Department Name" />
<meta name="keywords" content="keyword 1, keyword 2, keyword 3">
<meta name="viewport" content="width=device-width" />
<link rel="shortcut icon" href="template/img/favicon.ico" />
<link rel="stylesheet" href="css/base.css" />
<style>
li.break { margin-bottom: .5em; }
</style>
</head>
<body>
<h2>Updates</h2>
<ul>
<li><a href="pagetype1.html">Page Type 1 - BYU Home Page</a></li>
<li><a href="pagetype2-update.html">Page Type 2 - Primary Organization</a></li>
<li><a href="pagetype3-update.html">Page Type 3 - Secondary Organization</a></li>
<li><a href="pagetype4_5-update.html">Page Type 4 - Applications</a></li>
<li class="break"><a href="pagetype4-update.html">Page Type 4 - Simple Applications</a></li>
<li><a href="sample1-primaryorg-frontpage.html">Sample 1 - Frontpage - Primary Organization</a></li>
<li><a href="sample2-primaryorg-page.html">Sample 2 - Simple page - Primary Organization</a></li>
<li><a href="sample3-primaryorg-onesidebar.html">Sample 3 - One Sidebar - Primary Organization</a></li>
<li><a href="sample4-primaryorg-twosidebars.html">Sample 4 - Two Sidebar - Primary Organization</a></li>
<li><a href="sample5-secondaryorg-sixcolumns.html">Sample 5 - Six Columns - Secondary Organization</a></li>
</ul>
<h2>Elements</h2>
<ul>
<li><a href="elements.html">Base HTML Elements</a></li>
<li><a href="test.html">Page test</a></li>
</ul>
<h2>Legacy</h2>
<ul>
<li><a href="Page Type 2 - Primary Organization.html">Page Type 2 - Primary Organization</a></li>
<li><a href="Page Type 3 - Secondary Organization.html">Page Type 3 - Secondary Organization</a></li>
<li><a href="Page Type 4 - Applications.html">Page Type 4 - Applications</a></li>
<li class="break"><a href="Page Type 4 - Simple Applications.html">Page Type 4 - Simple Applications</a></li>
<li><a href="Sample 1 - Frontpage - Primary Organization.html">Sample 1 - Frontpage - Primary Organization</a></li>
<li><a href="Sample 2 - Simple page - Primary Organization.html">Sample 2 - Simple page - Primary Organization</a></li>
<li><a href="Sample 3 - One Sidebar - Primary Organization.html">Sample 3 - One Sidebar - Primary Organization</a></li>
<li><a href="Sample 4 - Two Sidebar - Primary Organization.html">Sample 4 - Two Sidebar - Primary Organization</a></li>
<li><a href="Sample 5 - Six Columns - Secondary Organization.html">Sample 5 - Six Columns - Secondary Organization</a></li>
</ul>
</body>
</html>