You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
254 B
HTML
15 lines
254 B
HTML
3 years ago
|
---
|
||
|
layout: page
|
||
|
title: Docs
|
||
|
permalink: /docs/
|
||
|
---
|
||
|
|
||
|
<div>
|
||
|
{% for doc in site.docs %}
|
||
|
{% if doc.draft != true %}
|
||
|
<h2>
|
||
|
<a href="{{ doc.url | prepend: site.baseurl }}">{{ doc.title }}</a>
|
||
|
</h2>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</div>
|