mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
22 lines
431 B
HTML
22 lines
431 B
HTML
<html>
|
|
<head>
|
|
{% include head.html %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main">
|
|
<h1 id="title">{{ page.title }}</h1>
|
|
<div id="content">{{ content | inject_anchors }}</div>
|
|
</div>
|
|
<div id="menu">
|
|
{% include logo.html %}
|
|
{% include user.html %}
|
|
{% include toc.html %}
|
|
{% include links.html %}
|
|
{% include tags.html %}
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|