summaryrefslogtreecommitdiffstats
path: root/theme/templates
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2014-04-06 13:07:57 -0700
committerSamy Pessé <samypesse@gmail.com>2014-04-06 13:07:57 -0700
commitadf20e6a163fec19e22d342e05ee7592a8c43c65 (patch)
tree4bc4acd64ab427f7a783510070947394f7d1637a /theme/templates
parent53f714b7f3ac2523a4ce98dcb1a1b8a8ee687c43 (diff)
downloadgitbook-adf20e6a163fec19e22d342e05ee7592a8c43c65.zip
gitbook-adf20e6a163fec19e22d342e05ee7592a8c43c65.tar.gz
gitbook-adf20e6a163fec19e22d342e05ee7592a8c43c65.tar.bz2
Add base style for languages index page
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/langs.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/theme/templates/langs.html b/theme/templates/langs.html
index 238889d..c3a628f 100644
--- a/theme/templates/langs.html
+++ b/theme/templates/langs.html
@@ -4,15 +4,17 @@
{% block content %}
<div class="book-langs-index">
- <h1>{{ title }}</h1>
+ <div class="inner">
+ <h1>{{ title }}</h1>
- <ul class="languages">
- {% for lang in langs %}
- <li>
- <a href="{{ basePath}}/{{ lang.path }}">{{ lang.title }}</a>
- </li>
- {% endfor %}
- </ul>
+ <ul class="languages">
+ {% for lang in langs %}
+ <li>
+ <a href="{{ basePath}}/{{ lang.path }}">{{ lang.title }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
</div>
{% endblock %}