diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-09-10 23:25:10 +0200 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-09-10 23:25:10 +0200 |
| commit | 0afbfaee75e8480e8e0ed0a3bbd3749a4756f727 (patch) | |
| tree | f9e4d91866060661d53c50c66973fcd20600983f /_layouts/default.html | |
| download | lumberjaph-0afbfaee75e8480e8e0ed0a3bbd3749a4756f727.tar.gz | |
initial import
Diffstat (limited to '_layouts/default.html')
| -rw-r--r-- | _layouts/default.html | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..04a4e96 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,67 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <title>{{ page.title }}</title> + <meta name="author" content="franck cuny" /> + <link href="http://lumberjaph.net/index.atom" rel="alternate" title="Tom Preston-Werner" type="application/atom+xml" /> + + <!-- syntax highlighting CSS --> + <link rel="stylesheet" href="/static/css/syntax.css" type="text/css" /> + + <!-- Homepage CSS --> + <link rel="stylesheet" href="/static/css/screen.css" type="text/css" media="screen, projection" /> + +</head> +<body> + +<div class="site"> + <div class="title"> + <a href="/">I'm a lumberjaph</a> + <a class="extra" href="/">home</a> + <a class="extra" href="/archives.html">archives</a> + <a class="extra" href="/about/">about</a> + <a class="extra" href="/talks/">talks</a> + <a class="extra" href="/contact/">contact</a> + </div> + + {{ content }} + + <div class="footer"> + <div class="contact"> + <p> + franck cuny<br /> + franck@lumberjaph.net + </p> + </div> + <div class="contact"> + <p> + <a href="http://github.com/franckcuny/">github.com/franckcuny</a><br /> + <a href="http://twitter.com/franckcuny/">twitter.com/franckcuny</a><br /> + </p> + </div> + <div class="rss"> + <a href="http://lumberjaph.net/index.atom"> + <img src="/static/imgs/rss.png" alt="Subscribe to RSS Feed" /> + </a> + </div> + </div> +</div> + + +<script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-117415-21']); + _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> |
