pmd/docs/_layouts/page.html

39 lines
1.1 KiB
HTML
Raw Permalink Normal View History

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>
<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 %}
<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 %}
<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 %}