mirror of
https://github.com/kaka111222333/kaka111222333.github.io.git
synced 2025-12-17 15:25:10 +08:00
35 lines
641 B
HTML
35 lines
641 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body>
|
|
{% include nav.html %}
|
|
|
|
{% if page.toc==true %}
|
|
<aside class="toc">
|
|
{% include toc.html html=content %}
|
|
</aside>
|
|
{% endif %}
|
|
|
|
<div id="main" role="main" class="wrapper-content">
|
|
<div class="container">
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
|
|
{% include analytics.html %}
|
|
</body>
|
|
|
|
{% if page.toc==true %}
|
|
<script>
|
|
document.getElementById("main").classList.add("withtoc");
|
|
</script>
|
|
{% endif %}
|
|
|
|
<div class="wrapper-footer-mobile">
|
|
<footer class="footer">
|
|
{% include footer.html %}
|
|
</footer>
|
|
|
|
|
|
</html>
|