diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-07-28 12:56:02 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-07-28 12:57:18 -0400 |
| commit | aa0f62411452ab7d0f4ed4595937acb2ef8eac0c (patch) | |
| tree | ffc3e05c60937494c08a24415a66f0dddcd8fd52 /templates | |
| parent | 03860ebc2e0624ecd0cf094498ac3bfc2df18183 (diff) | |
[kona-web] Implement mass selection and tagging.
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.hbs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/index.hbs b/templates/index.hbs index 9f85a85..9c928be 100644 --- a/templates/index.hbs +++ b/templates/index.hbs @@ -32,13 +32,14 @@ <section id="tags"> <h2>Tags</h2> - <ul> + <ul id="top-tags"> {{#each tags}} <li><a href="/posts?query={{ name }}">{{ name }}</a> {{ count }}</li> {{/each}} </ul> </section> </aside> + <script src="/public/js/mass_editor.js"></script> <script src="/public/js/infinite_scroll.js"></script> </body> </html> |