diff options
Diffstat (limited to 'templates/boards.html.hbs')
| -rw-r--r-- | templates/boards.html.hbs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/boards.html.hbs b/templates/boards.html.hbs new file mode 100644 index 0000000..d86ba2b --- /dev/null +++ b/templates/boards.html.hbs @@ -0,0 +1,18 @@ +<title>chan - Boards</title> + +{{> header }} + +<h1>Boards</h1> + +<div class="col"></div> +<div class="col"> + <ul> + <p><ul>Unorganized Boards</ul></p> + {{ #each this }} + <li> + <a href="/board/{{ this.tag }}">{{ this.name }} <span class="badge badge-primary">New!</span> {{ #if this.nsfw }} <span class="badge badge-danger">NSFW!</span> {{ /if }}</p> + </li> + {{ /each }} + </ul> +</div> +<div class="col"></div> |