-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathdefault.html
60 lines (45 loc) · 2.16 KB
/
default.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ page.title }}</title>
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="{{ site.baseurl }}/assets/img/usa_logo.png?v=1.2">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/normalize.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/syntax.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="{{ site.baseurl }}/assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header role="banner">
<!-- Fork Me at GitHub banner. Remove, of course -->
<a href="https://github.com/virtix/open-source-program-template"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div class="wrap">
{% if site.logourl != null %}
<img class="logo" src="{{site.logourl}}" alt="{{site.logoalt}}">
{% endif %}
<h1><a class="title-link" href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
<div style="float:right">
<!-- This should be a configurable item in data/ -->
<a href="{{ site.baseurl }}/{{ site.data.meta.home_url }}" class="title-link">
<img height="52" src="{{ site.baseurl }}{{ site.data.meta.logo_url}}" alt="Your agency logo">
</a>
</div>
</div>
</header>
<div class="wrap content">
{% include sidebar.html %}
<section id="main" class="main-content" role="main">
{{ content }}
</section>
<footer role="contentinfo">
<p>This project is maintained by <a href="{{ site.data.meta.poc_link }}">{{ site.data.meta.point_of_contact }}</a></p>
<p>Hosted on Github Pages</p>
</footer>
</div><!-- /.wrap -->
</body>
</html>