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

79 lignes
3,8 Kio
HTML
Brut Vue normale Historique

2017-05-08 19:54:31 +02:00
{{define "title"}}{{T "home"}}{{end}}
2017-05-06 06:20:19 +02:00
{{define "contclass"}}cont-home{{end}}
{{define "content"}}
<div class="blockBody">
2017-05-10 02:12:54 +02:00
<ul class="list-inline" aria-label="Page navigation">
<li id="mascot"></li>
2017-05-10 02:12:54 +02:00
<li style="padding-top: 7%;" class="pull-right"><ul class="pagination">
2017-05-09 23:36:58 +02:00
{{ genNav .Navigation .URL 5 }}
2017-05-10 02:12:54 +02:00
</ul></li>
2017-05-05 14:29:14 +02:00
</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>
2017-05-09 23:36:58 +02:00
<th class="col-xs-1 hidden-xs">{{T "category"}}</th>
<th class="col-xs-12">
<a href="{{ genSearchWithOrdering .URL "1" }}">{{T "name"}}{{ genSortArrows .URL "1" }}</a>
</th>
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "5" }}">{{T "S"}}{{ genSortArrows .URL "5" }}</a></th>
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "6" }}">{{T "L"}}{{ genSortArrows .URL "6" }}</a></th>
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "7" }}">{{T "D"}}{{ genSortArrows .URL "7" }}</a></th>
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "2" }}">{{T "date"}}{{ genSortArrows .URL "2" }}</th></a>
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "4" }}">{{T "size"}}{{ genSortArrows .URL "4" }}</a></th>
2017-05-17 12:26:37 +02:00
<th class="col-xs-1 hidden-xs" style="white-space: nowrap;">{{T "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 -->
2017-05-09 23:36:58 +02:00
<td class="hidden-xs" style="width:80px">
<a href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .SubCategory) }}">
2017-05-15 11:08:17 +02:00
{{ if Sukebei }}
<img src="{{$.URL.Parse (printf "/img/torrents/sukebei/%s%s.png" .Category .SubCategory) }}">
{{ else }}
<img src="{{$.URL.Parse (printf "/img/torrents/%s.png" .SubCategory) }}">
2017-05-15 11:08:17 +02:00
{{ end}}
</a>
</td>
<td class="name">
<a href="{{genRoute "view_torrent" "id" .ID }}">
{{.Name}}
</a>
2017-05-17 00:05:16 +02:00
<span class="badge pull-right hidden-xs">{{ len .Comments }}</span>
</td>
{{if .LastScrape.IsZero}}
<td class="hidden-xs" colspan="3" align="center">{{T "unknown"}}</td>
{{else}}
<td class="hidden-xs"><b class="text-success">{{.Seeders}}</b></td>
<td class="hidden-xs"><b class="text-danger">{{.Leechers}}</b></td>
<td class="hidden-xs">{{.Completed}}</td>
{{end}}
2017-05-10 12:47:51 +02:00
<td class="hidden-xs date date-short">{{.Date}}</td>
<td class="hidden-xs filesize">{{.Filesize}}</td>
2017-05-09 23:36:58 +02:00
<td class="hidden-xs">
2017-05-05 17:48:37 +02:00
<a href="{{.Magnet}}" title="Magnet link">
<span class="glyphicon glyphicon-magnet" aria-hidden="true"></span>
</a>
{{if ne .TorrentLink ""}}
<a href="{{.TorrentLink}}" 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>
{{end}}
</td>
</tr>
{{end}}
</table>
2017-05-09 23:36:58 +02:00
</div>
<nav class="torrentNav" aria-label="Page navigation">
<ul class="pagination">
2017-05-10 00:13:34 +02:00
{{ genNav .Navigation .URL 5 }}
</ul>
</nav>
2017-05-05 14:52:41 +02:00
</div>
2017-05-05 13:06:41 +02:00
{{end}}