@@ -67,6 +67,12 @@ | |||
<img class="autodoc_template_home_img img-thumbnail rounded" src="" /> | |||
</td> | |||
</tr> | |||
<tr> | |||
<td class="text-left">Pages:</td> | |||
<td class="text-right"> | |||
<span class="autodoc_template_home_pages">undefined</span> | |||
</td> | |||
</tr> | |||
<tr> | |||
<td class="text-left">Owner:</td> | |||
<td class="text-right"> | |||
@@ -158,4 +164,4 @@ | |||
<script src="js/autodoc.js"></script> | |||
</body> | |||
</html> | |||
</html> |
@@ -138,6 +138,10 @@ function document_load() { | |||
.find(".autodoc_template_home_name") | |||
.html(doc.name); | |||
$(col) | |||
.find(".autodoc_template_home_pages") | |||
.html(doc.pages.length); | |||
$.each(doc.tags, function (id, tag) { | |||
$(col) | |||
.find(".autodoc_template_home_tag") |