yomichan/tmpl/kanji.html

74 lines
2.3 KiB
HTML
Raw Normal View History

2017-01-09 19:05:21 -08:00
{{#*inline "kanji"}}
2017-03-25 18:08:42 -07:00
<div class="entry" data-type="kanji">
2017-03-03 20:25:14 -08:00
<div class="actions">
2017-01-08 22:44:13 -08:00
{{#if addable}}
2017-07-01 18:27:49 -07:00
<a href="#" class="action-view-note pending disabled"><img src="/mixed/img/view-note.png" title="View added note (Alt + V)" alt></a>
2017-03-25 18:08:42 -07:00
<a href="#" class="action-add-note pending disabled" data-mode="kanji"><img src="/mixed/img/add-kanji.png" title="Add Kanji (Alt + K)" alt></a>
2017-01-08 22:44:13 -08:00
{{/if}}
2017-03-17 21:03:52 -07:00
{{#if source}}
2017-03-25 18:08:42 -07:00
<a href="#" class="source-term"><img src="/mixed/img/source-term.png" title="Source term (Alt + B)" alt></a>
2017-03-17 21:03:52 -07:00
{{/if}}
2017-07-01 18:27:49 -07:00
<img src="/mixed/img/entry-current.png" class="current" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)" alt>
2017-01-08 22:44:13 -08:00
</div>
2017-03-03 20:25:14 -08:00
<div class="glyph">{{character}}</div>
2017-01-08 22:44:13 -08:00
2017-03-03 20:25:14 -08:00
<div>
2017-01-08 22:44:13 -08:00
{{#each tags}}
2017-03-18 09:48:53 -07:00
<span class="label label-default tag-{{category}}" title="{{notes}}">{{name}}</span>
2017-01-08 22:44:13 -08:00
{{/each}}
</div>
2017-09-15 14:03:05 -07:00
<table class="table table-condensed glyph-data">
2017-09-15 13:18:21 -07:00
<tr>
<th>Readings</th>
<th>Glossary</th>
<th>Statistics</th>
</tr>
<tr>
<td class="reading">
<dl>
2017-09-15 14:06:10 -07:00
{{#if kunyomi}}
<dt>Kun-Yomi</dt>
2017-09-15 13:18:21 -07:00
{{#each kunyomi}}
<dd>{{.}}</dd>
{{/each}}
2017-09-15 14:06:10 -07:00
{{/if}}
{{#if onyomi}}
<dt>On-Yomi</dt>
2017-09-15 13:18:21 -07:00
{{#each onyomi}}
<dd>{{.}}</dd>
{{/each}}
2017-09-15 14:06:10 -07:00
{{/if}}
2017-09-15 13:18:21 -07:00
</dl>
</td>
<td class="glossary">
{{#if glossary.[1]}}
<ol>
{{#each glossary}}
<li><span class="glossary-item">{{.}}</span></li>
{{/each}}
</ol>
{{else}}
<span class="glossary-item">{{glossary.[0]}}</span>
{{/if}}
</td>
<td></td>
</tr>
</table>
2017-05-23 21:27:20 -07:00
{{#if debug}}
<pre>{{#dumpObject}}{{{.}}}{{/dumpObject}}</pre>
{{/if}}
2017-03-17 20:45:47 -07:00
</div>
2017-01-08 22:44:13 -08:00
{{/inline}}
2016-11-13 18:06:49 -08:00
{{#if definitions}}
2017-03-18 09:48:53 -07:00
{{#each definitions}}
{{#unless @first}}<hr>{{/unless}}
2017-05-23 21:27:20 -07:00
{{> kanji debug=../debug addable=../addable source=../source root=../root}}
2017-03-18 09:48:53 -07:00
{{/each}}
2016-11-13 18:06:49 -08:00
{{else}}
2017-06-25 21:14:39 -07:00
<p class="note">No results found.</p>
2016-11-13 18:06:49 -08:00
{{/if}}