You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
425 B
HTML
16 lines
425 B
HTML
14 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
{% include head.html %}
|
||
|
<body id="{{ page.body_id }}">
|
||
|
<header><div>{% include header.html %}</div></header>
|
||
|
<nav id="nav"><div>{% include navigation.html %}</div></nav>
|
||
|
<div id="page">
|
||
|
<div>
|
||
|
<div id="main"><article>{{ content }}</article></div>
|
||
|
<aside>{% include sidebar.html %}</aside>
|
||
|
</div>
|
||
|
</div>
|
||
|
<footer><div>{% include footer.html %}</div></footer>
|
||
|
</body>
|
||
|
</html>
|