diff options
Diffstat (limited to 'util/tmpl/defs.html')
-rw-r--r-- | util/tmpl/defs.html | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/util/tmpl/defs.html b/util/tmpl/defs.html index 2fcc4ea9..ebbb7f82 100644 --- a/util/tmpl/defs.html +++ b/util/tmpl/defs.html @@ -1,6 +1,16 @@ -{{#each defs}} -<div class="yomichan-def"> - {{> term.html}} - {{#unless @last}}<br>{{/unless}} -</div> -{{/each}} +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title></title> + <link rel="stylesheet" href="{{root}}/css/popup.css"> + </head> + <body> + {{#each defs}} + <div class="definition"> + {{> term.html}} + {{#unless @last}}<br>{{/unless}} + </div> + {{/each}} + </body> +</html> |