cup/storage/templates/custom_theme_contentpage.html

25 lines
628 B
HTML
Raw Normal View History

2024-10-10 09:59:53 -04:00
<!DOCTYPE html>
<html lang="en">
{{template "page_head" "Goffee"}}
<body>
<div class="container">
<fieldset>
<legend>Content demos</legend>
<div class="row">
{{template "content_table" .ContentTable}}
</div>
2024-10-27 13:55:12 -04:00
<div class="row">
2024-10-28 12:34:54 -04:00
<div class="col-lg-6">
<h2>Pie chart</h2>
{{template "content_graph" .ContentGraph}}
</div>
<div class="col-lg-6">
{{template "content_tabledetail" .ContentTabledetail}}
</div>
2024-10-27 13:55:12 -04:00
</div>
2024-10-10 09:59:53 -04:00
</fieldset>
</div>
{{template "page_footer"}}
</body>
</html>