blob: 1ae5ccf3f953649dc98b5e318a63d4860b00e405 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
layout: default
---
{% capture date %}{%- include jekyll-theme/posts/date.html date=page.date monospace=true -%}{% endcapture %}
{% assign category = "" %}
{% if page.category %}
{% capture category %}{%- include jekyll-theme/categories/label.html link=true category=page.category monospace=true -%} {% endcapture %}
{% endif %}
{% capture date %}<p>{{ category }}{{ date }}</p>{% endcapture %}
{% capture title %}<h1><span class="font-size-90">{{ page.title }}</span></h1>{% endcapture %}
{% include jekyll-theme/flex-header.html title=title right=date %}
{{ content }}
{% include jekyll-theme/sidebar/sep.html %}
|