Skip to content

Commit 5dbdf42

Browse files
committed
initial commit
1 parent a2ed0f3 commit 5dbdf42

21 files changed

+9087
-2
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
appendix
1+
Appendix
22
========
33

4-
Master Project Open Data Appendix
4+
Project Open Data Master Appendix
5+
6+
Problem this Solves
7+
-------------------
8+
Technology moves much faster than policy ever could. Often when writing policy for technology, agencies are stuck w/ outdated methods as soon as they publish new policies.
9+
10+
How this Project Solves this Problem
11+
------------------------------------
12+
This Appendix is meant to be a living document so that collaboration in the open data ecosystem is fostered and the continual update of technology pieces that affect update can happen on a more rapid pace.
13+
14+
Files:
15+
------
16+
1. `index.md` - content containing the basics of APIs
17+
2. all other files - web serving files
18+
19+
Where You Come In
20+
-----------------
21+
Help the United States Government make its Open Data policy better by collaborating. Please suggest enhancements by editing the content here.

_config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#document settings
2+
title: Document Title Here
3+
description: Office of Management and Budgets
4+
url: http://project-open-data.github.com/Appendix
5+
repo_url: https://github.com/project-open-data/Appendix
6+
7+
# default build settings for running locally, no need to edit
8+
server: auto
9+
safe: true
10+
pymgemnts: true
11+
auto: true

_includes/footer.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
</div> <!-- /container -->
2+
{% include fork-me-ribbon.html %}
3+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
4+
<script>window.jQuery || document.write('<script src="{{ site.url }}/js/vendor/jquery-1.8.1.min.js"><\/script>')</script>
5+
6+
<script src="{{ site.url }}/js/vendor/bootstrap.min.js"></script>
7+
8+
<script src="{{ site.url }}/js/main.js"></script>
9+
10+
<script>
11+
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
12+
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
13+
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
14+
s.parentNode.insertBefore(g,s)}(document,'script'));
15+
</script>
16+
</body>
17+
</html>

_includes/fork-me-ribbon.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a href="{{ site.repo_url }}"><img style="position: fixed; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>

_includes/header.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5+
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
6+
<head>
7+
<meta charset="utf-8">
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9+
10+
<title>{{ site.title }}</title>
11+
12+
<meta name="description" content="{{ site.description }}">
13+
<meta name="viewport" content="width=device-width">
14+
15+
<link rel="stylesheet" href="{{ site.url }}/css/bootstrap.min.css">
16+
<style>
17+
body {
18+
padding-top: 60px;
19+
padding-bottom: 40px;
20+
}
21+
</style>
22+
<link rel="stylesheet" href="{{ site.url }}/css/bootstrap-responsive.min.css">
23+
<link rel="stylesheet" href="{{ site.url }}/css/main.css">
24+
25+
<script src="{{ site.url }}/js/vendor/modernizr-2.6.1-respond-1.1.0.min.js"></script>
26+
</head>
27+
<body>
28+
<!--[if lt IE 7]>
29+
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
30+
<![endif]-->
31+
32+
<div class="container">

_includes/hero.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<div class="hero-unit">
2+
<h1>{{ site.title }} </h1>
3+
<p>{{ site.description }}</p>
4+
</div>

_layouts/home.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% include header.html %}
2+
3+
{% include hero.html %}
4+
5+
6+
{{ content }}
7+
8+
9+
{% include footer.html %}

_layouts/page.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% include header.html %}
2+
3+
{% include hero.html %}
4+
5+
<h2>{{ page.title }}</h2>
6+
7+
{{ content }}
8+
9+
{% include footer.html %}

0 commit comments

Comments
 (0)