this repo has no description
1{% extends "index.html" -%}
2
3{%- block title %}
4 <title>{{ section.title }} - {{ config.extra.author }}</title>
5 {# TODO: make some kind of social media linking, i guess? #}
6 {#%- include "snippets/social.html" %#}
7{%- endblock title -%}
8
9{%- block main -%}
10 <article class="post">
11 <header>
12 <h1 class="post-title">
13 <a href="{{ section.permalink }}">{{ section.title }}</a>
14 </h1>
15 {{ posts::section_meta(section=section, author=config.extra.show_author) }}
16 </header>
17
18 {#- Skipping logic for cover as was in original Terminal theme -#}
19
20 {{ section.content | safe }}
21 {# TODO: Decide if any sort of commenting functionality is desired? #}
22 {#%- include "snippets/comments.html" -%#}
23 </article>
24{%- endblock main -%}