resrok-web/templates/default.html

35 lines
832 B
HTML
Raw Permalink Normal View History

2021-11-04 09:46:37 +00:00
<!DOCTYPE html>
<html lang="en-us">
$partial("templates/head.html")$
<body>
$partial("templates/sidebar.html")$
<!-- Wrap is the content to shift when toggling the sidebar. We wrap the
content to avoid any CSS collisions with our real content. -->
<div class="wrap">
<div class="masthead">
<div class="container">
<h3 class="masthead-title">
2021-11-18 10:08:04 +00:00
<img src=/images/hakyll-logo.svg" class=logo style="display: inline;"/>
2021-11-04 09:46:37 +00:00
<a href="$baseurl$" title="Home">$site-title$</a>
<small>$tagline$</small>
</h3>
</div>
</div>
<div class="container content">
$body$
</div>
</div>
<label for="sidebar-checkbox" class="sidebar-toggle"></label>
2021-11-18 10:08:04 +00:00
<script src="/js/script.js"></script>
2021-11-04 09:46:37 +00:00
</body>
</html>