d06b7677c8
This is a large-ish commit that adds bunch of features to the base
"tale" theme forked from https://github.com/chesterhow/tale at de5cd20
.
The changes:
- custom footer
- support for sidenotes, original taken from:
https://blog.jkl.gg/jekyll-footnote-tufte-sidenote/
- logo at the top of the website
- date format is %Y-%m-%d
- The "written by" in article is only shown when article's author
differs from site author
- Pages subpage shows list of posts sorted by years
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{% seo %}
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700">
|
|
|
|
<!-- scripts -->
|
|
<script src="{{ "/assets/js/jquery.min.js" | relative_url }}"></script>
|
|
<script src="{{ "/assets/js/sidenotes.js" | relative_url }}"></script>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" sizes="128x128" href="{{ "/assets/favicon-128x128.png" | relative_url }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicon-32x32.png" | relative_url }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/favicon-16x16.png" | relative_url }}">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/apple-touch-icon.png" | relative_url }}">
|
|
|
|
<!-- RSS -->
|
|
{% feed_meta %}
|
|
|
|
<!-- Google Analytics-->
|
|
{% if site.google_analytics and jekyll.environment == 'production' %}
|
|
{% include analytics.html %}
|
|
{% endif %}
|
|
</head>
|