mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
19 lines
478 B
HTML
19 lines
478 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}kennethreitz.org — {% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/tufte.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h2><a href="/">kennethreitz.org</a></h2>
|
|
{% block nav %}{% endblock %}
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|