category-theory-illustrated/_layouts/default.html
Boris Marinov eeca3f8b49 stuff
2021-04-23 06:48:36 +03:00

87 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title> {{site.name}} - {{ page.title }}</title>
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/style.css">
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/custom-style.css">
</head>
<body>
<div class="header">
<div class="container">
<a href="{{site.baseurl}}/">
<img src="{{site.baseurl}}/logo.svg" class="logo">
</a>
</div>
</div>
<div class="container page-{{page.title}}">
<!--<h1>{{page.title}}</h1> -->
<div class="prev-next">
{% if page.previous.url %}
<a class="prev" href="{{site.baseurl}}{{page.previous.url}}">&laquo;prev</a>
{% endif %}
{% if page.next.url %}
<a class="next" href="{{site.baseurl}}{{page.next.url}}">next&raquo;</a>
{% endif %}
</div>
{{ content }}
<div class="prev-next">
{% if page.previous.url %}
<a class="prev" href="{{site.baseurl}}{{page.previous.url}}">&laquo;prev</a>
{% endif %}
{% if page.next.url %}
<a class="next" href="{{site.baseurl}}{{page.next.url}}">next&raquo;</a>
{% endif %}
</div>
<script type='text/javascript' src='https://ko-fi.com/widgets/CounterWidget.js'></script><script type='text/javascript'>counterwidget.init('K3K539YDO');counterwidget.draw();</script>
</div>
<div class="footer">
<div class="container">
<h1>Contents</h1>
{% for chapter in site.chapters %}
<p><a href="{{chapter.url | prepend:site.baseurl}}">{{chapter.title}}</a></p>
{% endfor %}
<!--
<h1>Download</h1>
<p><a href="{{site.baseurl}}{{site.baseurl}}.epub">as epub</a></p>
<p><a href="{{site.baseurl}}{{site.baseurl}}.txt">as txt</a></p>
-->
</div>
</div>
<div class="footer" style="background-color:#39bcedff">
<div class="container">
<h1>Created by Boris Marinov</h1>
<p><a target="_blank" href="/">personal blog</a></p>
<p><a href="mailto:marinovboris@protonmail.com">email</a></p>
<p><a target="_blank" href="https://mastodon.social/@borko">mastodon</a></p>
<p><a target="_blank" href="https://twitter.com/AlexanderKatt/">twitter</a></p>
<p><a target="_blank" href="https://github.com/boris-marinov/category-theory-illustrated">Github</a></p>
<h1>Support this project</h1>
<p><a target="_blank" href="https://ko-fi.com/borismarinov">Ko-fi</a></p>
</div>
</div>
<div class="footer">
<div class="container">
<p>
<i>Made with
<a target="_blank" href="https://github.com/boris-marinov/jekyll-book-boilerplate">
Jekyll Book Boilerplate
</a>
</i>
</p>
</div>
</div>
</body>