yomichan/tmpl/kanji.html

101 lines
2.9 KiB
HTML
Raw Normal View History

2017-09-21 20:52:18 -07:00
{{#*inline "table"}}
{{#if data}}
<table class="info-output">
{{#each data}}
<tr>
<th>{{#if notes}}{{notes}}{{else}}{{name}}{{/if}}</th>
<td>{{value}}</td>
</tr>
{{/each}}
</table>
{{else}}
No data found
{{/if}}
{{/inline}}
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}}
2019-10-06 21:05:27 -04:00
<a href="#" class="action-view-note pending disabled"><img src="/mixed/img/view-note.svg" title="View added note (Alt + V)" alt></a>
<a href="#" class="action-add-note pending disabled" data-mode="kanji"><img src="/mixed/img/add-term-kanji.svg" 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}}
2019-10-06 21:05:27 -04:00
<a href="#" class="source-term"><img src="/mixed/img/source-term.svg" title="Source term (Alt + B)" alt></a>
2017-03-17 21:03:52 -07:00
{{/if}}
2019-10-06 21:05:27 -04:00
<img src="/mixed/img/entry-current.svg" 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-09-17 19:16:08 -07:00
{{#if frequencies}}
<div>
{{#each frequencies}}
<span class="label label-default tag-frequency">{{dictionary}}:{{frequency}}</span>
{{/each}}
</div>
{{/if}}
{{#if tags}}
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-17 19:16:08 -07:00
{{/if}}
2017-01-08 22:44:13 -08:00
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>Glossary</th>
2017-09-21 20:59:43 -07:00
<th>Readings</th>
2017-09-21 23:10:43 -07:00
<th>Statistics</th>
2017-09-15 13:18:21 -07:00
</tr>
<tr>
<td class="glossary">
{{#if glossary.[1]}}
2017-09-21 20:52:18 -07:00
<ol>{{#each glossary}}<li><span class="glossary-item">{{.}}</span></li>{{/each}}</ol>
2017-09-15 13:18:21 -07:00
{{else}}
<span class="glossary-item">{{glossary.[0]}}</span>
{{/if}}
</td>
2017-09-21 20:52:18 -07:00
<td class="reading">
2017-09-21 23:10:43 -07:00
{{#if onyomi}}<dl>{{#each onyomi}}<dd>{{.}}</dd>{{/each}}</dl>{{/if}}
{{#if kunyomi}}<dl>{{#each kunyomi}}<dd>{{.}}</dd>{{/each}}</dl>{{/if}}
2017-09-21 20:52:18 -07:00
</td>
2017-09-21 20:59:43 -07:00
<td>{{> table data=stats.misc}}</td>
2017-09-21 20:52:18 -07:00
</tr>
<tr>
2017-09-21 23:10:43 -07:00
<th colspan="3">Classifications</th>
2017-09-21 20:52:18 -07:00
</tr>
<tr>
2017-09-21 23:21:34 -07:00
<td colspan="3">{{> table data=stats.class}}</td>
2017-09-21 23:10:43 -07:00
</tr>
<tr>
<th colspan="3">Codepoints</th>
</tr>
<tr>
<td colspan="3">{{> table data=stats.code}}</td>
2017-09-17 12:56:34 -07:00
</tr>
<tr>
<th colspan="3">Dictionary Indices</th>
</tr>
<tr>
2017-09-21 20:52:18 -07:00
<td colspan="3">{{> table data=stats.index}}</td>
2017-09-15 13:18:21 -07:00
</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-09-17 12:56:34 -07:00
<p class="note">No results found</p>
2016-11-13 18:06:49 -08:00
{{/if}}