category-theory-illustrated/_layouts/default.html
2021-12-09 21:33:37 +02:00

101 lines
3.1 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">
<script>
window.MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
}
};
</script>
<script type="text/javascript" id="MathJax-script"
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script>
</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="button" href="{{site.baseurl}}{{page.previous.url}}">&laquo;prev</a>
{% endif %}
{% if page.next.url %}
<a class="button" href="{{site.baseurl}}{{page.next.url}}">next&raquo;</a>
{% endif %}
</div>
{{ content }}
<div class="prev-next">
{% if page.previous.url %}
<a class="button" href="{{site.baseurl}}{{page.previous.url}}">&laquo;prev</a>
{% endif %}
{% if page.next.url %}
<a class="button" 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>