| layout.pug - seedlinux - Torrent indexing tool opensource torrents with share r… | |
| git clone git://jay.scot/seedlinux | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| layout.pug (1120B) | |
| --- | |
| 1 doctype html | |
| 2 html | |
| 3 head | |
| 4 meta(charset='utf-8') | |
| 5 meta(name='viewport', content='width=device-width, initial-scale=1.0… | |
| 6 title= title | |
| 7 link(rel='stylesheet', href='https://cdnjs.cloudflare.com/ajax/libs/… | |
| 8 link(rel='stylesheet', href='/stylesheets/style.css') | |
| 9 body | |
| 10 .ui.secondary.menu | |
| 11 | |
| 12 img.ui.centered.medium.image(src='/images/logo.png', alt='Site Logo') | |
| 13 .sub.ui.centered.header= "Start Contributing to Open Source!" | |
| 14 | |
| 15 .ui.hidden.divider | |
| 16 .ui.container | |
| 17 .ui.small.three.statistics | |
| 18 .olive.statistic | |
| 19 .value= data.torrent_seeds.count | |
| 20 .label= "Total Torrents" | |
| 21 .red.statistic | |
| 22 .value= data.torrent_seeds.total_seeders | |
| 23 .label= "Seeders" | |
| 24 .violet.statistic | |
| 25 .value= data.torrent_seeds.total_leechers | |
| 26 .label= "Leechers" | |
| 27 | |
| 28 .ui.divider | |
| 29 .ui.container | |
| 30 block content | |
| 31 | |
| 32 script(src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery… | |
| 33 script(src="https://semantic-ui.com/javascript/library/tablesort.min.j… | |
| 34 |