Permalink
Cannot retrieve contributors at this time
<!doctype html> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
{% block htmlhead %} | |
<title>{% block title %}Home{% endblock %} | Armin Ronacher's Thoughts and Writings</title> | |
<link rel="stylesheet" href="/static/style.css" type="text/css"> | |
<link href="/feed.atom" rel="alternate" title="Armin Ronacher's Thoughts and Writings" type="application/atom+xml"> | |
{%- for link in links %} | |
<link rel="{{ link.rel }}" href="{{ link.href }}"{% | |
if link.media %} media="{{ link.media }}"{% endif %} type="{{ link.type }}"> | |
{%- endfor %} | |
<meta property="title" content="{{ self.title() }}"> | |
<meta property="og:title" content="{{ self.title() }}"> | |
<meta name="twitter:site" content="@mitsuhiko"> | |
<meta name="twitter:title" content="{{ self.title() }}" /> | |
{% endblock %} | |
</head> | |
<body> | |
<div class=container> | |
<div class=header> | |
<a href="/about/">Armin Ronacher</a>'s Thoughts and Writings | |
</div> | |
<div class=navigation> | |
<ul> | |
<li><a href="/">blog</a> | |
<li><a href="/archive/">archive</a> | |
<li><a href="/tags/">tags</a> | |
<li><a href="/projects/">projects</a> | |
<li><a href="/talks/">talks</a> | |
<li><a href="/about/">about</a> | |
</ul> | |
</div> | |
<div class=body> | |
{% block body %}{% endblock %} | |
</div> | |
<div class=footer> | |
<p>© Copyright {{ format_date(format='YYYY') }} by Armin Ronacher. | |
<p> | |
Content licensed under the Creative Commons | |
attribution-noncommercial-sharealike License. | |
<p> | |
Contact me via <a href="mailto:armin.ronacher@active-4.com">mail</a>, | |
<a href="http://twitter.com/mitsuhiko">twitter</a>, | |
<a href="http://github.com/mitsuhiko">github</a> or | |
<a href="http://bitbucket.org/mitsuhiko">bitbucket</a>. | |
<p> | |
More info: <a href="/about#imprint">imprint</a>. | |
Subscribe <a href="/feed.atom" rel="alternate" title="Armin Ronacher's | |
Thoughts and Writings">to Atom feed</a> | |
(or <a href="http://www.devtacular.com/utilities/atomtorss/?url=http%3a%2f%2flucumr.pocoo.org%2ffeed.atom">RSS</a>) | |
</div> | |
</div> | |
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-20909083-1"></script> | |
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | |
<script> | |
window.dataLayer = window.dataLayer || []; | |
function gtag(){dataLayer.push(arguments);} | |
gtag('js', new Date()); | |
gtag('config', 'UA-20909083-1', { | |
'anonymize_ip': true, | |
'cookie_expires': 0, | |
}); | |
</script> | |
</body> | |
</html> |