mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-01-23 06:08:34 +01:00
26 lines
488 B
HTML
26 lines
488 B
HTML
{% include header.html %}
|
|
{% if page.redirect %}
|
|
<div>
|
|
This page has moved to <A HREF="{{ page.redirect }}">{{ page.redirect }}</A>.
|
|
|
|
<P>Please update your bookmarks.
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
{% else %}
|
|
|
|
<div class="container container-left">
|
|
<div class="row">
|
|
<div class="col-md-3 hidden-xs">
|
|
{% include sidebar.html %}
|
|
</div>
|
|
<div class="col-md-9">
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
{% endif %}
|