mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-03-01 07:42:22 +01:00
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
30 lines
1014 B
HTML
30 lines
1014 B
HTML
---
|
|
layout: default
|
|
---
|
|
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
|
|
|
|
<header class="post-header">
|
|
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
|
|
<p class="post-meta text-muted font-weight-light">
|
|
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
|
{{- page.date | date: "%b %-d, %Y" -}}
|
|
</time>
|
|
</p>
|
|
</header>
|
|
|
|
<div class="post-content e-content" itemprop="articleBody">
|
|
{{ content | markdownify }}
|
|
</div>
|
|
|
|
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
|
|
|
|
<div class="mt-5 mb-4">
|
|
{% if page.previous -%}
|
|
<a class="btn btn-outline-primary mr-4" href="{{ page.previous.url | relative_url }}" role="button">Previous Post</a>
|
|
{%- endif -%}
|
|
{% if page.next -%}
|
|
<a class="btn btn-outline-primary" href="{{ page.next.url | relative_url }}" role="button">Next Post</a>
|
|
{%- endif -%}
|
|
</div>
|
|
</article>
|