diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-08-17 11:34:33 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-08-17 11:34:33 -0700 |
commit | 54fb9a58d7b2fc961b6f7eae614e4061f98bb70c (patch) | |
tree | a9218990875382b689a2585aadb1189bca064953 /theme/templates | |
parent | 6b0ad22b191d92a07976bc0f8467691191bb779f (diff) | |
download | gitbook-54fb9a58d7b2fc961b6f7eae614e4061f98bb70c.zip gitbook-54fb9a58d7b2fc961b6f7eae614e4061f98bb70c.tar.gz gitbook-54fb9a58d7b2fc961b6f7eae614e4061f98bb70c.tar.bz2 |
Add base less for glossary
Diffstat (limited to 'theme/templates')
-rw-r--r-- | theme/templates/glossary.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/theme/templates/glossary.html b/theme/templates/glossary.html index 73ef4d6..539ec59 100644 --- a/theme/templates/glossary.html +++ b/theme/templates/glossary.html @@ -3,5 +3,10 @@ {% block title %}Glossary | {{ title }}{% endblock %} {% block page_inner %} - +{% for item in glossary %} +<section class="normal glossary" id="{{ item.name }}"> + <h2>{{ item.name }}</h2> + <p>{{ item.description }}</p> +</section> +{% endfor %} {% endblock %} |