mirror of
https://github.com/LeuisKen/leuisken.github.io.git
synced 2026-01-18 14:27:07 +00:00
29 lines
474 B
HTML
29 lines
474 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% include header.html %}
|
|
|
|
<div class="page-content">
|
|
<div class="wrap">
|
|
{% if page.sidePart %}
|
|
<div class="central-part">
|
|
{{ content }}
|
|
</div>
|
|
|
|
<div class="side-part">
|
|
{% include sidebar.html %}
|
|
</div>
|
|
{% else %}
|
|
{{ content }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
</html> |