2016-09-07 16:10:48 -04:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
2022-03-15 01:28:15 +01:00
|
|
|
{% include header.html %}
|
|
|
|
|
2016-09-07 16:10:48 -04:00
|
|
|
<div class="post-header">
|
|
|
|
<h1 class="post-title-main">{{ page.title }}</h1>
|
|
|
|
</div>
|
|
|
|
|
2022-03-24 12:13:01 +01:00
|
|
|
<div class="post-content" {% if site.github_editme_path and page.editmepath != false %}data-github-edit-url="https://github.com/{{site.github_editme_path}}{{editmepath}}"{% endif %}>
|
2016-09-07 16:10:48 -04:00
|
|
|
|
|
|
|
{% if page.summary %}
|
|
|
|
<div class="summary">{{page.summary}}</div>
|
|
|
|
{% endif %}
|
2023-08-10 17:30:06 +02:00
|
|
|
<details id="inline-toc-details">
|
|
|
|
<summary>Table of Contents</summary>
|
|
|
|
<div id="inline-toc"><!-- empty, move TOC here when screen size too small --></div>
|
|
|
|
</details>
|
2016-09-07 16:10:48 -04:00
|
|
|
|
|
|
|
{{content}}
|
|
|
|
|
|
|
|
<div class="tags">
|
|
|
|
{% if page.tags != null %}
|
|
|
|
<b>Tags: </b>
|
|
|
|
{% assign projectTags = site.data.tags.allowed-tags %}
|
|
|
|
{% for tag in page.tags %}
|
|
|
|
{% if projectTags contains tag %}
|
2020-09-18 11:49:49 +02:00
|
|
|
<a href="{{ "tag_" | append: tag | append: ".html" }}" class="btn btn-outline-secondary navbar-btn cursorNorm" role="button">{{page.tagName}}{{tag}}</a>
|
2016-09-07 16:10:48 -04:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% include footer.html %}
|