summaryrefslogtreecommitdiff
path: root/util/tmpl/kanji.html
blob: 8aab5f18587e1b19551ef84954d0d170b7ad5ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<div class="kanji-definition">
    {{#with options}}
        {{#if enableAnkiConnect}}
        <div class="action-icons">
            {{#with ../addable}}
                {{#if kanji}}
                <a href="#" title="Add Kanji"><img src="{{../../root}}/add_kanji.png"></a>
                {{else}}
                <img src="{{../../root}}/add_kanji.png" class="inactive">
                {{/if}}
            {{/with}}
        </div>
        {{/if}}
    {{/with}}

    <div class="kanji-glyph">{{character}}</div>

    <div class="kanji-info">
        <dl>
            {{#if glossary}}
            <dt>Meanings</dt>
            <dd>
                {{#each glossary}}
                {{.}}{{#unless @last}}, {{/unless}}
                {{/each}}
            </dd>
            {{/if}}

            {{#if kunyomi}}
            <dt>Kunyomi</dt>
            <dd>
                {{#each kunyomi}}
                {{.}}{{#unless @last}}, {{/unless}}
                {{/each}}
            </dd>
            {{/if}}

            {{#if onyomi}}
            <dt>Onyomi</dt>
            <dd>
                {{#each onyomi}}
                {{.}}{{#unless @last}}, {{/unless}}
                {{/each}}
            </dd>
            {{/if}}
        </dl>
    </div>
</div>
</div>