2021-01-31 01:44:54 +00:00
<!DOCTYPE html> < html > < head > < title > Display Templates< / title > < / head > < body >
2019-12-27 23:58:11 +00:00
2020-11-25 00:06:29 +00:00
<!-- Term entry templates -->
< template id = "term-entry-template" data-remove-whitespace-text = "true" > < div class = "entry" data-type = "term" >
2021-01-18 20:23:49 +00:00
< div class = "entry-current-indicator" title = "Current entry" > < span class = "entry-current-indicator-inner" > < / span > < / div >
2021-02-27 21:54:15 +00:00
< div class = "entry-header" >
< div class = "actions" >
2021-04-30 21:57:53 +00:00
< button class = "action-button collapsible-action-button action-view-tags" hidden disabled > < span class = "icon" data-icon = "tag" > < / span > < / button >
2021-07-15 02:37:18 +00:00
< button class = "action-button action-view-note" hidden disabled data-icon = "view-note" title = "View added note" data-hotkey = '["viewNote","title","View added note ({0})"]' data-menu-position = "left below h-cover v-cover" > < div class = "action-button-badge icon" hidden > < / div > < / button >
2021-02-27 21:54:15 +00:00
< button class = "action-button action-add-note" hidden disabled data-icon = "add-term-kanji" data-mode = "term-kanji" title = "Add expression" data-hotkey = '["addNoteTermKanji","title","Add expression ({0})"]' > < / button >
< button class = "action-button action-add-note" hidden disabled data-icon = "add-term-kana" data-mode = "term-kana" title = "Add reading" data-hotkey = '["addNoteTermKana","title","Add reading ({0})"]' > < / button >
< button class = "action-button action-play-audio" data-icon = "play-audio" title = "Play audio" data-title-default = "Play audio" data-hotkey = '["playAudio",["title","data-title-default"],"Play audio ({0})"]' data-menu-position = "left below h-cover v-cover" > < div class = "action-button-badge icon" hidden > < / div > < / button >
< span class = "entry-current-indicator-icon" title = "Current entry" > < / span >
< / div >
2021-04-08 23:59:55 +00:00
< div class = "headword-list" > < / div >
< div class = "headword-list-details" >
< div class = "headword-list-tag-list tag-list" > < / div >
2021-02-27 21:54:15 +00:00
< div class = "inflection-list" > < / div >
2019-12-27 23:58:11 +00:00
< / div >
< / div >
2021-01-09 15:41:17 +00:00
< div class = "entry-body" >
< div class = "entry-body-section" data-section-type = "frequencies" >
2021-02-25 22:48:39 +00:00
< div class = "entry-body-section-content frequency-group-list" > < / div >
2021-01-09 15:41:17 +00:00
< / div >
2021-07-25 22:16:07 +00:00
< div class = "entry-body-section" data-section-type = "pronunciations" >
< ol class = "entry-body-section-content pronunciation-group-list" > < / ol >
2021-01-09 15:41:17 +00:00
< / div >
< div class = "entry-body-section" data-section-type = "definitions" >
2021-02-27 21:32:44 +00:00
< ol class = "entry-body-section-content definition-list" > < / ol >
2021-01-09 15:41:17 +00:00
< / div >
2020-03-01 19:04:54 +00:00
< / div >
2020-11-14 00:48:22 +00:00
< div class = "debug-info" > < a class = "debug-log-link" > Log debug info to console< / a > < / div >
2019-12-27 23:58:11 +00:00
< / div > < / template >
2021-04-08 23:59:55 +00:00
< template id = "headword-template" data-remove-whitespace-text = "true" > < div class = "headword" >
< div class = "headword-text-container" >
< span class = "headword-term-outer source-text" >
< span class = "headword-current-indicator" > < / span >
< span class = "headword-term" > < / span >
2021-02-27 19:04:52 +00:00
< / span >
2021-04-08 23:59:55 +00:00
< span class = "headword-reading-outer" >
< span class = "headword-reading" > < / span >
2020-12-19 20:42:44 +00:00
< / span >
2020-11-25 00:06:29 +00:00
< / div >
2021-04-08 23:59:55 +00:00
< div class = "headword-details" >
2021-01-24 02:13:01 +00:00
< button class = "action-button action-play-audio" data-icon = "play-audio" title = "Play audio" data-title-default = "Play audio" data-hotkey = '["playAudio",["title","data-title-default"],"Play audio ({0})"]' data-menu-position = "right below h-cover v-cover" > < div class = "action-button-badge icon" hidden > < / div > < / button >
2020-11-25 00:06:29 +00:00
< / div >
< / div > < / template >
2021-03-31 22:17:28 +00:00
< template id = "definition-item-template" data-remove-whitespace-text = "true" > < li class = "definition-item" >
< div class = "definition-item-inner" >
< button class = "definition-item-expansion-button" > < div class = "definition-item-expansion-button-icon icon" data-icon = "double-down-chevron" > < / div > < / button >
< div class = "definition-item-content" >
< div class = "definition-tag-list tag-list" > < / div >
< div class = "definition-disambiguation-list" > < / div >
2021-04-08 23:59:55 +00:00
< ul class = "gloss-list" > < / ul >
2021-03-31 22:17:28 +00:00
< / div >
< / div >
< / li > < / template >
2021-02-27 21:32:44 +00:00
< template id = "definition-disambiguation-template" > < span class = "definition-disambiguation" > < / span > < / template >
2021-04-08 23:59:55 +00:00
< template id = "gloss-item-template" > < li class = "gloss-item click-scannable" > < span class = "gloss-separator" > < / span > < span class = "gloss-content" > < / span > < / li > < / template >
2021-05-18 21:41:27 +00:00
< template id = "gloss-item-image-description-template" > < span class = "gloss-image-description" > < / span > < / template >
2021-02-27 21:32:44 +00:00
< template id = "inflection-template" > < span class = "inflection" > < / span > < span class = "inflection-separator" > < / span > < / template >
2019-12-27 23:58:11 +00:00
2021-01-09 15:41:17 +00:00
<!-- Frequency templates -->
2021-02-25 22:48:39 +00:00
< template id = "frequency-group-item-template" > < span class = "frequency-group-item" > < span class = "tag tag-has-body frequency-group-tag" data-category = "frequency" > < span class = "tag-label" > < span class = "tag-label-content" > < / span > < / span > < span class = "tag-body" > < span class = "tag-body-content frequency-list" > < / span > < / span > < / span > < / span > < / template >
< template id = "term-frequency-item-template" data-remove-whitespace-text = "true" > < span class = "frequency-item" > < span class = "tag tag-has-body frequency-tag" data-category = "frequency" data-frequency-type = "term" >
< span class = "tag-label" > < span class = "tag-label-content" > < / span > < / span >
< span class = "tag-body" > < span class = "tag-body-content frequency-body" >
2021-03-06 04:48:38 +00:00
< span class = "frequency-disambiguation" > < ruby >
2021-04-08 23:59:55 +00:00
< span class = "frequency-disambiguation-term" > < / span >
2021-02-25 22:48:39 +00:00
< span class = "frequency-disambiguation-separator" > < / span >
< rt class = "frequency-disambiguation-reading" > < / rt >
2021-03-06 04:48:38 +00:00
< / ruby > < / span >
2021-02-25 22:48:39 +00:00
< span class = "frequency-separator" > < / span >
< span class = "frequency-value" > < / span >
< / span > < / span >
< / span > < / span > < / template >
< template id = "kanji-frequency-item-template" data-remove-whitespace-text = "true" > < span class = "frequency-item" > < span class = "tag tag-has-body frequency-tag" data-category = "frequency" data-frequency-type = "kanji" >
< span class = "tag-label" > < span class = "tag-label-content" > < / span > < / span >
< span class = "tag-body" > < span class = "tag-body-content frequency-body" >
< span class = "frequency-value" > < / span >
< / span > < / span >
< / span > < / span > < / template >
2021-01-09 15:41:17 +00:00
2020-11-25 00:06:29 +00:00
<!-- Pitch accent templates -->
2021-07-25 22:16:07 +00:00
< template id = "pronunciation-group-template" > < li class = "pronunciation-group" > < span class = "pronunciation-group-tag-list tag-list" > < / span > < ul class = "pronunciation-list" > < / ul > < / li > < / template >
< template id = "pronunciation-disambiguation-template" > < span class = "pronunciation-disambiguation" > < / span > < / template >
< template id = "pronunciation-template" > < li class = "pronunciation" > < span class = "pronunciation-tag-list tag-list" > < / span > < span class = "pronunciation-disambiguation-list" > < / span > < span class = "pronunciation-representation-list" > < span class = "pronunciation-text-container" > < / span > < span class = "pronunciation-downstep-notation-container" > < / span > < span class = "pronunciation-graph-container" > < / span > < / span > < / li > < / template >
2020-03-01 19:15:28 +00:00
2020-11-25 00:06:29 +00:00
<!-- Kanji entry templates -->
2020-12-20 01:16:45 +00:00
< template id = "kanji-entry-template" data-remove-whitespace-text = "true" > < div class = "entry" data-type = "kanji" >
2021-01-18 20:23:49 +00:00
< div class = "entry-current-indicator" title = "Current entry" > < span class = "entry-current-indicator-inner" > < / span > < / div >
2021-02-27 21:54:15 +00:00
< div class = "entry-header" >
< div class = "actions" >
< button class = "action-button action-view-note" hidden disabled data-icon = "view-note" title = "View added note" data-hotkey = '["viewNote","title","View added note ({0})"]' > < / button >
< button class = "action-button action-add-note" hidden disabled data-icon = "add-term-kanji" data-mode = "kanji" title = "Add kanji" data-hotkey = '["addNoteKanji","title","Add kanji ({0})"]' > < / button >
< span class = "entry-current-indicator-icon" title = "Current entry" > < / span >
< / div >
< div class = "kanji-glyph-container" >
2021-04-08 23:59:55 +00:00
< span class = "headword-current-indicator" > < / span >
2021-02-27 21:54:15 +00:00
< div class = "kanji-glyph source-text" > < / div >
2019-12-27 23:58:11 +00:00
< / div >
2021-02-27 21:54:15 +00:00
< div class = "kanji-tag-list tag-list" > < / div >
2019-12-27 23:58:11 +00:00
< / div >
2021-01-09 15:41:17 +00:00
< div class = "entry-body" >
< div class = "entry-body-section" data-section-type = "frequencies" >
2021-02-25 22:48:39 +00:00
< div class = "entry-body-section-content frequency-group-list" > < / div >
2021-01-09 15:41:17 +00:00
< / div >
< / div >
2019-12-27 23:58:11 +00:00
< table class = "kanji-glyph-data" > < tbody >
< tr >
2021-04-08 23:59:55 +00:00
< th > Meaning< / th >
2019-12-27 23:58:11 +00:00
< th > Readings< / th >
< th > Statistics< / th >
< / tr >
< tr >
2021-04-08 23:59:55 +00:00
< td class = "kanji-gloss-container" > < ol class = "kanji-gloss-list" > < / ol > < / td >
2019-12-27 23:58:11 +00:00
< td class = "kanji-readings" > < dl class = "kanji-readings-chinese" > < / dl > < dl class = "kanji-readings-japanese" > < / dl > < / td >
< td class = "kanji-statistics" > < / td >
< / tr >
< tr > < th colspan = "3" > Classifications< / th > < / tr >
< tr > < td colspan = "3" class = "kanji-classifications" > < / td > < / tr >
< tr > < th colspan = "3" > Codepoints< / th > < / tr >
< tr > < td colspan = "3" class = "kanji-codepoints" > < / td > < / tr >
< tr > < th colspan = "3" > Dictionary Indices< / th > < / tr >
< tr > < td colspan = "3" class = "kanji-dictionary-indices" > < / td > < / tr >
< / tbody > < / table >
2020-11-14 18:42:50 +00:00
< div class = "debug-info" > < a class = "debug-log-link" > Log debug info to console< / a > < / div >
2019-12-27 23:58:11 +00:00
< / div > < / template >
< template id = "kanji-info-table-template" > < table class = "kanji-info-table" > < tbody class = "kanji-info-table-body" > < / tbody > < / table > < / template >
< template id = "kanji-info-table-item-template" > < tr class = "kanji-info-table-item" > < th class = "kanji-info-table-item-header" > < / th > < td class = "kanji-info-table-item-value" > < / td > < / tr > < / template >
2021-01-31 01:44:54 +00:00
< template id = "kanji-info-table-empty-template" > < tr class = "kanji-info-table-item kanji-info-table-item-empty" > < td class = "kanji-info-table-item-value-empty" > No data found< / td > < / tr > < / template >
2021-04-08 23:59:55 +00:00
< template id = "kanji-gloss-item-template" > < li class = "kanji-gloss-item" > < span class = "kanji-gloss-content" > < / span > < / li > < / template >
2019-12-27 23:58:11 +00:00
< template id = "kanji-reading-template" > < dd class = "kanji-reading" > < / dd > < / template >
2020-11-25 00:06:29 +00:00
<!-- Tag templates -->
2021-02-21 18:57:28 +00:00
< template id = "tag-template" > < span class = "tag" > < span class = "tag-label" > < span class = "tag-label-content" > < / span > < / span > < / span > < / template >
< template id = "tag-with-body-template" > < span class = "tag tag-has-body" > < span class = "tag-label" > < span class = "tag-label-content" > < / span > < / span > < span class = "tag-body" > < span class = "tag-body-content" > < / span > < / span > < / span > < / template >
2019-12-27 23:58:11 +00:00
2020-12-18 14:43:54 +00:00
<!-- Extra -->
2021-01-30 03:12:24 +00:00
< template id = "footer-notification-template" > < div class = "footer-notification scrollbar-inverse" >
2020-12-18 14:43:54 +00:00
< div class = "footer-notification-body" > < / div >
2021-01-30 03:12:24 +00:00
< div class = "footer-notification-close-button-container" >
< button class = "footer-notification-close-button" > < span class = "footer-notification-close-button-icon icon" data-icon = "cross" > < / span > < / button >
< / div >
2020-12-18 14:43:54 +00:00
< / div > < / template >
2021-01-09 21:02:03 +00:00
< template id = "footer-notification-tag-details-template" data-remove-whitespace-text = "true" >
< div class = "tag-details" > < / div >
< div class = "tag-details-disambiguation-list" > < / div >
2021-01-30 17:33:29 +00:00
< / template >
< template id = "footer-notification-anki-errors-content-template" data-remove-whitespace-text = "true" > < div class = "anki-note-error-info" >
< div class = "anki-note-error-header" > < / div >
< ul class = "anki-note-error-list" > < / ul >
< div class = "anki-note-error-log-container" > < a class = "anki-note-error-log-link" > Log debug info to console< / a > < / div >
2021-01-09 21:02:03 +00:00
< / div > < / template >
2020-12-30 04:38:44 +00:00
< template id = "profile-list-item-template" > < label class = "profile-list-item" >
< div class = "profile-list-item-selection" > < label class = "radio" > < input type = "radio" class = "profile-entry-is-default-radio" name = "profile-entry-default-radio" > < span class = "radio-body" > < span class = "radio-border" > < / span > < span class = "radio-dot" > < / span > < / span > < / label > < / div >
< div class = "profile-list-item-name" > < / div >
< / label > < / template >
2020-12-18 14:43:54 +00:00
2021-01-24 02:13:01 +00:00
<!-- Popup menu -->
2021-02-15 19:31:16 +00:00
< template id = "audio-button-popup-menu-template" > < div class = "popup-menu-container scan-disable audio-button-popup-menu" tabindex = "-1" role = "dialog" > < div class = "popup-menu popup-menu-auto-size" > < div class = "popup-menu-body" > < / div > < / div > < / div > < / template >
2021-02-16 02:34:10 +00:00
< template id = "audio-button-popup-menu-item-template" > < div class = "popup-menu-item-group" >
< button class = "popup-menu-item popup-menu-item-audio-button" data-menu-action = "playAudioFromSource" > < div class = "popup-menu-item-icon icon" data-icon = "none" > < / div > < span class = "popup-menu-item-label" > < / span > < / button >
< button class = "popup-menu-item popup-menu-item-set-primary-audio-button" data-menu-action = "setPrimaryAudio" title = "Use as audio for Anki card" > < div class = "popup-menu-item-icon icon" data-icon = "note-card" > < / div > < / button >
< / div > < / template >
2021-07-15 02:37:18 +00:00
< template id = "view-note-button-popup-menu-template" > < div class = "popup-menu-container scan-disable view-note-button-popup-menu" tabindex = "-1" role = "dialog" > < div class = "popup-menu popup-menu-auto-size" > < div class = "popup-menu-body" > < / div > < / div > < / div > < / template >
< template id = "view-note-button-popup-menu-item-template" > < button class = "popup-menu-item" > < span class = "popup-menu-item-label" > < / span > < / button > < / template >
2021-01-24 02:13:01 +00:00
2019-12-27 23:58:11 +00:00
< / body > < / html >