Skip to content

Commit de957ec

Browse files
committed
Checkpoint website.
1 parent 5ea2a63 commit de957ec

10 files changed

Lines changed: 1746 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

_config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
safe: true
2+
source: .
3+
destination: _site
4+
lsi: false
5+
pygments: true

_layouts/default.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="content-type" content="text/html;charset=utf-8">
5+
<title>d3{% if page.title %} - {{ page.title }}{% endif %}</title>
6+
<script type="text/javascript" src="/d3.js?0.0.0"></script>
7+
<style type="text/css">
8+
9+
@import url("/style.css?0.0.0");
10+
@import url("/syntax.css?0.0.0");
11+
12+
</style>
13+
</head>
14+
<body>
15+
<div class="body">
16+
17+
{{ content }}
18+
19+
</div>
20+
<div class="foot">Copyright &copy; 2010 <a href="http://bost.ocks.org/mike">Mike Bostock</a></div>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)