go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/pkg/static/_views/home.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 "home" }} {{ 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="feed list">
    13        {{ range $index, $chirp := . }}
    14          <li>{{ template "control_chirp" $chirp }}</li>
    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 }}