選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
525B

  1. {{define "home"}}
  2. <!doctype html>
  3. <html lang="en">
  4. <head>
  5. <title>{{.Title}}</title>
  6. {{template "head" .}}
  7. </head>
  8. <body>
  9. {{template "nav" .}}
  10. {{if .Msg}}<div class="flash flash-ok">{{.Msg}}</div>{{end}}
  11. {{if .Err}}<div class="flash flash-err">{{.Err}}</div>{{end}}
  12. <h1>QC Text Builder</h1>
  13. <p>Minimal admin UI for AI template workflow.</p>
  14. <table>
  15. <tr><th>Available templates</th><td>{{.TemplateCount}}</td></tr>
  16. </table>
  17. <p>
  18. <a href="/templates">Open Templates</a>
  19. </p>
  20. </body>
  21. </html>
  22. {{end}}