2016-09-09 07:47:20 -04:00
|
|
|
{% import "lib/githubLinks.html" as github -%}
|
2015-09-16 02:21:55 -04:00
|
|
|
{% extends 'layout/base.template.html' -%}
|
|
|
|
{% block body -%}
|
2015-12-01 18:31:36 -05:00
|
|
|
include {$ relativePath(doc.path, '_util-fns') $}
|
2015-11-17 02:10:18 -05:00
|
|
|
p.location-badge.
|
2016-09-14 02:50:02 -04:00
|
|
|
defined in {$ github.githubViewLink(doc, versionInfo) $}
|
2015-09-16 02:21:55 -04:00
|
|
|
|
|
|
|
ul
|
2015-12-01 18:31:36 -05:00
|
|
|
{% for page in doc.childPages -%}
|
|
|
|
li
|
2016-09-13 15:17:20 -04:00
|
|
|
- var name = "{$ page.title $}";
|
|
|
|
- var url = "{$ relativePath(doc.moduleFolder, page.exportDoc.path) $}";
|
|
|
|
include {$ relativePath(doc.path, '../../../_includes/_hover-card') $}
|
2015-12-01 18:31:36 -05:00
|
|
|
{% endfor %}
|
2016-09-13 15:17:20 -04:00
|
|
|
{% endblock %}
|