diff options
Diffstat (limited to 'tmpl')
-rw-r--r-- | tmpl/footer.html | 3 | ||||
-rw-r--r-- | tmpl/header.html | 22 | ||||
-rw-r--r-- | tmpl/kanji-list.html | 4 | ||||
-rw-r--r-- | tmpl/kanji.html | 4 | ||||
-rw-r--r-- | tmpl/term-list.html | 4 | ||||
-rw-r--r-- | tmpl/term.html | 10 |
6 files changed, 9 insertions, 38 deletions
diff --git a/tmpl/footer.html b/tmpl/footer.html deleted file mode 100644 index 3840600f..00000000 --- a/tmpl/footer.html +++ /dev/null @@ -1,3 +0,0 @@ - <script src="{{root}}/js/frame.js"></script> - </body> -</html> diff --git a/tmpl/header.html b/tmpl/header.html deleted file mode 100644 index 476c3403..00000000 --- a/tmpl/header.html +++ /dev/null @@ -1,22 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="UTF-8"> - <title></title> - <style> - @font-face { - font-family: kanji-stroke-orders; - src: url('{{root}}/ttf/kanji-stroke-orders.ttf'); - } - @font-face { - font-family: vl-gothic-regular; - src: url('{{root}}/ttf/vl-gothic-regular.ttf'); - } - </style> - <link rel="stylesheet" href="{{root}}/css/frame.css"> - </head> - <body> - - <div class="spinner"> - <img src="{{root}}/img/spinner.gif"> - </div> diff --git a/tmpl/kanji-list.html b/tmpl/kanji-list.html index af38d485..0ee81463 100644 --- a/tmpl/kanji-list.html +++ b/tmpl/kanji-list.html @@ -1,9 +1,7 @@ -{{> header.html}} {{#if definitions}} {{#each definitions}} - {{> kanji.html addable=../addable root=../root options=../options sequence=../sequence}} + {{> kanji.html addable=../addable root=../root}} {{/each}} {{else}} <p>No results found</p> {{/if}} -{{> footer.html}} diff --git a/tmpl/kanji.html b/tmpl/kanji.html index 1dc19983..a3f37cbf 100644 --- a/tmpl/kanji.html +++ b/tmpl/kanji.html @@ -1,7 +1,7 @@ <div class="kanji-definition"> - <div class="action-bar" data-sequence="{{sequence}}"> + <div class="action-bar"> {{#if addable}} - <a href="#" title="Add Kanji" class="action-add-note pending disabled" data-mode="kanji" data-index="{{@index}}"><img src="{{root}}/img/add_kanji.png"></a> + <a href="#" title="Add Kanji" class="action-add-note pending disabled" data-mode="kanji" data-index="{{@index}}"><img src="img/add_kanji.png"></a> {{/if}} </div> diff --git a/tmpl/term-list.html b/tmpl/term-list.html index 2088ac71..b4c9d997 100644 --- a/tmpl/term-list.html +++ b/tmpl/term-list.html @@ -1,9 +1,7 @@ -{{> header.html}} {{#if definitions}} {{#each definitions}} - {{> term.html addable=../addable root=../root options=../options sequence=../sequence}} + {{> term.html addable=../addable playback=../playback}} {{/each}} {{else}} <p>No results found</p> {{/if}} -{{> footer.html}} diff --git a/tmpl/term.html b/tmpl/term.html index e931e5cf..b4d72d4b 100644 --- a/tmpl/term.html +++ b/tmpl/term.html @@ -1,11 +1,11 @@ <div class="term-definition"> - <div class="action-bar" data-sequence="{{sequence}}"> + <div class="action-bar"> {{#if addable}} - <a href="#" title="Add term as expression" class="action-add-note pending disabled" data-mode="term_kanji" data-index="{{@index}}"><img src="{{root}}/img/add_term_kanji.png"></a> - <a href="#" title="Add term as reading" class="action-add-note pending disabled" data-mode="term_kana" data-index="{{@index}}"><img src="{{root}}/img/add_term_kana.png"></a> + <a href="#" title="Add term as expression" class="action-add-note pending disabled" data-mode="term_kanji" data-index="{{@index}}"><img src="img/add_term_kanji.png"></a> + <a href="#" title="Add term as reading" class="action-add-note pending disabled" data-mode="term_kana" data-index="{{@index}}"><img src="img/add_term_kana.png"></a> {{/if}} - {{#if options.enableAudioPlayback}} - <a href="#" title="Play audio" class="action-play-audio" data-index="{{@index}}"><img src="{{root}}/img/play_audio.png"></a> + {{#if playback}} + <a href="#" title="Play audio" class="action-play-audio" data-index="{{@index}}"><img src="img/play_audio.png"></a> {{/if}} </div> |