aboutsummaryrefslogtreecommitdiff
path: root/dokka-subprojects/plugin-javadoc/src/main/resources/views/components/indexPage.korte
diff options
context:
space:
mode:
Diffstat (limited to 'dokka-subprojects/plugin-javadoc/src/main/resources/views/components/indexPage.korte')
-rw-r--r--dokka-subprojects/plugin-javadoc/src/main/resources/views/components/indexPage.korte30
1 files changed, 30 insertions, 0 deletions
diff --git a/dokka-subprojects/plugin-javadoc/src/main/resources/views/components/indexPage.korte b/dokka-subprojects/plugin-javadoc/src/main/resources/views/components/indexPage.korte
new file mode 100644
index 00000000..84679fad
--- /dev/null
+++ b/dokka-subprojects/plugin-javadoc/src/main/resources/views/components/indexPage.korte
@@ -0,0 +1,30 @@
+<main role="main">
+ <div class="header">
+ <h1 {{ h1Title(kind)|raw }}class="title">{{ title }} {% if version != null %}{{ version }} API {% endif %}</h1>
+ </div>
+ <div class="header">
+ <div class="subtitle">
+ <div class="block">{{ subtitle|raw }}</div>
+ </div>
+ <p>See: <a href="#overview_description">Description</a></p>
+ </div>
+ <div class="contentContainer">
+ {% 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