extends layout.pug block content .col-lg-9.col-md-9 h3 Public Channels table.table.table-bordered.table-striped thead th Channel th # Connected th Now Playing tbody each chan in channels tr td: a(href=`/${channelPath}/${chan.name}`) #{chan.pagetitle} (#{chan.name}) td= chan.usercount td= chan.mediatitle .col-lg-3.col-md-3 append footer script(type="text/javascript"). $("#channelname").keydown(function (ev) { if (ev.keyCode === 13) { location.href = "/#{channelPath}/" + $("#channelname").val(); } });