1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<!-- This is just the tail of the index body since the contents are different for each index -->
</ul>
<!--
Available WWWOFFLE Variables (all with a '$' prefix).
number = Which version of the page it is, lasttime='', prevtime='0'-'3' (='$number').
total = The total number of pages for this host (='$total').
indexed = The number of hosts that are indexed (='$indexed').
notindexed = The number of hosts that are not indexed (='$notindexed').
sort = The sort mode to use (='$sort').
-->
$notindexed?=0{$anynotindexed=0}{$anynotindexed=$total}
$anynotindexed?=0{}{<i>$notindexed pages not indexed</i>}
<p align=center>
[$number?{<a href="/index/lasttime/?$sort">Last Time</a>}{Last Time}]
[$number?=1{Previous Time (1)}{<a href="/index/prevtime1/?$sort">Previous Time (1)</a>}]
[$number?=2{Previous Time (2)}{<a href="/index/prevtime2/?$sort">Previous Time (2)</a>}]
[$number?=3{Previous Time (3)}{<a href="/index/prevtime3/?$sort">Previous Time (3)</a>}]
</p>
<!-- This is just the tail of the index body since the contents are different for each index -->
|