36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
{% comment %}
|
|
<!-- Based on: MaterialDocs https://github.com/chromatical/jekyll-materialdocs -->
|
|
<!-- Copyright (c) 2017 James King -->
|
|
<!-- MIT License https://opensource.org/licenses/MIT -->
|
|
{% endcomment %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include head.html %}
|
|
</head>
|
|
<body>
|
|
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--fixed-drawer">
|
|
{% include header.html %}
|
|
<div class="mdl-layout__drawer">
|
|
<span class="mdl-layout-title">
|
|
<a class="mdl-layout-icon" href="{{ '/' | absolute_url }}">
|
|
{% if site.logo %}
|
|
<img src="{{ site.logo | absolute_url }}" alt="" id="site-logo"/>
|
|
{% endif %}
|
|
</a>
|
|
<!-- <a id="site-title" href="{{ '/' | absolute_url }}">{{ site.title }}</a>-->
|
|
</span>
|
|
<nav class="mdl-navigation">
|
|
{% include menu.html %}
|
|
</nav>
|
|
</div>
|
|
<main class="mdl-layout__content">
|
|
<div class="mdl-grid grid-content">
|
|
{{ content }}
|
|
</div>
|
|
{% include footer.html %}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|