go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/pkg/static/_views/notifications.html (about) 1 <!-- 2 Copyright (c) 2023 - Present. Will Charczuk. All rights reserved. 3 Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 4 --> 5 {{ define "notifications" }} {{ template "control_header" . }} 6 <div class="container"> 7 <div class="row"> 8 <div class="two columns"> 9 {{ template "control_side_nav" . }} 10 </div> 11 <div class="eight columns"> 12 <ul class="notifications-list list"> 13 {{ range $index, $notif := . }} 14 {{ template "control_notification" $notif }} 15 {{ else }} 16 <li>{{ localize "Nothing to display yet!" }}</li> 17 {{ end }} 18 </ul> 19 </div> 20 </div> 21 </div> 22 {{ template "control_footer" . }} 23 {{ end }}