2023-06-14 16:01:37 +08:00
|
|
|
{{template "base/head" .}}
|
|
|
|
|
|
2025-03-28 19:50:43 +00:00
|
|
|
<div role="main" class="page-content ui container">
|
2026-01-26 13:12:25 +01:00
|
|
|
<h1>Demo pages</h1>
|
2025-11-30 17:03:22 +01:00
|
|
|
|
|
|
|
|
<p>Various pages that may be helpful in development or testing</p>
|
|
|
|
|
|
|
|
|
|
<article>
|
|
|
|
|
<h2>Components</h2>
|
|
|
|
|
<ul>
|
|
|
|
|
{{range .SubNames}}
|
2026-01-26 13:12:25 +01:00
|
|
|
<li><a href="{{AppSubUrl}}/-/demo/{{.}}">{{.}}</a></li>
|
2025-11-30 17:03:22 +01:00
|
|
|
{{end}}
|
|
|
|
|
</ul>
|
|
|
|
|
</article>
|
2025-03-28 19:50:43 +00:00
|
|
|
|
|
|
|
|
<article>
|
|
|
|
|
<h2>Error pages</h2>
|
|
|
|
|
<ul>
|
2026-01-26 13:12:25 +01:00
|
|
|
<li><a href="{{AppSubUrl}}/-/demo/error/404">Not found</a></li>
|
|
|
|
|
<li><a href="{{AppSubUrl}}/-/demo/error/413">Quota exhaustion</a></li>
|
|
|
|
|
<li><a href="{{AppSubUrl}}/-/demo/error/500">Server error</a></li>
|
2025-03-28 19:50:43 +00:00
|
|
|
</ul>
|
|
|
|
|
</article>
|
|
|
|
|
</div>
|
2023-06-14 16:01:37 +08:00
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
ul {
|
|
|
|
|
line-height: 2em;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
{{template "base/footer" .}}
|