* Remove useless / that created html error * Slightly bigger font for torrent name on view.html, padding fixes * Set kilo.js to look for span class name instead of name to remove HTML error * Change span name into class to remove html errors * remove name attribute * remove link to user profile is Anon or invalid userid * fix duplicate class attribute * remove useless center, remove useless attribute, remove useless yield errors & bad name attribute * turn name attribute into ID * JS changes to go along * fix travis * Delete OldNav.jet.html * Create oldNav.jet.html * turn <li> into <span> * Update classic.css * Update main.css * Update g.css * Update tomorrow.css * Update tomorrow.css * Update classic_colors.css
24 lignes
1,4 Kio
HTML
24 lignes
1,4 Kio
HTML
<div class="box refine website-nav{{if URL.String() != "/" && !kilo_strcmp(URL.String(), "/search", 7, 1) }} refine-not-search{{end}}">
|
|
<table id="sort-list-order">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
{{ if Search.Sort != 2 && Search.Sort != 0}}<a href="{{ genSearchWithOrdering(URL, "2") }}">Date</a>{{else}}<b>Date</b>{{end}} /
|
|
{{ if Search.Sort != 5}}<a href="{{ genSearchWithOrdering(URL, "5") }}">Seeders</a>{{else}}<b>Seeders</b>{{end}} /
|
|
{{ if Search.Sort != 6}}<a href="{{ genSearchWithOrdering(URL, "6") }}">Leechers</a>{{else}}<b>Leechers</b>{{end}} /
|
|
{{ if Search.Sort != 7}}<a href="{{ genSearchWithOrdering(URL, "7") }}">Downloads</a>{{else}}<b>Downloads</b>{{end}} /
|
|
{{ if Search.Sort != 4}}<a href="{{ genSearchWithOrdering(URL, "4") }}">Size</a>{{else}}<b>Size</b>{{end}} /
|
|
{{ if Search.Sort != 1}}<a href="{{ genSearchWithOrdering(URL, "1") }}">Name</a>{{else}}<b>Name</b>{{end}}
|
|
</td>
|
|
<td style="padding: 0 0.35em!important;"> | </td>
|
|
<td>
|
|
{{ if Search.Order}}<a href="{{ genSearchWithOrdering(URL, toString(Search.Sort)) }}">Ascending</a>{{else}}<b>Ascending</b>{{end}} /
|
|
{{ if !Search.Order}}<a href="{{ genSearchWithOrdering(URL, toString(Search.Sort)) }}">Descending</a>{{else}}<b>Descending</b>{{end}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="pagination">
|
|
{{ genNav(Navigation, URL, 33)|raw }}
|
|
</div>
|
|
</div>
|