muldap/templates/index.html
Gregory Ballantine 8a572e70b1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Added start of Muldap web service
2023-03-29 18:07:46 -04:00

12 lines
249 B
HTML

{{ 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" . }}