hmn/src/templates/src/education_admin.html

22 lines
402 B
HTML

{{ template "base.html" . }}
{{ define "content" }}
<h2>Articles</h2>
<ul>
{{ range .Articles }}
<li>
{{ .Title }}
</li>
{{ end }}
</ul>
<h2>Glossary Terms</h2>
<ul>
{{ range .GlossaryTerms }}
<li>
{{ .Title }}
</li>
{{ end }}
</ul>
{{ end }}