This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
portfolio/_layouts/default.html
2020-12-13 03:11:29 +00:00

39 lines
571 B
HTML

<!DOCTYPE HTML>
<html>
{% include head.html %}
<script src="/assets/js/jquery.min.js"></script>
<body class="is-preload">
{% include header.html %}
{% include cookie-notice.html %}
<!-- Heading -->
<div id="heading">
<h1>{{ page.title }}</h1>
</div>
<!-- Main -->
<section id="main" class="wrapper">
<div class="inner">
<div class="content">
{{ content }}
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="inner">
{% include footer.html %}
</div>
</footer>
{% include scripts.html %}
</body>
</html>