26 lines
596 B
HTML
26 lines
596 B
HTML
{{define "title"}}Sites webs |{{end}}
|
|
|
|
{{define "body"}}
|
|
|
|
<div class="d-flex">
|
|
<h4>Sites webs</h4>
|
|
<a class="ml-auto btn btn-link" href="/garage/key">Mes identifiants</a>
|
|
<a class="ml-4 btn btn-success" href="/garage/website/new">Nouveau site web</a>
|
|
<a class="ml-4 btn btn-info" href="/">Menu principal</a>
|
|
</div>
|
|
|
|
<table class="table mt-4">
|
|
<thead>
|
|
<th scope="col">ID</th>
|
|
<th scope="col">URLs</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<a href="/garage/website/b/aa">aa</a>
|
|
</td>
|
|
<td>aa</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{{end}}
|