19 lines
655 B
HTML
19 lines
655 B
HTML
{{template "header" .}}
|
|
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
|
|
<h1 class="h2">Statuses</h1>
|
|
<div class="btn-toolbar mb-2 mb-md-0">
|
|
<div class="btn-group mr-2">
|
|
<button type="button" class="btn btn-sm btn-outline-secondary">Share</button>
|
|
<button type="button" class="btn btn-sm btn-outline-secondary">Export</button>
|
|
</div>
|
|
<button type="button" class="btn btn-sm btn-outline-secondary dropdown-toggle">
|
|
<span data-feather="calendar"></span>
|
|
this week
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{{range .Statuses}}
|
|
{{template "status" .}}
|
|
{{end}}
|
|
{{template "footer" .}}
|