diff options
Diffstat (limited to 'plugins/javadoc/src/main/resources/views')
-rw-r--r-- | plugins/javadoc/src/main/resources/views/components/indexPage.korte | 20 | ||||
-rw-r--r-- | plugins/javadoc/src/main/resources/views/components/indexTable.korte | 6 |
2 files changed, 22 insertions, 4 deletions
diff --git a/plugins/javadoc/src/main/resources/views/components/indexPage.korte b/plugins/javadoc/src/main/resources/views/components/indexPage.korte index 02b94b75..d22b89ea 100644 --- a/plugins/javadoc/src/main/resources/views/components/indexPage.korte +++ b/plugins/javadoc/src/main/resources/views/components/indexPage.korte @@ -9,8 +9,22 @@ <p>See: <a href="#overview_description">Description</a></p> </div> <div class="contentContainer"> - <div class="overviewSummary"> - {% include "components/indexTable.korte" %} - </div> + {% if lists %} + <ul class="blockList"> + {% for item in lists%} + <li class="blockList"> + {% set list = item.list %} + {% set colTitle = item.colTitle %} + {% set tabTitle = item.tabTitle %} + {% set isTypeSummary = "true" %} + {% include "components/indexTable.korte" %} + </li> + {% endfor %} + </ul> + {% else %} + <div class="overviewSummary"> + {% include "components/indexTable.korte" %} + </div> + {% endif %} </div> </main>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/indexTable.korte b/plugins/javadoc/src/main/resources/views/components/indexTable.korte index 9ee387e1..e1b507b9 100644 --- a/plugins/javadoc/src/main/resources/views/components/indexTable.korte +++ b/plugins/javadoc/src/main/resources/views/components/indexTable.korte @@ -1,4 +1,8 @@ -<table> +{% if isTypeSummary %} + <table class="typeSummary"> +{% else %} + <table> +{% endif %} <caption><span>{{ tabTitle }}</span><span class="tabEnd"> </span></caption> <tr> <th class="colFirst" scope="col">{{ colTitle }}</th> |