diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-11-13 18:06:49 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-11-13 18:06:49 -0800 |
commit | d95d607c19c0888ca96a693de541e2961bd8f4d9 (patch) | |
tree | 4cd90c2fc49327da7a46c2b11efa7096fff986fd /tmpl/term-list.html | |
parent | 253da36755f24d656664ca524808e3292eef3697 (diff) |
Handle no definitions
Diffstat (limited to 'tmpl/term-list.html')
-rw-r--r-- | tmpl/term-list.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tmpl/term-list.html b/tmpl/term-list.html index d0b060c8..2088ac71 100644 --- a/tmpl/term-list.html +++ b/tmpl/term-list.html @@ -1,5 +1,9 @@ {{> header.html}} -{{#each definitions}} -{{> term.html addable=../addable root=../root options=../options sequence=../sequence}} -{{/each}} +{{#if definitions}} + {{#each definitions}} + {{> term.html addable=../addable root=../root options=../options sequence=../sequence}} + {{/each}} +{{else}} + <p>No results found</p> +{{/if}} {{> footer.html}} |