diff options
author | Valerie R Young <spectranaut@riseup.net> | 2016-07-26 18:44:20 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-28 14:06:25 -0400 |
commit | 28e9066f2f5269c65a6936bebc3ba1e8cc0cfb2f (patch) | |
tree | dd569b74d8b931772601f1c9a30671a69893be47 /mustache-templates/reproducible/basic_page.mustache | |
parent | f159c2dca7d3ef0ccccd55de9f1fda9e9047038c (diff) | |
download | jenkins.debian.net-28e9066f2f5269c65a6936bebc3ba1e8cc0cfb2f.tar.xz |
reproducible debian: breakout package page navigation into seperate template
Decoupling the mainbody and left navigation for package pages allows us to
dry up some of the logic and css between package pages and all other pages that
have a left navigation.
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'mustache-templates/reproducible/basic_page.mustache')
-rw-r--r-- | mustache-templates/reproducible/basic_page.mustache | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mustache-templates/reproducible/basic_page.mustache b/mustache-templates/reproducible/basic_page.mustache index f5fe0383..5ba1f8db 100644 --- a/mustache-templates/reproducible/basic_page.mustache +++ b/mustache-templates/reproducible/basic_page.mustache @@ -16,11 +16,11 @@ {{{navigation_html}}} </header> {{/navigation_html}} - {{#navigation_html}}<div class="mainbody">{{/navigation_html}} + <div {{#navigation_html}}class="mainbody"{{/navigation_html}}> {{#main_header}} <h2>{{main_header}}</h2> {{/main_header}} {{{main_html}}} - {{#navigation_html}}</div>{{/navigation_html}} + </div> </body> </html> |