Skip to content

Commit

Permalink
Merge pull request #383 from benbalter/gh-pages
Browse files Browse the repository at this point in the history
First pass at Jekyll-ization
  • Loading branch information
konklone committed Mar 21, 2013
2 parents bffe3d0 + 3b9e636 commit b19e746
Show file tree
Hide file tree
Showing 27 changed files with 403 additions and 3,658 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
source/config.yml
_site
5 changes: 5 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# fill in with google analytics key
google_analytics: UA-22821126-30
pygments: true
server: true
auto: true
55 changes: 55 additions & 0 deletions _layouts/page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunlight Congress API | {{ page.title }}</title>


<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="pygments.css">

<script type="text/javascript" src="//use.typekit.net/egj6wnp.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>

</head>
<body><div id="container">
<div id="nav">

<div id="header">
<a href="index.html" id="logo">Sunlight Congress API</a>
</div>

<ul id="sections">

</ul>


<div class="extra twitter">

<iframe allowtransparency="true" frameborder="0" scrolling="no" style="width:162px; height:20px;" src="https://platform.twitter.com/widgets/follow_button.html?screen_name=sunlightlabs&show_count=false"></iframe></div>

</div>
<div id="content">

{{ content }}

</div>
</div>
<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ site.google_analytics }}']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

</body>
</html>
788 changes: 0 additions & 788 deletions bills.html

This file was deleted.

Loading

0 comments on commit b19e746

Please sign in to comment.