muldap/templates/index.html

12 lines
249 B
HTML
Raw Permalink Normal View History

2023-03-29 18:07:46 -04:00
{{ template "layout/header" . }}
<p>This is a test.</p>
<ul>
{{ range .results.Entries }}
<li><a href="/user/{{ .GetAttributeValue "uid" }}">{{ .GetAttributeValue "displayName" }}</a></li>
{{ end }}
</ul>
{{ template "layout/footer" . }}