mirror of
https://github.com/JangoSteve/jQuery-EasyTabs.git
synced 2026-06-14 15:37:02 +02:00
20 lines
385 B
HTML
20 lines
385 B
HTML
<html>
|
|
<head>
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" media="all" href="css/pygments.css" />
|
|
</head>
|
|
<body>
|
|
<div class='toc'>
|
|
<ul>
|
|
{% for link in page.links %}
|
|
<li><a href="{{ link.href }}">{{ link.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div id='post'>
|
|
{{ content }}
|
|
</div>
|
|
</body>
|
|
</html>
|