mirror of
https://github.com/reality/dbot.git
synced 2024-11-23 20:39:25 +01:00
27 lines
792 B
Plaintext
27 lines
792 B
Plaintext
extends ../layout
|
|
|
|
block content
|
|
div#backlink
|
|
a(href='/') « Home
|
|
h3
|
|
a(href='/notify/stream') My Notification Stream
|
|
|
|
|
a(href='/notify/missing') My Missed Notifications
|
|
h3 Browse by Channel on #{server}
|
|
ul#quotelist
|
|
-each count, name in channels
|
|
a(href='/notify/'+encodeURIComponent(name))
|
|
li.quotes #{name} (#{count})
|
|
|
|
h3 Browse by User on #{server}
|
|
ul#quotelist
|
|
-each nUser in users
|
|
a(href='/notify/'+encodeURIComponent(nUser.name))
|
|
li.quotes #{nUser.name} (#{nUser.count})
|
|
|
|
h3 Browse by Tag on #{server}
|
|
ul#quotelist
|
|
-each count, tag in tags
|
|
a(href='/notify/'+encodeURIComponent(tag)+'?t=tag')
|
|
li.quotes #{tag} (#{count})
|