forked from 18F/fedspendingtransparency.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
110 lines (105 loc) · 5.08 KB
/
test.html
File metadata and controls
110 lines (105 loc) · 5.08 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="{{ site.desc }}">
<meta name="viewport" content="width=device-width">
<title>{{ site.title }}</title>
{% capture edit_url %}https://github.com/{{ site.org_name }}/{{ site.repo_name }}/edit/{{ site.branch }}/{{ page.filename }}{% endcapture %}
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/google-fonts.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/timeline.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/fonts/timeline/font.default.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
</head>
<body class="{{ page.id }}">
<!--[if lt IE 8]>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="https://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
</div>-
</div>
</div>
<![endif]-->
<div class="container-fluid usa-da-header">
<div class="row">
<nav class="navbar navbar-default">
<div class="container usa-da-header-container">
<div class="usa-da-masthead-wrap">
<a class="usa-da-navbar-header usa-da-header-navbar" href="{{ site.baseurl }}/index.html">
<h1>{{ site.title }}</h1>
<h2>{{ site.desc }}</h2>
</a>
<div class="seal-block">
<img class="act-logo" src="{{ site.baseurl }}/assets/graphics/dataACT-logo.png">
</div>
</div>
</div>
<div class="container-fluid nav-row">
<ul id="usa-da-header-link-holder" class="nav center-block container">
{% for link in site.navigation %} {% assign current = nil %} {% if page.url contains link.url %} {% assign current ='active'%} {% endif %}
<li class="element {% if forloop.first %}first{% endif %} {{ current }} {% if forloop.last %}last{% endif %}">
<a href="{{ site.baseurl }}{{ link.url }}{% unless link.url contains 'html' %}/{% endunless %}">{{ link.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</nav>
</div>
<div class="container-fluid usa-da-footer">
<div class="container" id="footer">
<div class="row">
<div class="col-xs-12 col-md-5 col-md-push-7 footer-links">
<a class="btn btn-primary btn-sm" href="{{ site.baseurl }}/license/">License</a>
<a class="btn btn-primary btn-sm" href="{{ site.baseurl }}/privacy/">Privacy</a>
<a class="btn btn-primary btn-sm" href="mailto:fed-spending-transparency-collaboration@gsa.gov?subject=Federal%20Spending%20Collaboration%20Question">Questions?</a>
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user={{ site.org_name }}&repo={{ site.repo_name }}&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>
</div>
<div class="col-xs-12 col-md-7 col-md-pull-5">
<p>{{ site.time | date: '%Y' }} | Federal Spending Transparency Collaboration Space</p>
</div>
</div>
</div>
</div>
</div>
<!-- /container -->
<script src="{{site.baseurl}}/assets/js/jquery-2.2.0.min.js"></script>
<script src="{{site.baseurl}}/assets/js/bootstrap.min.js"></script>
<script src="{{site.baseurl}}/assets/js/mobile-head.js"></script>
<script src="{{site.baseurl}}/assets/js/chart/Chart.js"></script>
<script src="{{site.baseurl}}/assets/js/fedSpend_base.js"></script>
<script src="{{site.baseurl}}/assets/js/sortable/jquery.tablesorter.min.js"></script>
<!-- Google Analytics -->
<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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-48605964-26', 'fedspendingtransparency.github.io');
// anonymize user IPs (chops off the last IP triplet)
ga('set', 'anonymizeIp', true);
// forces SSL even if the page were somehow loaded over http://
ga('set', 'forceSSL', true);
ga('send', 'pageview');
</script>
<script>
$(document).ready(function(){
$("#dictTable").tablesorter();
});
</script>
</body>
</html>
<!-- Generated {{ site.time }} -->