reciproka-web/templates/default.html

35 lines
854 B
HTML
Raw Normal View History

2021-11-02 22:14:48 +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">
2023-08-24 10:58:49 +00:00
<img src="$baseurl$/images/reciproka-logo.png" class=logo style="display: inline;"/>
2021-11-02 22:14:48 +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-16 09:42:21 +00:00
<script src='$baseurl$/js/script.js'></script>
2021-11-02 22:14:48 +00:00
</body>
2021-10-27 07:06:59 +00:00
</html>