mirror of
https://github.com/metagov/govarch-website.git
synced 2025-04-30 13:18:00 +00:00
35 lines
832 B
HTML
35 lines
832 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% if site.data.menu %}
|
|
{% include menu.html %}
|
|
{% else %}
|
|
{% include back-link.html %}
|
|
{% endif %}
|
|
|
|
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
|
|
|
|
{% if page.title != "" %}
|
|
<h1 class="post-title divided p-name" itemprop="name headline">
|
|
{{ page.title }}
|
|
</h1>
|
|
{% endif %}
|
|
|
|
<div class="post-content e-content" itemprop="articleBody">
|
|
{{ content }}
|
|
</div>
|
|
|
|
<div class="post-meta">
|
|
{% if page.author %}
|
|
<div itemprop="author">{{ page.author }}</div>
|
|
{% endif %}
|
|
<time class="post-date dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%B %-d, %Y" }}</time>
|
|
</div>
|
|
|
|
{% if site.disqus.shortname %}
|
|
{% include disqus-comments.html %}
|
|
{% endif %}
|
|
|
|
</article>
|