|
@@ -1,15 +1,16 @@
|
|
|
template(name="boardList")
|
|
|
- if boards.count
|
|
|
- ul.board-list.clearfix
|
|
|
- each boards
|
|
|
- li(class="{{#if isStarred}}starred{{/if}}" class=colorClass)
|
|
|
- a.js-open-board(href="{{pathFor 'board' id=_id slug=slug}}")
|
|
|
- span.details
|
|
|
- span.board-list-item-name= title
|
|
|
- i.fa.js-star-board(
|
|
|
- class="fa-star{{#if isStarred}} is-star-active{{else}}-o{{/if}}"
|
|
|
- title="{{_ 'star-board-title'}}")
|
|
|
- else
|
|
|
- ul.board-list.clearfix
|
|
|
- li.js-add-board
|
|
|
- a.label {{_ 'add-board'}}
|
|
|
+ .wrapper
|
|
|
+ if boards.count
|
|
|
+ ul.board-list.clearfix
|
|
|
+ each boards
|
|
|
+ li(class="{{#if isStarred}}starred{{/if}}" class=colorClass)
|
|
|
+ a.js-open-board(href="{{pathFor 'board' id=_id slug=slug}}")
|
|
|
+ span.details
|
|
|
+ span.board-list-item-name= title
|
|
|
+ i.fa.js-star-board(
|
|
|
+ class="fa-star{{#if isStarred}} is-star-active{{else}}-o{{/if}}"
|
|
|
+ title="{{_ 'star-board-title'}}")
|
|
|
+ else
|
|
|
+ ul.board-list.clearfix
|
|
|
+ li.js-add-board
|
|
|
+ a.label {{_ 'add-board'}}
|