diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-12 23:03:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 23:03:15 -0500 |
commit | 4053d9b2fac82108f701788c511aedaf988de4c5 (patch) | |
tree | 0076ba6c17234651788b1e8421b5d71a9e33cb8d /ext/template-renderer.html | |
parent | 4f13de283572b2c57e7462f1030c12fe8335882e (diff) |
Move html files (#1375)
* Move background.html to /
* Move context.html to /
* Move info.html to /
* Move legal.html to /
* Move permissions.html to /
* Move pitch-accents-preview.html to /
* Move popup-preview.html to /
* Move search.html to /
* Move settings.html to /
* Move settings2.html to /
* Move template-renderer.html to /
* Move welcome.html to /
* Move float.html to /
* Move display-templates.html to /
Diffstat (limited to 'ext/template-renderer.html')
-rw-r--r-- | ext/template-renderer.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ext/template-renderer.html b/ext/template-renderer.html new file mode 100644 index 00000000..68cba889 --- /dev/null +++ b/ext/template-renderer.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width,initial-scale=1"> + <title>Yomichan Handlebars Sandbox</title> + <link rel="icon" type="image/png" href="/images/icon16.png" sizes="16x16"> + <link rel="icon" type="image/png" href="/images/icon19.png" sizes="19x19"> + <link rel="icon" type="image/png" href="/images/icon32.png" sizes="32x32"> + <link rel="icon" type="image/png" href="/images/icon38.png" sizes="38x38"> + <link rel="icon" type="image/png" href="/images/icon48.png" sizes="48x48"> + <link rel="icon" type="image/png" href="/images/icon64.png" sizes="64x64"> + <link rel="icon" type="image/png" href="/images/icon128.png" sizes="128x128"> +</head> +<body> + <script src="/mixed/lib/handlebars.min.js"></script> + <script src="/mixed/js/dictionary-data-util.js"></script> + <script src="/mixed/js/japanese.js"></script> + <script src="/bg/js/anki-note-data.js"></script> + <script src="/bg/js/template-renderer.js"></script> + <script src="/bg/js/template-renderer-frame-api.js"></script> + <script src="/bg/js/template-renderer-frame-main.js"></script> +</body> +</html> |