Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/templates/home.html

57 lignes
2 Kio
HTML
Brut Vue normale Historique

{{define "title"}}Home{{end}}
2017-05-06 06:20:19 +02:00
{{define "contclass"}}cont-home{{end}}
{{define "content"}}
<div class="blockBody">
2017-05-05 14:29:14 +02:00
<nav class="torrentNav" aria-label="Page navigation">
<ul class="pagination">
{{ genNav .Navigation .URL 10 }}
</ul>
</nav>
2017-05-05 14:52:41 +02:00
<div class="table-responsive">
2017-05-05 17:38:47 +02:00
<table class="table custom-table-hover">
<tr>
<th>Category</th>
<th>Name</th>
<th>Date</th>
<th>Size</th>
<th>Links</th>
</tr>
{{ range .ListTorrents}}
<tr class="torrent-info
{{if eq .Status 2}}remake{{end}}
{{if eq .Status 3}}trusted{{end}}
{{if eq .Status 4}}aplus{{end}}">
<!-- forced width because the <td> gets bigger randomly otherwise -->
<td style="width:80px">
<a href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .Sub_Category) }}">
<img src="{{$.URL.Parse (printf "/img/torrents/%s.png" .Sub_Category) }}">
</a>
</td>
<td class="name">
<a href="{{genRoute "view_torrent" "id" .Id }}">
{{.Name}}
</a>
</td>
2017-05-05 15:55:25 +02:00
<td class="date date-short">{{.Date}}</td>
<td class="filesize">{{.Filesize}}</td>
<td>
2017-05-05 17:48:37 +02:00
<a href="{{.Magnet}}" title="Magnet link">
<span class="glyphicon glyphicon-magnet" aria-hidden="true"></span>
</a>
2017-05-07 18:58:11 +02:00
<a href="http://anicache.com/torrent/{{.Hash}}.torrent" title="Torrent file">
2017-05-05 13:06:41 +02:00
<span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span>
2017-05-07 18:58:11 +02:00
</a>
</td>
</tr>
{{end}}
</table>
<nav class="torrentNav" aria-label="Page navigation">
<ul class="pagination">
{{ genNav .Navigation .URL 10 }}
</ul>
</nav>
</div>
2017-05-05 14:52:41 +02:00
</div>
2017-05-05 13:06:41 +02:00
{{end}}