6 table.table.table-bordered.table-striped
14 td: a(href=`/${channelPath}/${chan.name}`) #{chan.pagetitle} (#{chan.name})
19 input#channelname.form-control(type="text", placeholder="Channel Name")
20 p.text-muted New channels can be registered from the <a href="/account/channels">My Channels</a> page.
23 script(type="text/javascript").
24 $("#channelname").keydown(function (ev) {
25 if (ev.keyCode === 13) {
26 location.href = "/#{channelPath}/" + $("#channelname").val();