generator-white-label 3.0.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +140 -81
- package/app/404.hbs +20 -0
- package/app/README.md +19 -0
- package/app/assets/data/view/toolkit/colors.json +17 -0
- package/app/assets/data/view/toolkit/components.json +39 -0
- package/app/assets/data/view/toolkit/elements.json +119 -0
- package/app/assets/data/view/toolkit/grids.json +17 -0
- package/app/assets/data/view/toolkit/icons.json +17 -0
- package/app/assets/data/view/toolkit/index.json +17 -0
- package/app/assets/data/view/toolkit/type.json +17 -0
- package/app/assets/font/opensans/stylesheet.css +20 -60
- package/app/assets/image/demo/fallback.avif +0 -0
- package/app/assets/image/demo/fallback.jpg +0 -0
- package/app/assets/image/demo/fallback.webp +0 -0
- package/app/assets/image/demo/large.avif +0 -0
- package/app/assets/image/demo/large.webp +0 -0
- package/app/assets/image/demo/small.avif +0 -0
- package/app/assets/image/demo/small.webp +0 -0
- package/app/assets/markup/element/a.hbs +29 -0
- package/app/assets/markup/element/button.hbs +30 -0
- package/app/assets/markup/element/div.hbs +11 -0
- package/app/assets/markup/element/head.hbs +78 -0
- package/app/assets/markup/element/iframe.hbs +20 -0
- package/app/assets/markup/element/img.hbs +30 -0
- package/app/assets/markup/element/input.hbs +43 -0
- package/app/assets/markup/element/label.hbs +14 -0
- package/app/assets/markup/element/legend.hbs +5 -0
- package/app/assets/markup/element/meta.hbs +11 -0
- package/app/assets/markup/element/nav.hbs +13 -0
- package/app/assets/markup/element/p.hbs +8 -0
- package/app/assets/markup/element/picture.hbs +58 -0
- package/app/assets/markup/element/script.hbs +3 -0
- package/app/assets/markup/element/select.hbs +35 -0
- package/app/assets/markup/element/span.hbs +8 -0
- package/app/assets/markup/element/svg.hbs +11 -0
- package/app/assets/markup/element/table.hbs +50 -0
- package/app/assets/markup/element/textarea.hbs +24 -0
- package/app/assets/markup/element/ul.hbs +13 -0
- package/app/assets/markup/modal/modal-example-1.handlebars +8 -0
- package/app/assets/markup/toolkit/accessibility-skip-to-element-1.handlebars +1 -0
- package/app/assets/markup/toolkit/accessibility-speaker-1.handlebars +1 -0
- package/app/assets/markup/toolkit/anchor-1.handlebars +1 -0
- package/app/assets/markup/toolkit/button-1.handlebars +1 -0
- package/app/assets/markup/toolkit/footer-1.handlebars +3 -0
- package/app/assets/markup/toolkit/header-1.handlebars +1 -0
- package/app/assets/markup/toolkit/heading-1.handlebars +1 -0
- package/app/assets/markup/toolkit/heading-2.handlebars +1 -0
- package/app/assets/markup/toolkit/heading-3.handlebars +1 -0
- package/app/assets/markup/toolkit/heading-4.handlebars +1 -0
- package/app/assets/markup/toolkit/image-1.handlebars +1 -0
- package/app/assets/markup/toolkit/input-checkbox-1.handlebars +1 -0
- package/app/assets/markup/toolkit/input-error-1.handlebars +8 -0
- package/app/assets/markup/toolkit/input-radio-1.handlebars +1 -0
- package/app/assets/markup/toolkit/input-text-1.handlebars +1 -0
- package/app/assets/markup/toolkit/label-1.handlebars +1 -0
- package/app/assets/markup/toolkit/legend-1.handlebars +1 -0
- package/app/assets/markup/toolkit/list-1.handlebars +1 -0
- package/app/assets/markup/toolkit/modal-1.handlebars +4 -0
- package/app/assets/markup/toolkit/nav-1.handlebars +1 -0
- package/app/assets/markup/toolkit/picture-1.handlebars +1 -0
- package/app/assets/markup/toolkit/select-1.handlebars +1 -0
- package/app/assets/markup/toolkit/table-1.handlebars +1 -0
- package/app/assets/markup/toolkit/text-1.handlebars +1 -0
- package/app/assets/markup/toolkit/textarea-1.handlebars +1 -0
- package/app/assets/markup/toolkit/youtube-player-1.handlebars +1 -0
- package/app/assets/script/api/facebook.ts +41 -0
- package/app/assets/script/api/youtube.ts +22 -0
- package/app/assets/script/index.ts +2 -0
- package/app/assets/script/mediator/global.ts +4 -0
- package/app/assets/script/model/singletons/countries.ts +5 -0
- package/app/assets/script/model/singletons/global.ts +5 -0
- package/app/assets/script/model/singletons/states.ts +5 -0
- package/app/assets/script/model/user.ts +4 -0
- package/app/assets/script/toolkit.ts +11 -0
- package/app/assets/script/types.d.ts +16 -0
- package/app/assets/script/utility/ajax.ts +15 -0
- package/app/assets/script/utility/form.ts +119 -0
- package/app/assets/script/utility/{regex.js → regex.ts} +15 -6
- package/app/assets/script/utility/share.ts +77 -0
- package/app/assets/script/utility/string.ts +148 -0
- package/app/assets/script/view/default.tsx +14 -0
- package/app/assets/script/view/toolkit/youtube-player-1.ts +31 -0
- package/app/assets/style/base/_toolkit.scss +31 -15
- package/app/assets/style/base/components/_modal-1.scss +80 -0
- package/app/assets/style/base/components/_sticky-1.scss +19 -0
- package/app/assets/style/base/components/_tabpanel-1.scss +115 -0
- package/app/assets/style/base/components/_tabpanel-2.scss +64 -0
- package/app/assets/style/base/components/_tabpanel-base-1.scss +13 -0
- package/app/assets/style/base/components/_youtube-player-1.scss +16 -0
- package/app/assets/style/base/elements/_anchors.scss +12 -0
- package/app/assets/style/base/elements/_buttons.scss +15 -0
- package/app/assets/style/base/elements/_fieldsets.scss +9 -0
- package/app/assets/style/base/elements/_images.scss +6 -2
- package/app/assets/style/base/elements/_inputs.scss +70 -0
- package/app/assets/style/base/elements/_labels.scss +8 -0
- package/app/assets/style/base/elements/_landmarks.scss +3 -0
- package/app/assets/style/base/elements/_legends.scss +11 -0
- package/app/assets/style/base/elements/_lists.scss +8 -1
- package/app/assets/style/base/elements/_tables.scss +32 -1
- package/app/assets/style/base/layouts/_staggered-1.scss +29 -0
- package/app/assets/style/base/type/_fonts.scss +39 -1
- package/app/assets/style/base/type/_headings.scss +29 -0
- package/app/assets/style/base/type/_text.scss +2 -0
- package/app/assets/style/base/utilities/_accessibility.scss +5 -2
- package/app/assets/style/base/utilities/_functions.scss +62 -9
- package/app/assets/style/global.scss +108 -10
- package/app/assets/style/print.scss +2 -3
- package/app/assets/style/toolkit.scss +387 -0
- package/app/index.hbs +21 -0
- package/app/package.json +1 -0
- package/app/toolkit/colors.hbs +102 -0
- package/app/toolkit/components.hbs +261 -0
- package/app/toolkit/elements.hbs +497 -0
- package/app/toolkit/grids.hbs +413 -0
- package/app/toolkit/icons.hbs +87 -0
- package/app/toolkit/index.hbs +144 -0
- package/app/toolkit/type.hbs +120 -0
- package/dist/app/assets/data/coutries.json +992 -0
- package/dist/app/assets/data/states.json +204 -0
- package/dist/app/assets/script/api/facebook.d.ts +8 -0
- package/dist/app/assets/script/api/facebook.js +42 -0
- package/dist/app/assets/script/api/facebook.js.map +1 -0
- package/dist/app/assets/script/api/youtube.d.ts +8 -0
- package/dist/app/assets/script/api/youtube.js +22 -0
- package/dist/app/assets/script/api/youtube.js.map +1 -0
- package/dist/app/assets/script/index.d.ts +2 -0
- package/dist/app/assets/script/index.js +2 -0
- package/dist/app/assets/script/index.js.map +1 -0
- package/dist/app/assets/script/mediator/global.d.ts +4 -0
- package/dist/app/assets/script/mediator/global.js +4 -0
- package/dist/app/assets/script/mediator/global.js.map +1 -0
- package/dist/app/assets/script/model/singletons/countries.d.ts +20 -0
- package/dist/app/assets/script/model/singletons/countries.js +5 -0
- package/dist/app/assets/script/model/singletons/countries.js.map +1 -0
- package/dist/app/assets/script/model/singletons/global.d.ts +20 -0
- package/dist/app/assets/script/model/singletons/global.js +5 -0
- package/dist/app/assets/script/model/singletons/global.js.map +1 -0
- package/dist/app/assets/script/model/singletons/states.d.ts +20 -0
- package/dist/app/assets/script/model/singletons/states.js +5 -0
- package/dist/app/assets/script/model/singletons/states.js.map +1 -0
- package/dist/app/assets/script/model/user.d.ts +4 -0
- package/dist/app/assets/script/model/user.js +6 -0
- package/dist/app/assets/script/model/user.js.map +1 -0
- package/dist/app/assets/script/toolkit.d.ts +1 -0
- package/dist/app/assets/script/toolkit.js +7 -0
- package/dist/app/assets/script/toolkit.js.map +1 -0
- package/dist/app/assets/script/utility/ajax.d.ts +8 -0
- package/dist/app/assets/script/utility/ajax.js +17 -0
- package/dist/app/assets/script/utility/ajax.js.map +1 -0
- package/dist/app/assets/script/utility/form.d.ts +64 -0
- package/dist/app/assets/script/utility/form.js +111 -0
- package/dist/app/assets/script/utility/form.js.map +1 -0
- package/dist/app/assets/script/utility/regex.d.ts +14 -0
- package/dist/app/assets/script/utility/regex.js +27 -0
- package/dist/app/assets/script/utility/regex.js.map +1 -0
- package/dist/app/assets/script/utility/share.d.ts +68 -0
- package/dist/app/assets/script/utility/share.js +81 -0
- package/dist/app/assets/script/utility/share.js.map +1 -0
- package/dist/app/assets/script/utility/string.d.ts +64 -0
- package/dist/app/assets/script/utility/string.js +135 -0
- package/dist/app/assets/script/utility/string.js.map +1 -0
- package/dist/app/assets/script/view/default.d.ts +11 -0
- package/dist/app/assets/script/view/default.js +15 -0
- package/dist/app/assets/script/view/default.js.map +1 -0
- package/dist/app/assets/script/view/toolkit/youtube-player-1.d.ts +23 -0
- package/dist/app/assets/script/view/toolkit/youtube-player-1.js +32 -0
- package/dist/app/assets/script/view/toolkit/youtube-player-1.js.map +1 -0
- package/dist/generators/app/index.d.ts +18 -0
- package/dist/generators/app/index.js +59 -0
- package/dist/generators/app/index.js.map +1 -0
- package/dist/scripts/build.d.ts +22 -0
- package/dist/scripts/build.js +158 -0
- package/dist/scripts/build.js.map +1 -0
- package/generators/app/index.js +2 -43
- package/generators/app/index.ts +61 -0
- package/package.json +78 -109
- package/scripts/build.ts +175 -0
- package/tsconfig.site.json +26 -0
- package/.babelrc +0 -7
- package/.editorconfig +0 -13
- package/.eslintrc +0 -64
- package/.htmllintrc +0 -6
- package/.npmignore +0 -12
- package/.sass-lint.yml +0 -16
- package/.travis.yml +0 -18
- package/app/assets/font/opensans/generator_config.txt +0 -5
- package/app/assets/font/opensans/opensans-bold-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-bold-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-bold-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-bold-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-bolditalic-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-bolditalic-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-bolditalic-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-bolditalic-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-extrabold-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-extrabold-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-extrabold-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-extrabold-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-extrabolditalic-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-extrabolditalic-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-extrabolditalic-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-extrabolditalic-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-italic-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-italic-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-italic-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-italic-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-light-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-light-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-light-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-light-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-lightitalic-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-lightitalic-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-lightitalic-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-lightitalic-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-regular-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-regular-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-regular-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-regular-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-semibold-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-semibold-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-semibold-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-semibold-webfont.woff +0 -0
- package/app/assets/font/opensans/opensans-semibolditalic-webfont.eot +0 -0
- package/app/assets/font/opensans/opensans-semibolditalic-webfont.svg +0 -1824
- package/app/assets/font/opensans/opensans-semibolditalic-webfont.ttf +0 -0
- package/app/assets/font/opensans/opensans-semibolditalic-webfont.woff +0 -0
- package/app/assets/font/opensans/specimen_files/grid_12-825-55-15.css +0 -129
- package/app/assets/font/opensans/specimen_files/specimen_stylesheet.css +0 -396
- package/app/assets/script/index.js +0 -11
- package/app/assets/script/mediator/global.js +0 -5
- package/app/assets/script/model/singletons/countries.js +0 -6
- package/app/assets/script/model/singletons/global.js +0 -6
- package/app/assets/script/model/singletons/states.js +0 -6
- package/app/assets/script/model/user.js +0 -5
- package/app/assets/script/utility/form.js +0 -86
- package/app/assets/script/utility/share.js +0 -52
- package/app/assets/script/utility/string.js +0 -70
- package/app/assets/script/view/default.js +0 -11
- package/app/assets/style/base/vendor/_foundation.scss +0 -2
- package/app/assets/test/spec/shareSpec.js +0 -137
- package/app/index.html +0 -43
- package/app/report/istanbul/base.css +0 -213
- package/app/report/istanbul/index.html +0 -93
- package/app/report/istanbul/prettify.css +0 -1
- package/app/report/istanbul/prettify.js +0 -1
- package/app/report/istanbul/sort-arrow-sprite.png +0 -0
- package/app/report/istanbul/sorter.js +0 -158
- package/app/report/istanbul/utility/form.js.html +0 -524
- package/app/report/istanbul/utility/index.html +0 -132
- package/app/report/istanbul/utility/regex.js.html +0 -203
- package/app/report/istanbul/utility/share.js.html +0 -401
- package/app/report/istanbul/utility/string.js.html +0 -446
- package/app/report/jsdoc/DragEvent.html +0 -303
- package/app/report/jsdoc/Event.html +0 -773
- package/app/report/jsdoc/EventPropagators.html +0 -336
- package/app/report/jsdoc/FocusEvent.html +0 -303
- package/app/report/jsdoc/ForEachBookKeeping.html +0 -425
- package/app/report/jsdoc/KeyboardEvent.html +0 -303
- package/app/report/jsdoc/MapBookKeeping.html +0 -457
- package/app/report/jsdoc/MouseEvent.html +0 -303
- package/app/report/jsdoc/ReactClass.html +0 -330
- package/app/report/jsdoc/ReactClassInterface.html +0 -311
- package/app/report/jsdoc/ReactDOMComponent.html +0 -349
- package/app/report/jsdoc/ReactDOMTextComponent.html +0 -348
- package/app/report/jsdoc/ReactMountReady.html +0 -340
- package/app/report/jsdoc/ReactMultiChild.html +0 -330
- package/app/report/jsdoc/ReactOwner.html +0 -351
- package/app/report/jsdoc/ReactReconcileTransaction.html +0 -342
- package/app/report/jsdoc/ReactServerRenderingTransaction.html +0 -376
- package/app/report/jsdoc/ReactServerUpdateQueue.html +0 -382
- package/app/report/jsdoc/TouchEvent.html +0 -303
- package/app/report/jsdoc/Transaction.html +0 -459
- package/app/report/jsdoc/UIEvent.html +0 -303
- package/app/report/jsdoc/WheelEvent.html +0 -303
- package/app/report/jsdoc/classes.list.html +0 -339
- package/app/report/jsdoc/fonts/glyphicons-halflings-regular.eot +0 -0
- package/app/report/jsdoc/fonts/glyphicons-halflings-regular.svg +0 -288
- package/app/report/jsdoc/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/app/report/jsdoc/fonts/glyphicons-halflings-regular.woff +0 -0
- package/app/report/jsdoc/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/app/report/jsdoc/global.html +0 -1653
- package/app/report/jsdoc/img/glyphicons-halflings-white.png +0 -0
- package/app/report/jsdoc/img/glyphicons-halflings.png +0 -0
- package/app/report/jsdoc/index.html +0 -236
- package/app/report/jsdoc/interfaces.list.html +0 -339
- package/app/report/jsdoc/quicksearch.html +0 -31
- package/app/report/jsdoc/scripts/docstrap.lib.js +0 -11
- package/app/report/jsdoc/scripts/fulltext-search-ui.js +0 -89
- package/app/report/jsdoc/scripts/fulltext-search.js +0 -36
- package/app/report/jsdoc/scripts/lunr.min.js +0 -6
- package/app/report/jsdoc/scripts/prettify/Apache-License-2.0.txt +0 -202
- package/app/report/jsdoc/scripts/prettify/jquery.min.js +0 -6
- package/app/report/jsdoc/scripts/prettify/lang-css.js +0 -21
- package/app/report/jsdoc/scripts/prettify/prettify.js +0 -496
- package/app/report/jsdoc/scripts/sunlight.js +0 -1157
- package/app/report/jsdoc/scripts/toc.js +0 -203
- package/app/report/jsdoc/styles/darkstrap.css +0 -960
- package/app/report/jsdoc/styles/prettify-tomorrow.css +0 -132
- package/app/report/jsdoc/styles/site.cerulean.css +0 -7008
- package/app/report/jsdoc/styles/site.cosmo.css +0 -7061
- package/app/report/jsdoc/styles/site.cyborg.css +0 -7048
- package/app/report/jsdoc/styles/site.darkly.css +0 -7171
- package/app/report/jsdoc/styles/site.darkstrap.css +0 -5638
- package/app/report/jsdoc/styles/site.dibs-bootstrap.css +0 -5899
- package/app/report/jsdoc/styles/site.flatly.css +0 -7147
- package/app/report/jsdoc/styles/site.journal.css +0 -6973
- package/app/report/jsdoc/styles/site.lumen.css +0 -7298
- package/app/report/jsdoc/styles/site.paper.css +0 -7623
- package/app/report/jsdoc/styles/site.readable.css +0 -6997
- package/app/report/jsdoc/styles/site.sandstone.css +0 -7035
- package/app/report/jsdoc/styles/site.simplex.css +0 -7023
- package/app/report/jsdoc/styles/site.slate.css +0 -7343
- package/app/report/jsdoc/styles/site.spacelab.css +0 -7055
- package/app/report/jsdoc/styles/site.superhero.css +0 -7131
- package/app/report/jsdoc/styles/site.united.css +0 -6895
- package/app/report/jsdoc/styles/site.yeti.css +0 -7195
- package/app/report/jsdoc/styles/sunlight.dark.css +0 -345
- package/app/report/jsdoc/styles/sunlight.default.css +0 -344
- package/gulp/config.js +0 -207
- package/gulp/tasks/accessibility.js +0 -34
- package/gulp/tasks/build.js +0 -18
- package/gulp/tasks/clean.js +0 -18
- package/gulp/tasks/data.js +0 -22
- package/gulp/tasks/default.js +0 -9
- package/gulp/tasks/deploy.js +0 -222
- package/gulp/tasks/documentation.js +0 -28
- package/gulp/tasks/markup.js +0 -26
- package/gulp/tasks/script.js +0 -92
- package/gulp/tasks/style.js +0 -42
- package/gulp/tasks/unit.js +0 -38
- package/gulp/tasks/watch.js +0 -77
- package/gulpfile.js +0 -8
- package/jsdoc.json +0 -23
- package/karma.conf.js +0 -58
|
@@ -4,12 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
@font-face {
|
|
6
6
|
font-family: 'open_sansbold';
|
|
7
|
-
src: url('../font/opensans/opensans-bold-webfont.
|
|
8
|
-
|
|
9
|
-
url('../font/opensans/opensans-bold-webfont.woff2') format('woff2'),
|
|
10
|
-
url('../font/opensans/opensans-bold-webfont.woff') format('woff'),
|
|
11
|
-
url('../font/opensans/opensans-bold-webfont.ttf') format('truetype'),
|
|
12
|
-
url('../font/opensans/opensans-bold-webfont.svg#open_sansbold') format('svg');
|
|
7
|
+
src: url('../font/opensans/opensans-bold-webfont.woff2') format('woff2');
|
|
8
|
+
font-display: swap;
|
|
13
9
|
font-weight: normal;
|
|
14
10
|
font-style: normal;
|
|
15
11
|
|
|
@@ -20,12 +16,8 @@
|
|
|
20
16
|
|
|
21
17
|
@font-face {
|
|
22
18
|
font-family: 'open_sansbold_italic';
|
|
23
|
-
src: url('../font/opensans/opensans-bolditalic-webfont.
|
|
24
|
-
|
|
25
|
-
url('../font/opensans/opensans-bolditalic-webfont.woff2') format('woff2'),
|
|
26
|
-
url('../font/opensans/opensans-bolditalic-webfont.woff') format('woff'),
|
|
27
|
-
url('../font/opensans/opensans-bolditalic-webfont.ttf') format('truetype'),
|
|
28
|
-
url('../font/opensans/opensans-bolditalic-webfont.svg#open_sansbold_italic') format('svg');
|
|
19
|
+
src: url('../font/opensans/opensans-bolditalic-webfont.woff2') format('woff2');
|
|
20
|
+
font-display: swap;
|
|
29
21
|
font-weight: normal;
|
|
30
22
|
font-style: normal;
|
|
31
23
|
|
|
@@ -36,12 +28,8 @@
|
|
|
36
28
|
|
|
37
29
|
@font-face {
|
|
38
30
|
font-family: 'open_sansextrabold';
|
|
39
|
-
src: url('../font/opensans/opensans-extrabold-webfont.
|
|
40
|
-
|
|
41
|
-
url('../font/opensans/opensans-extrabold-webfont.woff2') format('woff2'),
|
|
42
|
-
url('../font/opensans/opensans-extrabold-webfont.woff') format('woff'),
|
|
43
|
-
url('../font/opensans/opensans-extrabold-webfont.ttf') format('truetype'),
|
|
44
|
-
url('../font/opensans/opensans-extrabold-webfont.svg#open_sansextrabold') format('svg');
|
|
31
|
+
src: url('../font/opensans/opensans-extrabold-webfont.woff2') format('woff2');
|
|
32
|
+
font-display: swap;
|
|
45
33
|
font-weight: normal;
|
|
46
34
|
font-style: normal;
|
|
47
35
|
|
|
@@ -52,12 +40,8 @@
|
|
|
52
40
|
|
|
53
41
|
@font-face {
|
|
54
42
|
font-family: 'open_sansextrabold_italic';
|
|
55
|
-
src: url('../font/opensans/opensans-extrabolditalic-webfont.
|
|
56
|
-
|
|
57
|
-
url('../font/opensans/opensans-extrabolditalic-webfont.woff2') format('woff2'),
|
|
58
|
-
url('../font/opensans/opensans-extrabolditalic-webfont.woff') format('woff'),
|
|
59
|
-
url('../font/opensans/opensans-extrabolditalic-webfont.ttf') format('truetype'),
|
|
60
|
-
url('../font/opensans/opensans-extrabolditalic-webfont.svg#open_sansextrabold_italic') format('svg');
|
|
43
|
+
src: url('../font/opensans/opensans-extrabolditalic-webfont.woff2') format('woff2');
|
|
44
|
+
font-display: swap;
|
|
61
45
|
font-weight: normal;
|
|
62
46
|
font-style: normal;
|
|
63
47
|
|
|
@@ -68,12 +52,8 @@
|
|
|
68
52
|
|
|
69
53
|
@font-face {
|
|
70
54
|
font-family: 'open_sansitalic';
|
|
71
|
-
src: url('../font/opensans/opensans-italic-webfont.
|
|
72
|
-
|
|
73
|
-
url('../font/opensans/opensans-italic-webfont.woff2') format('woff2'),
|
|
74
|
-
url('../font/opensans/opensans-italic-webfont.woff') format('woff'),
|
|
75
|
-
url('../font/opensans/opensans-italic-webfont.ttf') format('truetype'),
|
|
76
|
-
url('../font/opensans/opensans-italic-webfont.svg#open_sansitalic') format('svg');
|
|
55
|
+
src: url('../font/opensans/opensans-italic-webfont.woff2') format('woff2');
|
|
56
|
+
font-display: swap;
|
|
77
57
|
font-weight: normal;
|
|
78
58
|
font-style: normal;
|
|
79
59
|
|
|
@@ -84,12 +64,8 @@
|
|
|
84
64
|
|
|
85
65
|
@font-face {
|
|
86
66
|
font-family: 'open_sanslight';
|
|
87
|
-
src: url('../font/opensans/opensans-light-webfont.
|
|
88
|
-
|
|
89
|
-
url('../font/opensans/opensans-light-webfont.woff2') format('woff2'),
|
|
90
|
-
url('../font/opensans/opensans-light-webfont.woff') format('woff'),
|
|
91
|
-
url('../font/opensans/opensans-light-webfont.ttf') format('truetype'),
|
|
92
|
-
url('../font/opensans/opensans-light-webfont.svg#open_sanslight') format('svg');
|
|
67
|
+
src: url('../font/opensans/opensans-light-webfont.woff2') format('woff2');
|
|
68
|
+
font-display: swap;
|
|
93
69
|
font-weight: normal;
|
|
94
70
|
font-style: normal;
|
|
95
71
|
|
|
@@ -100,12 +76,8 @@
|
|
|
100
76
|
|
|
101
77
|
@font-face {
|
|
102
78
|
font-family: 'open_sanslight_italic';
|
|
103
|
-
src: url('../font/opensans/opensans-lightitalic-webfont.
|
|
104
|
-
|
|
105
|
-
url('../font/opensans/opensans-lightitalic-webfont.woff2') format('woff2'),
|
|
106
|
-
url('../font/opensans/opensans-lightitalic-webfont.woff') format('woff'),
|
|
107
|
-
url('../font/opensans/opensans-lightitalic-webfont.ttf') format('truetype'),
|
|
108
|
-
url('../font/opensans/opensans-lightitalic-webfont.svg#open_sanslight_italic') format('svg');
|
|
79
|
+
src: url('../font/opensans/opensans-lightitalic-webfont.woff2') format('woff2');
|
|
80
|
+
font-display: swap;
|
|
109
81
|
font-weight: normal;
|
|
110
82
|
font-style: normal;
|
|
111
83
|
|
|
@@ -116,12 +88,8 @@
|
|
|
116
88
|
|
|
117
89
|
@font-face {
|
|
118
90
|
font-family: 'open_sansregular';
|
|
119
|
-
src: url('../font/opensans/opensans-regular-webfont.
|
|
120
|
-
|
|
121
|
-
url('../font/opensans/opensans-regular-webfont.woff2') format('woff2'),
|
|
122
|
-
url('../font/opensans/opensans-regular-webfont.woff') format('woff'),
|
|
123
|
-
url('../font/opensans/opensans-regular-webfont.ttf') format('truetype'),
|
|
124
|
-
url('../font/opensans/opensans-regular-webfont.svg#open_sansregular') format('svg');
|
|
91
|
+
src: url('../font/opensans/opensans-regular-webfont.woff2') format('woff2');
|
|
92
|
+
font-display: swap;
|
|
125
93
|
font-weight: normal;
|
|
126
94
|
font-style: normal;
|
|
127
95
|
|
|
@@ -132,12 +100,8 @@
|
|
|
132
100
|
|
|
133
101
|
@font-face {
|
|
134
102
|
font-family: 'open_sanssemibold';
|
|
135
|
-
src: url('../font/opensans/opensans-semibold-webfont.
|
|
136
|
-
|
|
137
|
-
url('../font/opensans/opensans-semibold-webfont.woff2') format('woff2'),
|
|
138
|
-
url('../font/opensans/opensans-semibold-webfont.woff') format('woff'),
|
|
139
|
-
url('../font/opensans/opensans-semibold-webfont.ttf') format('truetype'),
|
|
140
|
-
url('../font/opensans/opensans-semibold-webfont.svg#open_sanssemibold') format('svg');
|
|
103
|
+
src: url('../font/opensans/opensans-semibold-webfont.woff2') format('woff2');
|
|
104
|
+
font-display: swap;
|
|
141
105
|
font-weight: normal;
|
|
142
106
|
font-style: normal;
|
|
143
107
|
|
|
@@ -148,12 +112,8 @@
|
|
|
148
112
|
|
|
149
113
|
@font-face {
|
|
150
114
|
font-family: 'open_sanssemibold_italic';
|
|
151
|
-
src: url('../font/opensans/opensans-semibolditalic-webfont.
|
|
152
|
-
|
|
153
|
-
url('../font/opensans/opensans-semibolditalic-webfont.woff2') format('woff2'),
|
|
154
|
-
url('../font/opensans/opensans-semibolditalic-webfont.woff') format('woff'),
|
|
155
|
-
url('../font/opensans/opensans-semibolditalic-webfont.ttf') format('truetype'),
|
|
156
|
-
url('../font/opensans/opensans-semibolditalic-webfont.svg#open_sanssemibold_italic') format('svg');
|
|
115
|
+
src: url('../font/opensans/opensans-semibolditalic-webfont.woff2') format('woff2');
|
|
116
|
+
font-display: swap;
|
|
157
117
|
font-weight: normal;
|
|
158
118
|
font-style: normal;
|
|
159
119
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<a
|
|
2
|
+
{{#if this.id}}
|
|
3
|
+
id="{{this.id}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
{{#if this.class}}
|
|
6
|
+
class="{{this.class}}"
|
|
7
|
+
{{/if}}
|
|
8
|
+
{{#if this.pushstate}}
|
|
9
|
+
data-pushstate
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if this.aria-label}}
|
|
12
|
+
aria-label="{{this.aria-label}}"
|
|
13
|
+
{{/if}}
|
|
14
|
+
{{#if this.url}}
|
|
15
|
+
href="{{#if this.type}}{{this.type}}:{{/if}}{{this.url}}"
|
|
16
|
+
{{/if}}
|
|
17
|
+
{{#if this.role}}
|
|
18
|
+
role="{{this.role}}"
|
|
19
|
+
{{/if}}
|
|
20
|
+
{{#if this.tabindex}}
|
|
21
|
+
tabindex="{{this.tabindex}}"
|
|
22
|
+
{{/if}}
|
|
23
|
+
{{#if this.target}}
|
|
24
|
+
target="{{this.target}}"
|
|
25
|
+
{{/if}}
|
|
26
|
+
{{#if this.data}}
|
|
27
|
+
data-custom="{{this.data}}"
|
|
28
|
+
{{/if}}
|
|
29
|
+
>{{this.title}}</a>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<button
|
|
2
|
+
{{#if this.id}}
|
|
3
|
+
id="{{this.id}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
{{#if this.name}}
|
|
6
|
+
name="{{this.name}}"
|
|
7
|
+
{{/if}}
|
|
8
|
+
{{#if this.class}}
|
|
9
|
+
class="{{this.class}}{{#if this.selected}} selected{{/if}}"
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if this.aria-label}}
|
|
12
|
+
aria-label="{{this.aria-label}}"
|
|
13
|
+
{{/if}}
|
|
14
|
+
{{#if this.disabled}}
|
|
15
|
+
disabled
|
|
16
|
+
aria-disabled="true"
|
|
17
|
+
{{/if}}
|
|
18
|
+
{{#if this.type}}
|
|
19
|
+
type="{{this.type}}"
|
|
20
|
+
{{/if}}
|
|
21
|
+
{{#if this.role}}
|
|
22
|
+
role="{{this.role}}"
|
|
23
|
+
{{/if}}
|
|
24
|
+
{{#if this.tabindex}}
|
|
25
|
+
tabindex="{{this.tabindex}}"
|
|
26
|
+
{{/if}}
|
|
27
|
+
{{#if this.data}}
|
|
28
|
+
data-custom="{{this.data}}"
|
|
29
|
+
{{/if}}
|
|
30
|
+
>{{this.title}}</button>
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<title>{{title}}</title>
|
|
3
|
+
<meta charset="utf-8">
|
|
4
|
+
<meta http-equiv="x-ua-compatible" content="IE=edge">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
{{#if meta.description}}
|
|
7
|
+
{{> element/meta name='description' content=meta.description}}
|
|
8
|
+
{{/if}}
|
|
9
|
+
{{#if meta.keywords}}
|
|
10
|
+
{{> element/meta name='keywords' content=meta.keywords}}
|
|
11
|
+
{{/if}}
|
|
12
|
+
{{#if meta.apple-mobile-web-app-title}}
|
|
13
|
+
{{> element/meta name='apple-mobile-web-app-title' content=meta.apple-mobile-web-app-title}}
|
|
14
|
+
{{/if}}
|
|
15
|
+
{{#if twitter.card}}
|
|
16
|
+
{{> element/meta name='twitter:card' content=twitter.card}}
|
|
17
|
+
{{/if}}
|
|
18
|
+
{{#if twitter.url}}
|
|
19
|
+
{{> element/meta name='twitter:url' content=twitter.url}}
|
|
20
|
+
{{/if}}
|
|
21
|
+
{{#if twitter.title}}
|
|
22
|
+
{{> element/meta name='twitter:title' content=twitter.title}}
|
|
23
|
+
{{/if}}
|
|
24
|
+
{{#if twitter.description}}
|
|
25
|
+
{{> element/meta name='twitter:description' content=twitter.description}}
|
|
26
|
+
{{/if}}
|
|
27
|
+
{{#if twitter.image}}
|
|
28
|
+
<meta name="twitter:image" content="{{cdn}}assets/image/{{twitter.image}}">
|
|
29
|
+
{{/if}}
|
|
30
|
+
{{#if og.title}}
|
|
31
|
+
{{> element/meta property='og:title' content=og.title}}
|
|
32
|
+
{{/if}}
|
|
33
|
+
{{#if og.type}}
|
|
34
|
+
{{> element/meta property='og:type' content=og.type}}
|
|
35
|
+
{{/if}}
|
|
36
|
+
{{#if og.url}}
|
|
37
|
+
{{> element/meta property='og:url' content=og.url}}
|
|
38
|
+
{{/if}}
|
|
39
|
+
{{#if og.image}}
|
|
40
|
+
<meta content="{{cdn}}assets/image/{{og.image}}" property="og:image">
|
|
41
|
+
{{/if}}
|
|
42
|
+
{{#if og.site_name}}
|
|
43
|
+
{{> element/meta property='og:site_name' content=og.site_name}}
|
|
44
|
+
{{/if}}
|
|
45
|
+
{{#if og.description}}
|
|
46
|
+
{{> element/meta property='og:description' content=og.description}}
|
|
47
|
+
{{/if}}
|
|
48
|
+
{{#if og.locale}}
|
|
49
|
+
{{> element/meta property='og:locale' content=og.locale}}
|
|
50
|
+
{{/if}}
|
|
51
|
+
{{#if fb.admins}}
|
|
52
|
+
{{> element/meta property='fb:admins' content=fb:admins}}
|
|
53
|
+
{{/if}}
|
|
54
|
+
{{#if fb.app_id}}
|
|
55
|
+
{{> element/meta property='fb:app_id' content=fb:app_id}}
|
|
56
|
+
{{/if}}
|
|
57
|
+
{{#if link.favicon}}
|
|
58
|
+
<link rel="icon" type="image/x-icon" href="{{cdn}}assets/image/{{link.favicon}}">
|
|
59
|
+
{{/if}}
|
|
60
|
+
{{#if link.apple-touch-icon-precomposed}}
|
|
61
|
+
<link rel="apple-touch-icon-precomposed" href="{{cdn}}assets/image/{{link.apple-touch-icon-precomposed}}">
|
|
62
|
+
{{/if}}
|
|
63
|
+
{{#if link.author}}
|
|
64
|
+
<link rel="author" href="{{link.author}}">
|
|
65
|
+
{{/if}}
|
|
66
|
+
{{#if styles.all.global}}
|
|
67
|
+
<link rel="stylesheet" type="text/css" media="all" href="{{cdn}}{{styles.all.global}}">
|
|
68
|
+
{{/if}}
|
|
69
|
+
{{#if styles.all.section}}
|
|
70
|
+
<link rel="stylesheet" type="text/css" media="all" href="{{cdn}}{{styles.all.section}}">
|
|
71
|
+
{{/if}}
|
|
72
|
+
{{#if styles.print.global}}
|
|
73
|
+
<link rel="stylesheet" type="text/css" media="print" href="{{cdn}}{{styles.print.global}}">
|
|
74
|
+
{{/if}}
|
|
75
|
+
{{#if styles.print.section}}
|
|
76
|
+
<link rel="stylesheet" type="text/css" media="print" href="{{cdn}}{{styles.print.section}}">
|
|
77
|
+
{{/if}}
|
|
78
|
+
</head>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<iframe
|
|
2
|
+
{{#if this.type}}
|
|
3
|
+
type="{{this.type}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
{{#if this.class}}
|
|
6
|
+
class="{{this.class}}"
|
|
7
|
+
{{/if}}
|
|
8
|
+
{{#if this.id}}
|
|
9
|
+
id="{{this.id}}"
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if this.title}}
|
|
12
|
+
title="{{this.title}}"
|
|
13
|
+
{{/if}}
|
|
14
|
+
{{#if this.url}}
|
|
15
|
+
src="{{this.url}}"
|
|
16
|
+
{{/if}}
|
|
17
|
+
{{#if this.loading}}
|
|
18
|
+
loading="{{this.loading}}"
|
|
19
|
+
{{/if}}
|
|
20
|
+
></iframe>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<img
|
|
2
|
+
{{#if this.id}}
|
|
3
|
+
id="{{this.id}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
{{#if this.class}}
|
|
6
|
+
class="{{this.class}}"
|
|
7
|
+
{{/if}}
|
|
8
|
+
{{#if this.aria-label}}
|
|
9
|
+
aria-label="{{this.aria-label}}"
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if this.image}}
|
|
12
|
+
src="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.image}}"
|
|
13
|
+
{{/if}}
|
|
14
|
+
{{#if this.width}}
|
|
15
|
+
width="{{this.width}}"
|
|
16
|
+
{{/if}}
|
|
17
|
+
{{#if this.height}}
|
|
18
|
+
height="{{this.height}}"
|
|
19
|
+
{{/if}}
|
|
20
|
+
{{#if this.loading}}
|
|
21
|
+
loading="{{this.loading}}"
|
|
22
|
+
{{/if}}
|
|
23
|
+
{{#if this.decoding}}
|
|
24
|
+
decoding="{{this.decoding}}"
|
|
25
|
+
{{/if}}
|
|
26
|
+
{{#if this.fetchpriority}}
|
|
27
|
+
fetchpriority="{{this.fetchpriority}}"
|
|
28
|
+
{{/if}}
|
|
29
|
+
alt="{{#if this.alt}}{{this.alt}}{{/if}}"
|
|
30
|
+
>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<input
|
|
2
|
+
{{#if this.id}}
|
|
3
|
+
id="{{this.id}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
{{#if this.class}}
|
|
6
|
+
class="{{this.class}}"
|
|
7
|
+
{{/if}}
|
|
8
|
+
{{#if this.placeholder}}
|
|
9
|
+
placeholder="{{this.placeholder}}"
|
|
10
|
+
{{/if}}
|
|
11
|
+
value="{{this.value}}"
|
|
12
|
+
{{#if this.type}}
|
|
13
|
+
type="{{this.type}}"
|
|
14
|
+
{{else}}
|
|
15
|
+
type="text"
|
|
16
|
+
{{/if}}
|
|
17
|
+
{{#if this.name}}
|
|
18
|
+
name="{{this.name}}"
|
|
19
|
+
{{/if}}
|
|
20
|
+
{{#if this.title}}
|
|
21
|
+
title="{{this.title}}"
|
|
22
|
+
{{/if}}
|
|
23
|
+
{{#if this.required}}
|
|
24
|
+
required
|
|
25
|
+
aria-required="true"
|
|
26
|
+
{{/if}}
|
|
27
|
+
{{#if this.disabled}}
|
|
28
|
+
disabled
|
|
29
|
+
aria-disabled="true"
|
|
30
|
+
{{/if}}
|
|
31
|
+
{{#if this.checked}}
|
|
32
|
+
checked
|
|
33
|
+
{{/if}}
|
|
34
|
+
{{#if this.data}}
|
|
35
|
+
data-custom="{{this.data}}"
|
|
36
|
+
{{/if}}
|
|
37
|
+
{{#if this.labelledby}}
|
|
38
|
+
aria-labelledby="{{this.labelledby}}"
|
|
39
|
+
{{/if}}
|
|
40
|
+
{{#if this.aria-label}}
|
|
41
|
+
aria-label="{{this.aria-label}}"
|
|
42
|
+
{{/if}}
|
|
43
|
+
>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<label
|
|
2
|
+
{{#if this.for}}
|
|
3
|
+
for="{{this.for}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
{{#if this.id}}
|
|
6
|
+
id="{{this.id}}"
|
|
7
|
+
{{/if}}
|
|
8
|
+
{{#if this.class}}
|
|
9
|
+
class="{{this.class}}"
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if this.aria-label}}
|
|
12
|
+
aria-label="{{this.aria-label}}"
|
|
13
|
+
{{/if}}
|
|
14
|
+
>{{this.title}}</label>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<nav
|
|
2
|
+
{{#if this.tabindex}}
|
|
3
|
+
tabindex="{{this.tabindex}}"
|
|
4
|
+
{{else}}
|
|
5
|
+
tabindex="-1"
|
|
6
|
+
{{/if}}
|
|
7
|
+
{{#if this.class}}
|
|
8
|
+
class="{{this.class}}"
|
|
9
|
+
{{/if}}
|
|
10
|
+
{{#if this.aria-label}}
|
|
11
|
+
aria-label="{{this.aria-label}}"
|
|
12
|
+
{{/if}}
|
|
13
|
+
>{{> elements/ul class=null}}</nav>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<picture
|
|
2
|
+
{{#if this.id}}
|
|
3
|
+
id="{{this.id}}"{{/if}}
|
|
4
|
+
{{#if this.class}}
|
|
5
|
+
class="{{this.class}}"
|
|
6
|
+
{{/if}}
|
|
7
|
+
{{#if this.aria-label}}
|
|
8
|
+
aria-label="{{this.aria-label}}"
|
|
9
|
+
{{/if}}
|
|
10
|
+
alt="{{#if this.alt}}{{this.alt}}{{/if}}"
|
|
11
|
+
>
|
|
12
|
+
{{#if this.imageSmallAvif}}
|
|
13
|
+
<source type="image/avif" media="(max-width: 40rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageSmallAvif}}">
|
|
14
|
+
{{/if}}
|
|
15
|
+
{{#if this.imageSmallWebp}}
|
|
16
|
+
<source type="image/webp" media="(max-width: 40rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageSmallWebp}}">
|
|
17
|
+
{{/if}}
|
|
18
|
+
{{#if this.imageSmall}}
|
|
19
|
+
<source media="(max-width: 40rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageSmall}}">
|
|
20
|
+
{{/if}}
|
|
21
|
+
{{#if this.imageMediumAvif}}
|
|
22
|
+
<source type="image/avif" media="(max-width: 64rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageMediumAvif}}">
|
|
23
|
+
{{/if}}
|
|
24
|
+
{{#if this.imageMediumWebp}}
|
|
25
|
+
<source type="image/webp" media="(max-width: 64rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageMediumWebp}}">
|
|
26
|
+
{{/if}}
|
|
27
|
+
{{#if this.imageMedium}}
|
|
28
|
+
<source media="(max-width: 64rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageMedium}}">
|
|
29
|
+
{{/if}}
|
|
30
|
+
{{#if this.imageLargeAvif}}
|
|
31
|
+
<source type="image/avif" media="(max-width: 75rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageLargeAvif}}">
|
|
32
|
+
{{/if}}
|
|
33
|
+
{{#if this.imageLargeWebp}}
|
|
34
|
+
<source type="image/webp" media="(max-width: 75rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageLargeWebp}}">
|
|
35
|
+
{{/if}}
|
|
36
|
+
{{#if this.imageLarge}}
|
|
37
|
+
<source media="(max-width: 75rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageLarge}}">
|
|
38
|
+
{{/if}}
|
|
39
|
+
{{#if this.imageXLargeAvif}}
|
|
40
|
+
<source type="image/avif" media="(max-width: 90rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageXLargeAvif}}">
|
|
41
|
+
{{/if}}
|
|
42
|
+
{{#if this.imageXLargeWebp}}
|
|
43
|
+
<source type="image/webp" media="(max-width: 90rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageXLargeWebp}}">
|
|
44
|
+
{{/if}}
|
|
45
|
+
{{#if this.imageXLarge}}
|
|
46
|
+
<source media="(max-width: 90rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageXLarge}}">
|
|
47
|
+
{{/if}}
|
|
48
|
+
{{#if this.imageXXLargeAvif}}
|
|
49
|
+
<source type="image/avif" media="(min-width: 90.001rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageXXLargeAvif}}">
|
|
50
|
+
{{/if}}
|
|
51
|
+
{{#if this.imageXXLargeWebp}}
|
|
52
|
+
<source type="image/webp" media="(min-width: 90.001rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageXXLargeWebp}}">
|
|
53
|
+
{{/if}}
|
|
54
|
+
{{#if this.imageXXLarge}}
|
|
55
|
+
<source media="(min-width: 90.001rem)" srcset="{{#unless this.external}}{{this.cdn}}{{/unless}}{{this.imageXXLarge}}">
|
|
56
|
+
{{/if}}
|
|
57
|
+
{{> element/img image=this.imageFallback}}
|
|
58
|
+
</picture>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<select
|
|
2
|
+
{{#if this.id}}
|
|
3
|
+
id="{{this.id}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
{{#if this.name}}
|
|
6
|
+
name="{{this.name}}"
|
|
7
|
+
{{/if}}
|
|
8
|
+
{{#if this.class}}
|
|
9
|
+
class="{{this.class}}"
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if this.required}}
|
|
12
|
+
required
|
|
13
|
+
aria-required="true"
|
|
14
|
+
{{/if}}
|
|
15
|
+
{{#if this.multiple}}
|
|
16
|
+
multiple='multiple'
|
|
17
|
+
{{/if}}
|
|
18
|
+
{{#if this.disabled}}
|
|
19
|
+
disabled
|
|
20
|
+
aria-disabled="true"
|
|
21
|
+
{{/if}}
|
|
22
|
+
{{#if this.aria-label}}
|
|
23
|
+
aria-label="{{this.aria-label}}"
|
|
24
|
+
{{/if}}
|
|
25
|
+
>
|
|
26
|
+
{{#if this.default}}
|
|
27
|
+
<option value="{{this.default.value}}">{{this.default.name}}</option>
|
|
28
|
+
<option value="" disabled>--</option>
|
|
29
|
+
{{else}}
|
|
30
|
+
<option value="">please make a selection</option>
|
|
31
|
+
{{/if}}
|
|
32
|
+
{{#each this.data}}
|
|
33
|
+
<option value="{{this.value}}"{{#if this.selected}} selected{{/if}}>{{this.name}}</option>
|
|
34
|
+
{{/each}}
|
|
35
|
+
</select>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<table
|
|
2
|
+
{{#if this.class}}
|
|
3
|
+
class="{{this.class}}"
|
|
4
|
+
{{/if}}
|
|
5
|
+
>
|
|
6
|
+
<caption>{{this.caption}}</caption>
|
|
7
|
+
{{#if this.head}}
|
|
8
|
+
<thead>
|
|
9
|
+
<tr>
|
|
10
|
+
{{#each this.head}}
|
|
11
|
+
{{#if this.text}}
|
|
12
|
+
<th scope="col" data-sort="desc">{{this.text}}</th>
|
|
13
|
+
{{else}}
|
|
14
|
+
<td></td>
|
|
15
|
+
{{/if}}
|
|
16
|
+
{{/each}}
|
|
17
|
+
</tr>
|
|
18
|
+
</thead>
|
|
19
|
+
{{/if}}
|
|
20
|
+
{{#if this.body}}
|
|
21
|
+
<tbody>
|
|
22
|
+
{{#each this.body}}
|
|
23
|
+
<tr>
|
|
24
|
+
{{#each this}}
|
|
25
|
+
{{#if this.isHead}}
|
|
26
|
+
<th scope="row">{{this.text}}</th>
|
|
27
|
+
{{else}}
|
|
28
|
+
<td>{{this.text}}</td>
|
|
29
|
+
{{/if}}
|
|
30
|
+
{{/each}}
|
|
31
|
+
</tr>
|
|
32
|
+
{{/each}}
|
|
33
|
+
</tbody>
|
|
34
|
+
{{/if}}
|
|
35
|
+
{{#if this.foot}}
|
|
36
|
+
<tfoot>
|
|
37
|
+
{{#each this.foot}}
|
|
38
|
+
<tr>
|
|
39
|
+
{{#each this}}
|
|
40
|
+
{{#if this.isHead}}
|
|
41
|
+
<th scope="row">{{this.text}}</th>
|
|
42
|
+
{{else}}
|
|
43
|
+
<td>{{this.text}}</td>
|
|
44
|
+
{{/if}}
|
|
45
|
+
{{/each}}
|
|
46
|
+
</tr>
|
|
47
|
+
{{/each}}
|
|
48
|
+
</tfoot>
|
|
49
|
+
{{/if}}
|
|
50
|
+
</table>
|