24 lines
522 B
HTML
24 lines
522 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include head.html %}
|
|
|
|
</head>
|
|
<body class="blog et_fixed_nav et_cover_background linux et_right_sidebar chrome">
|
|
|
|
<div class="page-content" id="page-container" style="padding-top: 78px;">
|
|
{% include nav.html %}
|
|
<div id="main-content">
|
|
|
|
<div class="wrapper" id="wrapper">
|
|
<div class="document_foo" id="document">
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
<div class="push"></div>
|
|
</div>
|
|
{% include footer.html %}
|
|
</body>
|
|
|
|
</html>
|