Skip to content

Commit dd1b209

Browse files
committed
Add FsAdvent 2020 blog post
1 parent 9096c18 commit dd1b209

5 files changed

+631
-2
lines changed

_config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ highlighter: rouge
3535
plugins:
3636
- jekyll-feed
3737

38+
future: true
39+
3840
# Exclude from processing.
3941
# The following items will not be processed, by default.
4042
# Any item listed under the `exclude:` key here will be automatically added to

_layouts/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h2>{{ site.description | default: site.github.project_tagline }}</h2>
3838

3939
<aside id="sidebar">
4040

41-
<a href="/">Home</a>
41+
<a href="{{ site.baseurl }}/">Home</a>
4242

4343
<hr/>
4444

_layouts/post.html

+18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
---
22
layout: default
33
---
4+
<header class="post-header">
5+
<script type="text/x-mathjax-config">
6+
MathJax.Hub.Config({
7+
jax: ["input/TeX","output/HTML-CSS"],
8+
displayAlign: "left",
9+
displayIndent: "5em"
10+
});
11+
</script>
12+
<script type="text/javascript" async
13+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML">
14+
</script>
15+
<h1 class="post-title p-name" itemprop="name headline"> {{ page.title | escape }} </h1>
16+
<p class="post-meta">
17+
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
18+
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
19+
{{ page.date | date: date_format }}
20+
</time>
21+
</header>
422

523
{% assign minutes = content | number_of_words | divided_by: 180 %}
624
{% if minutes == 0 %}

0 commit comments

Comments
 (0)