dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

bhcli-downloads.gohtml (1180B)


      1 {{ define "content" }}
      2 
      3 <div class="container">
      4     <nav aria-label="breadcrumb">
      5         <ol class="breadcrumb">
      6             <li class="breadcrumb-item"><a href="/bhcli">BHCLI</a></li>
      7             <li class="breadcrumb-item active">{{ t "Downloads" . }}</li>
      8         </ol>
      9     </nav>
     10 
     11     <h2>Chat CLI client</h2>
     12 
     13     <table class="table table-striped table-sm">
     14         <thead>
     15         <tr>
     16             <th>{{ t "File name" . }}</th>
     17             <th>{{ t "OS" . }}</th>
     18             <th>{{ t "Arch" . }}</th>
     19             <th>{{ t "Size" . }}</th>
     20             <th>{{ t "SHA256 Checksum" . }}</th>
     21         </tr>
     22         </thead>
     23         <tbody>
     24         {{ range .Data.Files }}
     25             <tr>
     26                 <td><a href="/bhcli/downloads/{{ .Name }}">{{ .Name }}</a></td>
     27                 <td>{{ .OS }}</td>
     28                 <td>{{ .Arch }}</td>
     29                 <td>{{ .Bytes }}</td>
     30                 <td class="align-middle" style="font-size: 10px; font-family: monospace;">{{ .Checksum }}</td>
     31             </tr>
     32         {{ else }}
     33             <tr><td colspan="5"><em>{{ t "No files to display" . }}</em></td></tr>
     34         {{ end }}
     35         </tbody>
     36     </table>
     37 </div>
     38 
     39 {{ end }}