28 lines
575 B
HTML
28 lines
575 B
HTML
<style>
|
|
.container {
|
|
margin: 3rem;
|
|
}
|
|
</style>
|
|
|
|
<div class="container">
|
|
<div>
|
|
<h1>Multi</h1>
|
|
{{ range $_, $r := .Category1 }} {{ template "components/role" $r }} {{ end
|
|
}}
|
|
</div>
|
|
<div>
|
|
<h1>Single</h1>
|
|
{{ range $_, $r := .Category2 }} {{ template "components/role" $r }} {{ end
|
|
}}
|
|
</div>
|
|
<div>
|
|
<h1>Bad</h1>
|
|
{{ range $_, $r := .Category3 }} {{ template "components/role" $r }} {{ end
|
|
}}
|
|
</div>
|
|
<div>
|
|
<h1>Hmm</h1>
|
|
{{ range $_, $r := .Category4 }} {{ template "components/role" $r }} {{ end
|
|
}}
|
|
</div>
|
|
</div>
|