You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
924 B
HTML
28 lines
924 B
HTML
---
|
|
layout: default
|
|
---
|
|
<article class="container px-2 mx-auto mb4" itemscope itemtype="http://schema.org/BlogPosting">
|
|
<h1 class="post-headline col-9 sm-width-full mt-3 inline-block" itemprop="name headline">{{ page.title }}</h1>
|
|
<div class="col-4 sm-width-full mt-1 border-top-thin ">
|
|
<p class="mb-3 py-2 bold h4"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{
|
|
page.date | date: "%b %-d, %Y" }}</time></p>
|
|
</div>
|
|
|
|
<div class="prose doc-body" itemprop="articleBody">
|
|
{{ content }}
|
|
</div>
|
|
</article>
|
|
|
|
<div class="navigation">
|
|
{% for doc in site.docs %}
|
|
{% if doc.draft == false %}
|
|
<h3 class="{% if doc.url == page.url %}selected{% endif %}">
|
|
<a href="{{ doc.url | prepend: site.baseurl }}">{{ doc.title }}</a>
|
|
</h3>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="container mx-auto px-2 py-2 clearfix">
|
|
{% include previous-next_docs.html %}
|
|
</div> |