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}}
2017-05-05 03:53:38 +02:00
{{define "content"}}
< div class = "blockBody" >
2017-05-05 14:29:14 +02:00
< nav class = "torrentNav" aria-label = "Page navigation" >
< ul class = "pagination" >
2017-05-09 23:36:58 +02:00
{{ genNav .Navigation .URL 5 }}
2017-05-05 14:29:14 +02:00
< / ul >
< / nav >
2017-05-08 22:50:23 +02:00
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" >
2017-05-05 03:53:38 +02:00
< tr >
2017-05-09 23:36:58 +02:00
< th class = "col-xs-1 hidden-xs" > {{T "category"}}< / th >
< th class = "col-xs-8" > {{T "name"}}< / th >
< th class = "col-xs-1 hidden-xs" > {{T "date"}}< / th >
< th class = "col-xs-1 hidden-xs" > {{T "size"}}< / th >
< th class = "col-xs-1 hidden-xs" > {{T "links"}}< / th >
2017-05-05 03:53:38 +02:00
< / tr >
{{ range .ListTorrents}}
2017-05-05 10:12:29 +02:00
< tr class = "torrent-info
{{if eq .Status 2}}remake{{end}}
{{if eq .Status 3}}trusted{{end}}
{{if eq .Status 4}}aplus{{end}}">
2017-05-05 22:51:30 +02:00
<!-- forced width because the <td> gets bigger randomly otherwise -->
2017-05-09 23:36:58 +02:00
< td class = "hidden-xs" style = "width:80px" >
2017-05-06 23:46:53 +02:00
< a href = "{{$.URL.Parse (printf " / search ? c = %s_%s" . Category . Sub_Category ) } } " >
< img src = "{{$.URL.Parse (printf " / img / torrents / % s . png " . Sub_Category ) } } " >
2017-05-05 10:12:29 +02:00
< / a >
< / td >
< td class = "name" >
2017-05-05 10:53:32 +02:00
< a href = "{{genRoute " view_torrent " " id " . Id } } " >
2017-05-05 10:12:29 +02:00
{{.Name}}
< / a >
< / td >
2017-05-09 23:36:58 +02:00
< td class = "hidden-xs" class = "date date-short" > {{.Date}}< / td >
< td class = "hidden-xs" class = "filesize" > {{.Filesize}}< / td >
< td class = "hidden-xs" >
2017-05-05 17:48:37 +02:00
< a href = "{{.Magnet}}" title = "Magnet link" >
2017-05-05 10:12:29 +02:00
< span class = "glyphicon glyphicon-magnet" aria-hidden = "true" > < / span >
< / a >
2017-05-09 16:42:12 +02:00
{{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 >
2017-05-09 16:42:12 +02:00
{{end}}
2017-05-05 03:53:38 +02:00
< / td >
< / tr >
{{end}}
< / table >
2017-05-09 23:36:58 +02:00
< / div >
2017-05-06 14:15:17 +02:00
< nav class = "torrentNav" aria-label = "Page navigation" >
< ul class = "pagination" >
2017-05-10 00:13:34 +02:00
{{ genNav .Navigation .URL 5 }}
2017-05-06 14:15:17 +02:00
< / ul >
< / nav >
2017-05-05 14:52:41 +02:00
< / div >
2017-05-05 13:06:41 +02:00
{{end}}