13 lines
423 B
HTML
13 lines
423 B
HTML
{% import "lib/githubLinks.html" as github -%}
|
|
|
|
{% set relativePath = doc.fileInfo.relativePath %}
|
|
{% if doc.title %}{$ ('# ' + doc.title.trim()) | marked $}{% endif %}
|
|
{% if 'guide/' in relativePath or 'tutorial/' in relativePath or 'docs.md' in relativePath %}
|
|
<div class="github-links">
|
|
{$ github.githubEditLink(doc, versionInfo) $}
|
|
</div>
|
|
{% endif %}
|
|
<div class="content">
|
|
{$ doc.description | marked $}
|
|
</div>
|