-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #383 from benbalter/gh-pages
First pass at Jekyll-ization
- Loading branch information
Showing
27 changed files
with
403 additions
and
3,658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
source/config.yml | ||
_site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.