├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .prettierignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── app.js ├── contentBuilder.js ├── prototype.js └── vue.js ├── generators ├── app │ ├── index.js │ ├── modules │ │ ├── config │ │ │ ├── base.js │ │ │ ├── craft.js │ │ │ ├── html.js │ │ │ ├── joomla.js │ │ │ └── wordpress.js │ │ ├── package │ │ │ ├── dependencies │ │ │ │ ├── base.js │ │ │ │ ├── partials │ │ │ │ │ ├── contentBuilder.js │ │ │ │ │ ├── gulp.js │ │ │ │ │ ├── stylelint.js │ │ │ │ │ ├── typescript.js │ │ │ │ │ └── vue.js │ │ │ │ ├── script.js │ │ │ │ ├── starterpack.js │ │ │ │ ├── style.js │ │ │ │ └── tools.js │ │ │ ├── index.js │ │ │ └── info │ │ │ │ ├── author.js │ │ │ │ └── base.js │ │ ├── prompt │ │ │ ├── helpers │ │ │ │ ├── message.js │ │ │ │ ├── when.js │ │ │ │ └── whenExtra.js │ │ │ ├── index.js │ │ │ └── partials │ │ │ │ └── _general.js │ │ └── writing │ │ │ ├── addDB.js │ │ │ ├── configJSON.js │ │ │ ├── copySources.js │ │ │ ├── copySrc │ │ │ ├── base.js │ │ │ ├── projecttype.js │ │ │ ├── script.js │ │ │ ├── starterpackCraft.js │ │ │ ├── starterpackJoomla.js │ │ │ ├── starterpackWordpress.js │ │ │ ├── style.js │ │ │ └── tools.js │ │ │ ├── helpers │ │ │ └── import-mysql.js │ │ │ ├── importDB.js │ │ │ ├── install │ │ │ ├── craft.js │ │ │ ├── joomla.js │ │ │ └── wordpress.js │ │ │ └── packageJSON.js │ └── templates │ │ ├── README.md │ │ ├── _browserslistrc │ │ ├── _editorconfig │ │ ├── _eslintrc-dev.js │ │ ├── _eslintrc.js │ │ ├── _gitignore │ │ ├── _npmrc │ │ ├── _nvmrc │ │ ├── _prettierignore │ │ ├── astrum-config.json │ │ ├── babel.config.js │ │ ├── buddy.yml │ │ ├── config.json │ │ ├── contentBuilder_stuff │ │ ├── databases │ │ │ ├── craft.sql │ │ │ ├── craft3.sql │ │ │ ├── craftCB.sql │ │ │ ├── joomla.sql │ │ │ ├── wordpress.sql │ │ │ └── wordpressCB.sql │ │ └── js │ │ │ ├── contentBuilder.js │ │ │ ├── disqusComments.js │ │ │ ├── flickity-package.js │ │ │ ├── hasScrollbars.js │ │ │ ├── init-autoscroll.js │ │ │ ├── init-heighttransition.js │ │ │ ├── init-photoswipe.js │ │ │ ├── progressLoader.js │ │ │ ├── searchbar.js │ │ │ └── videoHelper.js │ │ ├── cypress.json │ │ ├── gulpfile.babel.js │ │ ├── gulpfile │ │ ├── lib │ │ │ ├── copyImages.js │ │ │ ├── errorHandler.js │ │ │ ├── global-minify.js │ │ │ ├── minifyImage.js │ │ │ └── templateFiles.js │ │ └── tasks │ │ │ ├── browsersync.js │ │ │ ├── build-bitmapsprite.js │ │ │ ├── build-favicons.js │ │ │ ├── build-symbolCleanup.js │ │ │ ├── build-vectorsprite.js │ │ │ ├── build.js │ │ │ ├── combine-js.js │ │ │ ├── compile-css.js │ │ │ ├── compile-html.js │ │ │ ├── copy-assets.js │ │ │ ├── copy-bitmaps.js │ │ │ ├── copy-contentimages.js │ │ │ ├── copy-fonts.js │ │ │ ├── copy-js.js │ │ │ ├── copy-launch.js │ │ │ ├── copy-vectors.js │ │ │ ├── default.js │ │ │ ├── init.js │ │ │ ├── minify-contentimages.js │ │ │ ├── minify-css.js │ │ │ ├── minify-inlineimages.js │ │ │ ├── minify-js.js │ │ │ ├── publish.js │ │ │ ├── rebuild-images.js │ │ │ ├── rebuild-js.js │ │ │ ├── version-bump.js │ │ │ └── watch.js │ │ ├── gulpfile_additions │ │ ├── copy-craftenv.js │ │ ├── copy-craftindex.js │ │ ├── copy-craftplugins.js │ │ ├── copy-joomlafiles.js │ │ ├── copy-wpconfig.js │ │ ├── copy-wpplugins.js │ │ ├── optimize-criticalCss.js │ │ └── sassdoc-generate.js │ │ ├── install.sh │ │ ├── jest.config.js │ │ ├── nodescripts │ │ └── critical.js │ │ ├── package.json │ │ ├── pattern-library │ │ ├── data.json │ │ └── data │ │ │ ├── LICENSE.txt │ │ │ ├── app │ │ │ ├── css │ │ │ │ ├── styles.css │ │ │ │ └── styles.min.css │ │ │ └── js │ │ │ │ ├── main.js │ │ │ │ └── main.min.js │ │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── branding │ │ │ │ ├── color-palette │ │ │ │ │ ├── description.md │ │ │ │ │ └── markup.html │ │ │ │ ├── description.md │ │ │ │ ├── logo-dark │ │ │ │ │ ├── description.md │ │ │ │ │ └── markup.html │ │ │ │ ├── logo │ │ │ │ │ ├── description.md │ │ │ │ │ └── markup.html │ │ │ │ └── typo │ │ │ │ │ ├── description.md │ │ │ │ │ └── markup.html │ │ │ └── objects │ │ │ │ ├── accordion │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── anchor │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── button │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── description.md │ │ │ │ ├── galley │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── headline │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── horizontalruler │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── iframecontent │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── imageslider │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── jumpnavigation │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── list │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── mediabox │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── mediaimage │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── quote │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── slideoutbox │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── spacer │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── tab │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ ├── textslider │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ │ └── viewportspan │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ ├── favicon.png │ │ │ ├── images │ │ │ ├── slide1--1200.jpg │ │ │ ├── slide1--300.jpg │ │ │ ├── slide1--600.jpg │ │ │ ├── slide1--800.jpg │ │ │ ├── slide1.jpg │ │ │ ├── slide2--1200.jpg │ │ │ ├── slide2--300.jpg │ │ │ ├── slide2--600.jpg │ │ │ ├── slide2--800.jpg │ │ │ ├── slide2.jpg │ │ │ ├── slide3--1200.jpg │ │ │ ├── slide3--300.jpg │ │ │ ├── slide3--600.jpg │ │ │ ├── slide3--800.jpg │ │ │ ├── slide3.jpg │ │ │ ├── slide4--1200.jpg │ │ │ ├── slide4--300.jpg │ │ │ ├── slide4--600.jpg │ │ │ ├── slide4--800.jpg │ │ │ └── slide4.jpg │ │ │ ├── index.html │ │ │ └── pages │ │ │ ├── .gitkeep │ │ │ └── intro.md │ │ ├── postcss.config.js │ │ ├── prettier.config.js │ │ ├── purgecss.pattern.js │ │ ├── src │ │ ├── .system │ │ │ ├── 404.html │ │ │ ├── robots.txt │ │ │ ├── tpl_bitmapsprite.scss │ │ │ └── tpl_svgsprite.scss │ │ ├── .system_additions │ │ │ ├── facebook-og-image.jpg │ │ │ ├── favicon.png │ │ │ ├── htaccess │ │ │ ├── placeholder.png │ │ │ └── twitter-og-image.jpg │ │ ├── fonts │ │ │ └── readme.txt │ │ ├── framework │ │ │ ├── _defaults.scss │ │ │ ├── core │ │ │ │ ├── __import-core.scss │ │ │ │ ├── functions │ │ │ │ │ ├── _argcheck.scss │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _colors.scss │ │ │ │ │ ├── _container-queries.scss │ │ │ │ │ ├── _em.scss │ │ │ │ │ ├── _fontfamily.scss │ │ │ │ │ ├── _maps.scss │ │ │ │ │ ├── _rem.scss │ │ │ │ │ ├── _sassylists.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _typechecks.scss │ │ │ │ │ └── _unitcheck.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _bem.scss │ │ │ │ │ ├── _break.scss │ │ │ │ │ ├── _cssgrid.scss │ │ │ │ │ ├── _eqcss.scss │ │ │ │ │ ├── _family.scss │ │ │ │ │ ├── _fluid.scss │ │ │ │ │ ├── _fontface.scss │ │ │ │ │ ├── _jacket.scss │ │ │ │ │ ├── _pos.scss │ │ │ │ │ └── _size.scss │ │ │ │ └── placeholder │ │ │ │ │ ├── _antialias.scss │ │ │ │ │ ├── _block-center.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _cleartext-complex.scss │ │ │ │ │ ├── _cleartext-simple.scss │ │ │ │ │ ├── _cleartext.scss │ │ │ │ │ ├── _decollapse.scss │ │ │ │ │ ├── _embed-responsive.scss │ │ │ │ │ ├── _expand-clickarea.scss │ │ │ │ │ ├── _perfomance.scss │ │ │ │ │ ├── _simple-button.scss │ │ │ │ │ ├── _text-hyphen.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _vertical-align.scss │ │ │ │ │ ├── _vertical-center.scss │ │ │ │ │ ├── _visually-hidden.scss │ │ │ │ │ └── _word-wrap.scss │ │ │ ├── generators │ │ │ │ ├── __import-generators.scss │ │ │ │ ├── __init-generator.scss │ │ │ │ ├── _debug-generator.scss │ │ │ │ ├── _fontface-generator.scss │ │ │ │ ├── _iconfont-generator.scss │ │ │ │ ├── _resposive-fontsize-generator.scss │ │ │ │ └── _typoset-generator.scss │ │ │ ├── methods │ │ │ │ ├── __import-methods.scss │ │ │ │ ├── _align.scss │ │ │ │ ├── _bar.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _iconfont.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _overlap.scss │ │ │ │ ├── _positioning.scss │ │ │ │ ├── _ratio.scss │ │ │ │ ├── _reposition.scss │ │ │ │ ├── _scale.scss │ │ │ │ ├── _spacer.scss │ │ │ │ └── _vertical-sizes.scss │ │ │ └── partials │ │ │ │ ├── _print.scss │ │ │ │ └── _tables.scss │ │ ├── framework_additions │ │ │ ├── _normalize-slim.scss │ │ │ └── _normalize.scss │ │ ├── images │ │ │ ├── bitmapSingle-assets │ │ │ │ └── readme.txt │ │ │ ├── bitmapSingle.psd │ │ │ ├── bitmapSprite-assets │ │ │ │ └── readme.txt │ │ │ ├── bitmapSprite.psd │ │ │ ├── htmlimages │ │ │ │ └── readme.txt │ │ │ ├── vectorSingle-assets │ │ │ │ ├── default-skin.svg │ │ │ │ └── readme.txt │ │ │ └── vectorSprite-assets │ │ │ │ ├── icon-buffer.svg │ │ │ │ ├── icon-email.svg │ │ │ │ ├── icon-facebook.svg │ │ │ │ ├── icon-googleplus.svg │ │ │ │ ├── icon-instagram.svg │ │ │ │ ├── icon-linkedin.svg │ │ │ │ ├── icon-pinterest.svg │ │ │ │ ├── icon-reddit.svg │ │ │ │ ├── icon-twitter.svg │ │ │ │ ├── icon-vimeo.svg │ │ │ │ ├── icon-whatsapp.svg │ │ │ │ ├── icon-xing.svg │ │ │ │ ├── icon-youtube.svg │ │ │ │ └── readme.txt │ │ ├── images_webpackApp │ │ │ ├── bitmaps │ │ │ │ └── readme.txt │ │ │ ├── vectors │ │ │ │ └── readme.txt │ │ │ └── vectorsSingle │ │ │ │ └── readme.txt │ │ ├── js │ │ │ └── partial │ │ │ │ ├── detect-browser.js │ │ │ │ ├── disable-pointerevents.js │ │ │ │ ├── failsave.js │ │ │ │ ├── kittnad.js │ │ │ │ ├── lazysize-init.js │ │ │ │ └── offcanvas-trigger.js │ │ ├── scripts │ │ │ └── readme.txt │ │ ├── skeletons │ │ │ ├── craftcms │ │ │ │ ├── craftplugins │ │ │ │ │ └── readme.txt │ │ │ │ ├── craftscripts │ │ │ │ │ ├── .env.sh │ │ │ │ │ ├── backup_assets.sh │ │ │ │ │ ├── backup_db.sh │ │ │ │ │ ├── backup_dirs.sh │ │ │ │ │ ├── clear_caches.sh │ │ │ │ │ ├── common │ │ │ │ │ │ ├── common_db.sh │ │ │ │ │ │ ├── common_env.sh │ │ │ │ │ │ └── defaults.sh │ │ │ │ │ ├── example.env.sh │ │ │ │ │ ├── pull_assets.sh │ │ │ │ │ ├── pull_backups.sh │ │ │ │ │ ├── pull_db.sh │ │ │ │ │ ├── restore_db.sh │ │ │ │ │ ├── set_perms.sh │ │ │ │ │ └── sync_backups_to_s3.sh │ │ │ │ ├── env.sh │ │ │ │ ├── env │ │ │ │ │ ├── env.php │ │ │ │ │ └── example.env.php │ │ │ │ ├── env_v3 │ │ │ │ │ ├── env │ │ │ │ │ └── env.example │ │ │ │ ├── plugins.sh │ │ │ │ ├── public │ │ │ │ │ ├── en │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── imager │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── index.php │ │ │ │ │ ├── robots.txt │ │ │ │ │ ├── uploads │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ └── videos │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── web.config │ │ │ │ ├── public_additions │ │ │ │ │ ├── _htaccess │ │ │ │ │ └── en │ │ │ │ │ │ └── _htaccess │ │ │ │ ├── structure │ │ │ │ │ ├── config │ │ │ │ │ │ ├── db.php │ │ │ │ │ │ ├── elementapi.php │ │ │ │ │ │ ├── elementapi │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── environmentlabel.php │ │ │ │ │ │ ├── general.php │ │ │ │ │ │ ├── imager.php │ │ │ │ │ │ ├── redactor │ │ │ │ │ │ │ ├── Reduced.json │ │ │ │ │ │ │ ├── Simple.json │ │ │ │ │ │ │ └── Standard.json │ │ │ │ │ │ ├── routes.php │ │ │ │ │ │ └── seomatic.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── _builder │ │ │ │ │ │ │ └── content-builder.html │ │ │ │ │ │ ├── _components │ │ │ │ │ │ │ └── example.html │ │ │ │ │ │ ├── _layout │ │ │ │ │ │ │ └── main-layout.html │ │ │ │ │ │ ├── _macros │ │ │ │ │ │ │ └── my-macro.html │ │ │ │ │ │ ├── _parts │ │ │ │ │ │ │ ├── document-footer.html │ │ │ │ │ │ │ └── document-header.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── news │ │ │ │ │ │ │ ├── _entry.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ └── translations │ │ │ │ │ │ └── en.php │ │ │ │ └── structure_v3 │ │ │ │ │ ├── config │ │ │ │ │ ├── db.php │ │ │ │ │ ├── general.php │ │ │ │ │ └── redactor │ │ │ │ │ │ ├── Reduced.json │ │ │ │ │ │ ├── Simple.json │ │ │ │ │ │ └── Standard.json │ │ │ │ │ ├── templates │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── _builder │ │ │ │ │ │ └── content-builder.html │ │ │ │ │ ├── _components │ │ │ │ │ │ └── example.html │ │ │ │ │ ├── _layout │ │ │ │ │ │ └── main-layout.html │ │ │ │ │ ├── _macros │ │ │ │ │ │ └── my-macro.html │ │ │ │ │ ├── _parts │ │ │ │ │ │ ├── document-footer.html │ │ │ │ │ │ └── document-header.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── news │ │ │ │ │ │ ├── _entry.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── translations │ │ │ │ │ └── en.php │ │ │ ├── craftcms_contentbuilder │ │ │ │ ├── contentbuilder.json │ │ │ │ ├── structure │ │ │ │ │ ├── config │ │ │ │ │ │ ├── elementapi.php │ │ │ │ │ │ └── elementapi │ │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── contentbuilder.php │ │ │ │ │ │ │ ├── getImageSet.php │ │ │ │ │ │ │ └── objects │ │ │ │ │ │ │ │ └── objRichtext.php │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── blogArchiveTransformer.php │ │ │ │ │ │ │ └── blogSingleTransformer.php │ │ │ │ │ ├── craftplugins │ │ │ │ │ │ ├── Inlin │ │ │ │ │ │ │ ├── InlinPlugin.php │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── InlinService.php │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── InlinVariable.php │ │ │ │ │ │ ├── acefreely │ │ │ │ │ │ │ ├── AceFreelyPlugin.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ └── AceFreely_AceFreelyFieldType.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── ace.freely.css │ │ │ │ │ │ │ │ ├── ace.freely.js │ │ │ │ │ │ │ │ ├── ace.freely.min.css │ │ │ │ │ │ │ │ ├── ace.freely.min.js │ │ │ │ │ │ │ │ └── ace │ │ │ │ │ │ │ │ │ ├── ace.js │ │ │ │ │ │ │ │ │ ├── ext-chromevox.js │ │ │ │ │ │ │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ │ │ │ │ │ │ ├── ext-emmet.js │ │ │ │ │ │ │ │ │ ├── ext-error_marker.js │ │ │ │ │ │ │ │ │ ├── ext-keybinding_menu.js │ │ │ │ │ │ │ │ │ ├── ext-language_tools.js │ │ │ │ │ │ │ │ │ ├── ext-modelist.js │ │ │ │ │ │ │ │ │ ├── ext-old_ie.js │ │ │ │ │ │ │ │ │ ├── ext-searchbox.js │ │ │ │ │ │ │ │ │ ├── ext-settings_menu.js │ │ │ │ │ │ │ │ │ ├── ext-spellcheck.js │ │ │ │ │ │ │ │ │ ├── ext-split.js │ │ │ │ │ │ │ │ │ ├── ext-static_highlight.js │ │ │ │ │ │ │ │ │ ├── ext-statusbar.js │ │ │ │ │ │ │ │ │ ├── ext-textarea.js │ │ │ │ │ │ │ │ │ ├── ext-themelist.js │ │ │ │ │ │ │ │ │ ├── ext-whitespace.js │ │ │ │ │ │ │ │ │ ├── keybinding-emacs.js │ │ │ │ │ │ │ │ │ ├── keybinding-vim.js │ │ │ │ │ │ │ │ │ ├── mode-abap.js │ │ │ │ │ │ │ │ │ ├── mode-actionscript.js │ │ │ │ │ │ │ │ │ ├── mode-ada.js │ │ │ │ │ │ │ │ │ ├── mode-apache_conf.js │ │ │ │ │ │ │ │ │ ├── mode-asciidoc.js │ │ │ │ │ │ │ │ │ ├── mode-assembly_x86.js │ │ │ │ │ │ │ │ │ ├── mode-autohotkey.js │ │ │ │ │ │ │ │ │ ├── mode-batchfile.js │ │ │ │ │ │ │ │ │ ├── mode-c9search.js │ │ │ │ │ │ │ │ │ ├── mode-c_cpp.js │ │ │ │ │ │ │ │ │ ├── mode-cirru.js │ │ │ │ │ │ │ │ │ ├── mode-clojure.js │ │ │ │ │ │ │ │ │ ├── mode-cobol.js │ │ │ │ │ │ │ │ │ ├── mode-coffee.js │ │ │ │ │ │ │ │ │ ├── mode-coldfusion.js │ │ │ │ │ │ │ │ │ ├── mode-csharp.js │ │ │ │ │ │ │ │ │ ├── mode-css.js │ │ │ │ │ │ │ │ │ ├── mode-curly.js │ │ │ │ │ │ │ │ │ ├── mode-d.js │ │ │ │ │ │ │ │ │ ├── mode-dart.js │ │ │ │ │ │ │ │ │ ├── mode-diff.js │ │ │ │ │ │ │ │ │ ├── mode-django.js │ │ │ │ │ │ │ │ │ ├── mode-dot.js │ │ │ │ │ │ │ │ │ ├── mode-ejs.js │ │ │ │ │ │ │ │ │ ├── mode-erlang.js │ │ │ │ │ │ │ │ │ ├── mode-forth.js │ │ │ │ │ │ │ │ │ ├── mode-ftl.js │ │ │ │ │ │ │ │ │ ├── mode-gherkin.js │ │ │ │ │ │ │ │ │ ├── mode-glsl.js │ │ │ │ │ │ │ │ │ ├── mode-golang.js │ │ │ │ │ │ │ │ │ ├── mode-groovy.js │ │ │ │ │ │ │ │ │ ├── mode-haml.js │ │ │ │ │ │ │ │ │ ├── mode-handlebars.js │ │ │ │ │ │ │ │ │ ├── mode-haskell.js │ │ │ │ │ │ │ │ │ ├── mode-haxe.js │ │ │ │ │ │ │ │ │ ├── mode-html.js │ │ │ │ │ │ │ │ │ ├── mode-html_completions.js │ │ │ │ │ │ │ │ │ ├── mode-html_ruby.js │ │ │ │ │ │ │ │ │ ├── mode-ini.js │ │ │ │ │ │ │ │ │ ├── mode-jack.js │ │ │ │ │ │ │ │ │ ├── mode-jade.js │ │ │ │ │ │ │ │ │ ├── mode-java.js │ │ │ │ │ │ │ │ │ ├── mode-javascript.js │ │ │ │ │ │ │ │ │ ├── mode-json.js │ │ │ │ │ │ │ │ │ ├── mode-jsoniq.js │ │ │ │ │ │ │ │ │ ├── mode-jsp.js │ │ │ │ │ │ │ │ │ ├── mode-jsx.js │ │ │ │ │ │ │ │ │ ├── mode-julia.js │ │ │ │ │ │ │ │ │ ├── mode-latex.js │ │ │ │ │ │ │ │ │ ├── mode-less.js │ │ │ │ │ │ │ │ │ ├── mode-liquid.js │ │ │ │ │ │ │ │ │ ├── mode-lisp.js │ │ │ │ │ │ │ │ │ ├── mode-livescript.js │ │ │ │ │ │ │ │ │ ├── mode-logiql.js │ │ │ │ │ │ │ │ │ ├── mode-lsl.js │ │ │ │ │ │ │ │ │ ├── mode-lua.js │ │ │ │ │ │ │ │ │ ├── mode-luapage.js │ │ │ │ │ │ │ │ │ ├── mode-lucene.js │ │ │ │ │ │ │ │ │ ├── mode-makefile.js │ │ │ │ │ │ │ │ │ ├── mode-markdown.js │ │ │ │ │ │ │ │ │ ├── mode-matlab.js │ │ │ │ │ │ │ │ │ ├── mode-mel.js │ │ │ │ │ │ │ │ │ ├── mode-mushcode.js │ │ │ │ │ │ │ │ │ ├── mode-mushcode_high_rules.js │ │ │ │ │ │ │ │ │ ├── mode-mysql.js │ │ │ │ │ │ │ │ │ ├── mode-nix.js │ │ │ │ │ │ │ │ │ ├── mode-objectivec.js │ │ │ │ │ │ │ │ │ ├── mode-ocaml.js │ │ │ │ │ │ │ │ │ ├── mode-pascal.js │ │ │ │ │ │ │ │ │ ├── mode-perl.js │ │ │ │ │ │ │ │ │ ├── mode-pgsql.js │ │ │ │ │ │ │ │ │ ├── mode-php.js │ │ │ │ │ │ │ │ │ ├── mode-plain_text.js │ │ │ │ │ │ │ │ │ ├── mode-powershell.js │ │ │ │ │ │ │ │ │ ├── mode-prolog.js │ │ │ │ │ │ │ │ │ ├── mode-properties.js │ │ │ │ │ │ │ │ │ ├── mode-protobuf.js │ │ │ │ │ │ │ │ │ ├── mode-python.js │ │ │ │ │ │ │ │ │ ├── mode-r.js │ │ │ │ │ │ │ │ │ ├── mode-rdoc.js │ │ │ │ │ │ │ │ │ ├── mode-rhtml.js │ │ │ │ │ │ │ │ │ ├── mode-ruby.js │ │ │ │ │ │ │ │ │ ├── mode-rust.js │ │ │ │ │ │ │ │ │ ├── mode-sass.js │ │ │ │ │ │ │ │ │ ├── mode-scad.js │ │ │ │ │ │ │ │ │ ├── mode-scala.js │ │ │ │ │ │ │ │ │ ├── mode-scheme.js │ │ │ │ │ │ │ │ │ ├── mode-scss.js │ │ │ │ │ │ │ │ │ ├── mode-sh.js │ │ │ │ │ │ │ │ │ ├── mode-sjs.js │ │ │ │ │ │ │ │ │ ├── mode-smarty.js │ │ │ │ │ │ │ │ │ ├── mode-snippets.js │ │ │ │ │ │ │ │ │ ├── mode-soy_template.js │ │ │ │ │ │ │ │ │ ├── mode-space.js │ │ │ │ │ │ │ │ │ ├── mode-sql.js │ │ │ │ │ │ │ │ │ ├── mode-stylus.js │ │ │ │ │ │ │ │ │ ├── mode-svg.js │ │ │ │ │ │ │ │ │ ├── mode-tcl.js │ │ │ │ │ │ │ │ │ ├── mode-tex.js │ │ │ │ │ │ │ │ │ ├── mode-text.js │ │ │ │ │ │ │ │ │ ├── mode-textile.js │ │ │ │ │ │ │ │ │ ├── mode-toml.js │ │ │ │ │ │ │ │ │ ├── mode-twig.js │ │ │ │ │ │ │ │ │ ├── mode-typescript.js │ │ │ │ │ │ │ │ │ ├── mode-vbscript.js │ │ │ │ │ │ │ │ │ ├── mode-velocity.js │ │ │ │ │ │ │ │ │ ├── mode-verilog.js │ │ │ │ │ │ │ │ │ ├── mode-vhdl.js │ │ │ │ │ │ │ │ │ ├── mode-xml.js │ │ │ │ │ │ │ │ │ ├── mode-xquery.js │ │ │ │ │ │ │ │ │ ├── mode-yaml.js │ │ │ │ │ │ │ │ │ ├── snippets │ │ │ │ │ │ │ │ │ ├── abap.js │ │ │ │ │ │ │ │ │ ├── actionscript.js │ │ │ │ │ │ │ │ │ ├── ada.js │ │ │ │ │ │ │ │ │ ├── apache_conf.js │ │ │ │ │ │ │ │ │ ├── asciidoc.js │ │ │ │ │ │ │ │ │ ├── assembly_x86.js │ │ │ │ │ │ │ │ │ ├── autohotkey.js │ │ │ │ │ │ │ │ │ ├── batchfile.js │ │ │ │ │ │ │ │ │ ├── c9search.js │ │ │ │ │ │ │ │ │ ├── c_cpp.js │ │ │ │ │ │ │ │ │ ├── cirru.js │ │ │ │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ │ │ │ ├── coffee.js │ │ │ │ │ │ │ │ │ ├── coldfusion.js │ │ │ │ │ │ │ │ │ ├── csharp.js │ │ │ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ │ │ │ ├── curly.js │ │ │ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ │ │ │ ├── dot.js │ │ │ │ │ │ │ │ │ ├── ejs.js │ │ │ │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ │ │ │ ├── ftl.js │ │ │ │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ │ │ │ ├── glsl.js │ │ │ │ │ │ │ │ │ ├── golang.js │ │ │ │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ │ │ │ ├── html_completions.js │ │ │ │ │ │ │ │ │ ├── html_ruby.js │ │ │ │ │ │ │ │ │ ├── ini.js │ │ │ │ │ │ │ │ │ ├── jack.js │ │ │ │ │ │ │ │ │ ├── jade.js │ │ │ │ │ │ │ │ │ ├── java.js │ │ │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ │ │ │ ├── jsoniq.js │ │ │ │ │ │ │ │ │ ├── jsp.js │ │ │ │ │ │ │ │ │ ├── jsx.js │ │ │ │ │ │ │ │ │ ├── julia.js │ │ │ │ │ │ │ │ │ ├── latex.js │ │ │ │ │ │ │ │ │ ├── less.js │ │ │ │ │ │ │ │ │ ├── liquid.js │ │ │ │ │ │ │ │ │ ├── lisp.js │ │ │ │ │ │ │ │ │ ├── livescript.js │ │ │ │ │ │ │ │ │ ├── logiql.js │ │ │ │ │ │ │ │ │ ├── lsl.js │ │ │ │ │ │ │ │ │ ├── lua.js │ │ │ │ │ │ │ │ │ ├── luapage.js │ │ │ │ │ │ │ │ │ ├── lucene.js │ │ │ │ │ │ │ │ │ ├── makefile.js │ │ │ │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ │ │ │ ├── matlab.js │ │ │ │ │ │ │ │ │ ├── mel.js │ │ │ │ │ │ │ │ │ ├── mushcode.js │ │ │ │ │ │ │ │ │ ├── mushcode_high_rules.js │ │ │ │ │ │ │ │ │ ├── mysql.js │ │ │ │ │ │ │ │ │ ├── nix.js │ │ │ │ │ │ │ │ │ ├── objectivec.js │ │ │ │ │ │ │ │ │ ├── ocaml.js │ │ │ │ │ │ │ │ │ ├── pascal.js │ │ │ │ │ │ │ │ │ ├── perl.js │ │ │ │ │ │ │ │ │ ├── pgsql.js │ │ │ │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ │ │ │ ├── plain_text.js │ │ │ │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ │ │ │ ├── prolog.js │ │ │ │ │ │ │ │ │ ├── properties.js │ │ │ │ │ │ │ │ │ ├── protobuf.js │ │ │ │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ │ │ │ ├── r.js │ │ │ │ │ │ │ │ │ ├── rdoc.js │ │ │ │ │ │ │ │ │ ├── rhtml.js │ │ │ │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ │ │ │ ├── sass.js │ │ │ │ │ │ │ │ │ ├── scad.js │ │ │ │ │ │ │ │ │ ├── scala.js │ │ │ │ │ │ │ │ │ ├── scheme.js │ │ │ │ │ │ │ │ │ ├── scss.js │ │ │ │ │ │ │ │ │ ├── sh.js │ │ │ │ │ │ │ │ │ ├── sjs.js │ │ │ │ │ │ │ │ │ ├── smarty.js │ │ │ │ │ │ │ │ │ ├── snippets.js │ │ │ │ │ │ │ │ │ ├── soy_template.js │ │ │ │ │ │ │ │ │ ├── space.js │ │ │ │ │ │ │ │ │ ├── sql.js │ │ │ │ │ │ │ │ │ ├── stylus.js │ │ │ │ │ │ │ │ │ ├── svg.js │ │ │ │ │ │ │ │ │ ├── tcl.js │ │ │ │ │ │ │ │ │ ├── tex.js │ │ │ │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ │ │ │ ├── textile.js │ │ │ │ │ │ │ │ │ ├── toml.js │ │ │ │ │ │ │ │ │ ├── twig.js │ │ │ │ │ │ │ │ │ ├── typescript.js │ │ │ │ │ │ │ │ │ ├── vbscript.js │ │ │ │ │ │ │ │ │ ├── velocity.js │ │ │ │ │ │ │ │ │ ├── verilog.js │ │ │ │ │ │ │ │ │ ├── vhdl.js │ │ │ │ │ │ │ │ │ ├── xml.js │ │ │ │ │ │ │ │ │ ├── xquery.js │ │ │ │ │ │ │ │ │ └── yaml.js │ │ │ │ │ │ │ │ │ ├── theme-ambiance.js │ │ │ │ │ │ │ │ │ ├── theme-chaos.js │ │ │ │ │ │ │ │ │ ├── theme-chrome.js │ │ │ │ │ │ │ │ │ ├── theme-clouds.js │ │ │ │ │ │ │ │ │ ├── theme-clouds_midnight.js │ │ │ │ │ │ │ │ │ ├── theme-cobalt.js │ │ │ │ │ │ │ │ │ ├── theme-crimson_editor.js │ │ │ │ │ │ │ │ │ ├── theme-dawn.js │ │ │ │ │ │ │ │ │ ├── theme-dreamweaver.js │ │ │ │ │ │ │ │ │ ├── theme-eclipse.js │ │ │ │ │ │ │ │ │ ├── theme-github.js │ │ │ │ │ │ │ │ │ ├── theme-idle_fingers.js │ │ │ │ │ │ │ │ │ ├── theme-katzenmilch.js │ │ │ │ │ │ │ │ │ ├── theme-kr.js │ │ │ │ │ │ │ │ │ ├── theme-kuroir.js │ │ │ │ │ │ │ │ │ ├── theme-merbivore.js │ │ │ │ │ │ │ │ │ ├── theme-merbivore_soft.js │ │ │ │ │ │ │ │ │ ├── theme-mono_industrial.js │ │ │ │ │ │ │ │ │ ├── theme-monokai.js │ │ │ │ │ │ │ │ │ ├── theme-pastel_on_dark.js │ │ │ │ │ │ │ │ │ ├── theme-solarized_dark.js │ │ │ │ │ │ │ │ │ ├── theme-solarized_light.js │ │ │ │ │ │ │ │ │ ├── theme-terminal.js │ │ │ │ │ │ │ │ │ ├── theme-textmate.js │ │ │ │ │ │ │ │ │ ├── theme-tomorrow.js │ │ │ │ │ │ │ │ │ ├── theme-tomorrow_night.js │ │ │ │ │ │ │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ │ │ │ │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ │ │ │ │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ │ │ │ │ │ │ ├── theme-twilight.js │ │ │ │ │ │ │ │ │ ├── theme-vibrant_ink.js │ │ │ │ │ │ │ │ │ ├── theme-xcode.js │ │ │ │ │ │ │ │ │ ├── worker-coffee.js │ │ │ │ │ │ │ │ │ ├── worker-css.js │ │ │ │ │ │ │ │ │ ├── worker-html.js │ │ │ │ │ │ │ │ │ ├── worker-javascript.js │ │ │ │ │ │ │ │ │ ├── worker-json.js │ │ │ │ │ │ │ │ │ ├── worker-lua.js │ │ │ │ │ │ │ │ │ ├── worker-php.js │ │ │ │ │ │ │ │ │ └── worker-xquery.js │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ │ │ └── settings.html │ │ │ │ │ │ │ └── twigextensions │ │ │ │ │ │ │ │ └── AceFreelyTwigExtension.php │ │ │ │ │ │ ├── amcommand │ │ │ │ │ │ │ ├── AmCommandPlugin.php │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ └── AmCommand_CommandsController.php │ │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ │ └── m170614_141800_amCommand_defaultElementTypeSettings.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ └── AmCommandModel.php │ │ │ │ │ │ │ ├── releases.json │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ ├── Command Classic.css │ │ │ │ │ │ │ │ │ ├── Command Craft.css │ │ │ │ │ │ │ │ │ ├── Command Dark.css │ │ │ │ │ │ │ │ │ └── Command.css │ │ │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── AmCommand.js │ │ │ │ │ │ │ │ │ ├── AmCommand.min.js │ │ │ │ │ │ │ │ │ └── fuzzysort.min.js │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── AmCommandService.php │ │ │ │ │ │ │ │ ├── AmCommand_ElementsService.php │ │ │ │ │ │ │ │ ├── AmCommand_EntriesService.php │ │ │ │ │ │ │ │ ├── AmCommand_GlobalsService.php │ │ │ │ │ │ │ │ ├── AmCommand_PluginsService.php │ │ │ │ │ │ │ │ ├── AmCommand_SearchService.php │ │ │ │ │ │ │ │ ├── AmCommand_SettingsService.php │ │ │ │ │ │ │ │ ├── AmCommand_TasksService.php │ │ │ │ │ │ │ │ ├── AmCommand_ToolsService.php │ │ │ │ │ │ │ │ └── AmCommand_UsersService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _commands │ │ │ │ │ │ │ │ │ ├── compareEntryVersion.twig │ │ │ │ │ │ │ │ │ └── overviewDetailSectionGenerator.twig │ │ │ │ │ │ │ │ ├── palette.twig │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ │ └── translations │ │ │ │ │ │ │ │ └── nl.php │ │ │ │ │ │ ├── amnav │ │ │ │ │ │ │ ├── AmNavPlugin.php │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ ├── AmNavController.php │ │ │ │ │ │ │ │ └── AmNav_NodesController.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ ├── AmNav_NavigationFieldType.php │ │ │ │ │ │ │ │ └── AmNav_NavigationPositionFieldType.php │ │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ │ ├── m150212_145000_AmNav_renamePagesToNodes.php │ │ │ │ │ │ │ │ ├── m150217_112800_AmNav_expandPageData.php │ │ │ │ │ │ │ │ ├── m150403_093000_AmNav_nodesWithElements.php │ │ │ │ │ │ │ │ └── m150512_105600_AmNav_addOptionalClass.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── AmNav_NavigationModel.php │ │ │ │ │ │ │ │ └── AmNav_NodeModel.php │ │ │ │ │ │ │ ├── records │ │ │ │ │ │ │ │ ├── AmNav_NavigationRecord.php │ │ │ │ │ │ │ │ └── AmNav_NodeRecord.php │ │ │ │ │ │ │ ├── releases.json │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ ├── AmNav.css │ │ │ │ │ │ │ │ │ └── NavigationPosition.css │ │ │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ │ └── blank.png │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── AmNav.js │ │ │ │ │ │ │ │ │ ├── AmNav.min.js │ │ │ │ │ │ │ │ │ ├── NavigationPosition.js │ │ │ │ │ │ │ │ │ └── NavigationPosition.min.js │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── AmNavService.php │ │ │ │ │ │ │ │ └── AmNav_NodeService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _build.twig │ │ │ │ │ │ │ │ ├── _build │ │ │ │ │ │ │ │ │ ├── editor.twig │ │ │ │ │ │ │ │ │ └── parent.twig │ │ │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ │ │ ├── _includes │ │ │ │ │ │ │ │ │ └── node.twig │ │ │ │ │ │ │ │ ├── _index.twig │ │ │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ │ │ └── input.twig │ │ │ │ │ │ │ │ ├── navigationposition │ │ │ │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ │ ├── translations │ │ │ │ │ │ │ │ └── nl.php │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── AmNavVariable.php │ │ │ │ │ │ ├── cachebuster │ │ │ │ │ │ │ ├── CacheBusterPlugin.php │ │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── CacheBusterService.php │ │ │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ │ │ └── CacheBusterTwigExtension.php │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── CacheBusterVariable.php │ │ │ │ │ │ ├── cookies │ │ │ │ │ │ │ ├── CookiesPlugin.php │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── releases.json │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ └── icon.svg │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── Cookies_UtilsService.php │ │ │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ │ │ └── CookiesTwigExtension.php │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── CookiesVariable.php │ │ │ │ │ │ ├── cpfieldlinks │ │ │ │ │ │ │ ├── CpFieldLinksPlugin.php │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ ├── javascripts │ │ │ │ │ │ │ │ └── CpFieldLinks-f67305e6b68309713390.js │ │ │ │ │ │ │ │ ├── rev-manifest.json │ │ │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ │ │ └── CpFieldLinks-89aff73de7.css │ │ │ │ │ │ ├── cpsortcols │ │ │ │ │ │ │ ├── CpSortColsPlugin.php │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ ├── cpsortcols.js │ │ │ │ │ │ │ │ └── icon.svg │ │ │ │ │ │ ├── doxter │ │ │ │ │ │ │ ├── DoxterPlugin.php │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── DoxterBaseParser.php │ │ │ │ │ │ │ │ ├── DoxterCodeBlockParser.php │ │ │ │ │ │ │ │ ├── DoxterHeaderParser.php │ │ │ │ │ │ │ │ ├── DoxterMarkdownParser.php │ │ │ │ │ │ │ │ ├── DoxterReferenceTagParser.php │ │ │ │ │ │ │ │ ├── DoxterShortcodeParser.php │ │ │ │ │ │ │ │ ├── parsedown │ │ │ │ │ │ │ │ │ ├── Parsedown.php │ │ │ │ │ │ │ │ │ ├── ParsedownExtra.php │ │ │ │ │ │ │ │ │ └── Typography.php │ │ │ │ │ │ │ │ └── shortcodes │ │ │ │ │ │ │ │ │ └── DoxterShortcodes.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ └── DoxterFieldType.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── DoxterModel.php │ │ │ │ │ │ │ │ └── DoxterShortcodeModel.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ └── doxter.css │ │ │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ │ ├── doxter.png │ │ │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ │ │ └── syntax.png │ │ │ │ │ │ │ │ │ ├── osilogo.png │ │ │ │ │ │ │ │ │ ├── settings.png │ │ │ │ │ │ │ │ │ └── syntax.png │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── ace.js │ │ │ │ │ │ │ │ │ ├── behave.js │ │ │ │ │ │ │ │ │ ├── doxter.js │ │ │ │ │ │ │ │ │ └── fitvids.js │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── DoxterService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ │ └── doxter │ │ │ │ │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ │ │ │ │ └── settings.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── settings.html │ │ │ │ │ │ │ │ └── shortcodes │ │ │ │ │ │ │ │ │ ├── _audio.html │ │ │ │ │ │ │ │ │ ├── _image.html │ │ │ │ │ │ │ │ │ ├── _updates.html │ │ │ │ │ │ │ │ │ └── _video.html │ │ │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ │ │ └── DoxterTwigExtension.php │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── DoxterVariable.php │ │ │ │ │ │ ├── focalpointfield │ │ │ │ │ │ │ ├── FocalPointFieldPlugin.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ └── FocalPointField_FocalPointFieldType.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ └── focalpoint.css │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── focalpoint.js │ │ │ │ │ │ │ │ │ └── jquery.waitforimages.min.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ ├── fruitlinkit │ │ │ │ │ │ │ ├── FruitLinkItPlugin.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ └── FruitLinkItFieldType.php │ │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ │ └── m160208_010101_FruitLinkIt_UpdateExistingLinkItFields.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── FruitLinkIt_LinkModel.php │ │ │ │ │ │ │ │ └── FruitLinkIt_LinkSettingsModel.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ └── linkit.css │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ └── FruitLinkIt.js │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── FruitLinkItService.php │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── _fieldtype │ │ │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ │ │ └── settings.html │ │ │ │ │ │ ├── gitplugins │ │ │ │ │ │ │ ├── GitPluginsPlugin.php │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ └── GitPlugins_GetController.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ └── icon.svg │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── GitPlugins_GetService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ └── GitPluginsWidget.html │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ └── GitPlugins_GitWidget.php │ │ │ │ │ │ ├── imager │ │ │ │ │ │ │ ├── ImagerPlugin.php │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ └── ImagerController.php │ │ │ │ │ │ │ ├── elementactions │ │ │ │ │ │ │ │ └── Imager_ClearTransformsElementAction.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── Imager_ConfigModel.php │ │ │ │ │ │ │ │ ├── Imager_ImageModel.php │ │ │ │ │ │ │ │ ├── Imager_ImagePathsModel.php │ │ │ │ │ │ │ │ └── Imager_ImgixModel.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ │ │ └── icon.svg │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── ImagerService.php │ │ │ │ │ │ │ │ ├── Imager_AwsService.php │ │ │ │ │ │ │ │ ├── Imager_ColorService.php │ │ │ │ │ │ │ │ ├── Imager_GcsService.php │ │ │ │ │ │ │ │ └── Imager_ImgixService.php │ │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ │ ├── Imager_GifsicleTask.php │ │ │ │ │ │ │ │ ├── Imager_JpegoptimTask.php │ │ │ │ │ │ │ │ ├── Imager_JpegtranTask.php │ │ │ │ │ │ │ │ ├── Imager_MozjpegTask.php │ │ │ │ │ │ │ │ ├── Imager_OptipngTask.php │ │ │ │ │ │ │ │ ├── Imager_PngquantTask.php │ │ │ │ │ │ │ │ └── Imager_TinyPngTask.php │ │ │ │ │ │ │ ├── variables │ │ │ │ │ │ │ │ └── ImagerVariable.php │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ │ │ ├── composer │ │ │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ │ │ ├── autoload_files.php │ │ │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ │ │ │ └── installed.json │ │ │ │ │ │ │ │ ├── imgix │ │ │ │ │ │ │ │ └── imgix-php │ │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ │ ├── Imgix │ │ │ │ │ │ │ │ │ │ ├── ShardStrategy.php │ │ │ │ │ │ │ │ │ │ ├── UrlBuilder.php │ │ │ │ │ │ │ │ │ │ └── UrlHelper.php │ │ │ │ │ │ │ │ │ └── autoload.php │ │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ │ └── Imgix │ │ │ │ │ │ │ │ │ └── Tests │ │ │ │ │ │ │ │ │ ├── UrlBuilderTest.php │ │ │ │ │ │ │ │ │ └── UrlHelperTest.php │ │ │ │ │ │ │ │ ├── ksubileau │ │ │ │ │ │ │ │ └── color-thief-php │ │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ └── ColorThief │ │ │ │ │ │ │ │ │ ├── CMap.php │ │ │ │ │ │ │ │ │ ├── ColorThief.php │ │ │ │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ │ │ │ ├── GDImageAdapter.php │ │ │ │ │ │ │ │ │ │ ├── GmagickImageAdapter.php │ │ │ │ │ │ │ │ │ │ ├── IImageAdapter.php │ │ │ │ │ │ │ │ │ │ ├── ImageAdapter.php │ │ │ │ │ │ │ │ │ │ └── ImagickImageAdapter.php │ │ │ │ │ │ │ │ │ └── ImageLoader.php │ │ │ │ │ │ │ │ │ ├── PQueue.php │ │ │ │ │ │ │ │ │ └── VBox.php │ │ │ │ │ │ │ │ └── tinify │ │ │ │ │ │ │ │ └── tinify │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── Tinify.php │ │ │ │ │ │ │ │ ├── Tinify │ │ │ │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ │ │ │ ├── Result.php │ │ │ │ │ │ │ │ │ ├── ResultMeta.php │ │ │ │ │ │ │ │ │ └── Source.php │ │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ │ └── cacert.pem │ │ │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ ├── TinifyClientTest.php │ │ │ │ │ │ │ │ ├── TinifyResultMetaTest.php │ │ │ │ │ │ │ │ ├── TinifyResultTest.php │ │ │ │ │ │ │ │ ├── TinifySourceTest.php │ │ │ │ │ │ │ │ ├── TinifyTest.php │ │ │ │ │ │ │ │ ├── curl_mock.php │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ ├── dummy.png │ │ │ │ │ │ │ │ │ └── voormedia.png │ │ │ │ │ │ │ │ ├── helper.php │ │ │ │ │ │ │ │ └── integration.php │ │ │ │ │ │ │ │ └── update-cacert.sh │ │ │ │ │ │ ├── kint │ │ │ │ │ │ │ ├── KintPlugin.php │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ └── screenshots │ │ │ │ │ │ │ │ │ └── screenshot.png │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── KintService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ └── settings.html │ │ │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ │ │ └── KintTwigExtension.php │ │ │ │ │ │ │ ├── variables │ │ │ │ │ │ │ │ └── KintVariable.php │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ │ │ ├── composer │ │ │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ │ │ ├── autoload_files.php │ │ │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ │ │ └── installed.json │ │ │ │ │ │ │ │ └── raveren │ │ │ │ │ │ │ │ └── kint │ │ │ │ │ │ │ │ ├── Kint.class.php │ │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ ├── config.default.php │ │ │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ │ │ ├── decorators │ │ │ │ │ │ │ │ ├── plain.php │ │ │ │ │ │ │ │ └── rich.php │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ └── overview.php │ │ │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ │ ├── kintObject.class.php │ │ │ │ │ │ │ │ ├── kintParser.class.php │ │ │ │ │ │ │ │ └── kintVariableData.class.php │ │ │ │ │ │ │ │ ├── parsers │ │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ │ │ ├── classmethods.php │ │ │ │ │ │ │ │ │ ├── classstatics.php │ │ │ │ │ │ │ │ │ ├── color.php │ │ │ │ │ │ │ │ │ ├── fspath.php │ │ │ │ │ │ │ │ │ ├── json.php │ │ │ │ │ │ │ │ │ ├── microtime.php │ │ │ │ │ │ │ │ │ ├── objectiterateable.php │ │ │ │ │ │ │ │ │ ├── splobjectstorage.php │ │ │ │ │ │ │ │ │ ├── timestamp.php │ │ │ │ │ │ │ │ │ └── xml.php │ │ │ │ │ │ │ │ └── objects │ │ │ │ │ │ │ │ │ ├── closure.php │ │ │ │ │ │ │ │ │ ├── smarty.php │ │ │ │ │ │ │ │ │ └── splfileinfo.php │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ │ ├── base.less │ │ │ │ │ │ │ │ ├── compiled │ │ │ │ │ │ │ │ ├── aante-light.css │ │ │ │ │ │ │ │ ├── kint.js │ │ │ │ │ │ │ │ ├── original.css │ │ │ │ │ │ │ │ ├── solarized-dark.css │ │ │ │ │ │ │ │ └── solarized.css │ │ │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ │ ├── aante-light.less │ │ │ │ │ │ │ │ ├── original.less │ │ │ │ │ │ │ │ ├── solarized-dark.less │ │ │ │ │ │ │ │ └── solarized.less │ │ │ │ │ │ ├── lj_dynamicfields │ │ │ │ │ │ │ ├── Lj_DynamicFieldsPlugin.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ ├── Lj_DynamicFields_CheckboxesFieldType.php │ │ │ │ │ │ │ │ ├── Lj_DynamicFields_DropdownFieldType.php │ │ │ │ │ │ │ │ ├── Lj_DynamicFields_MultiSelectFieldType.php │ │ │ │ │ │ │ │ └── Lj_DynamicFields_RadioButtonsFieldType.php │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ │ ├── checkboxes.html │ │ │ │ │ │ │ │ ├── dropdown.html │ │ │ │ │ │ │ │ ├── multiselect.html │ │ │ │ │ │ │ │ └── radiobuttons.html │ │ │ │ │ │ ├── migrationmanager │ │ │ │ │ │ │ ├── MigrationManagerPlugin.php │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ ├── MigrationManager_MigrateCategoryElementAction.php │ │ │ │ │ │ │ │ ├── MigrationManager_MigrateEntryElementAction.php │ │ │ │ │ │ │ │ └── MigrationManager_MigrateUserElementAction.php │ │ │ │ │ │ │ ├── consolecommands │ │ │ │ │ │ │ │ └── MigrationManagerCommand.php │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ ├── MigrationManagerController.php │ │ │ │ │ │ │ │ └── MigrationManager_RunController.php │ │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ │ └── MigrationManagerHelper.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── MigrationManagerExport.js │ │ │ │ │ │ │ │ │ ├── MigrationManagerGlobalsExport.js │ │ │ │ │ │ │ │ │ ├── MigrationManagerRunner.js │ │ │ │ │ │ │ │ │ └── MigrationManagerSideBar.js │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── MigrationManager_AssetSourcesService.php │ │ │ │ │ │ │ │ ├── MigrationManager_AssetTransformsService.php │ │ │ │ │ │ │ │ ├── MigrationManager_BaseContentMigrationService.php │ │ │ │ │ │ │ │ ├── MigrationManager_BaseMigrationService.php │ │ │ │ │ │ │ │ ├── MigrationManager_CategoriesContentService.php │ │ │ │ │ │ │ │ ├── MigrationManager_CategoriesService.php │ │ │ │ │ │ │ │ ├── MigrationManager_EmailMessagesService.php │ │ │ │ │ │ │ │ ├── MigrationManager_EntriesContentService.php │ │ │ │ │ │ │ │ ├── MigrationManager_FieldsService.php │ │ │ │ │ │ │ │ ├── MigrationManager_GlobalsContentService.php │ │ │ │ │ │ │ │ ├── MigrationManager_GlobalsService.php │ │ │ │ │ │ │ │ ├── MigrationManager_IMigrationService.php │ │ │ │ │ │ │ │ ├── MigrationManager_LocalesService.php │ │ │ │ │ │ │ │ ├── MigrationManager_MigrationsService.php │ │ │ │ │ │ │ │ ├── MigrationManager_RoutesService.php │ │ │ │ │ │ │ │ ├── MigrationManager_SectionsService.php │ │ │ │ │ │ │ │ ├── MigrationManager_TagsService.php │ │ │ │ │ │ │ │ ├── MigrationManager_UserGroupsService.php │ │ │ │ │ │ │ │ └── MigrationManager_UsersContentService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _layouts │ │ │ │ │ │ │ │ │ └── cp.twig │ │ │ │ │ │ │ │ ├── _migration.twig │ │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ │ └── run.twig │ │ │ │ │ │ │ │ ├── applied.twig │ │ │ │ │ │ │ │ ├── create.twig │ │ │ │ │ │ │ │ ├── log.twig │ │ │ │ │ │ │ │ ├── pending.twig │ │ │ │ │ │ │ │ └── types │ │ │ │ │ │ │ │ │ ├── assetSources.twig │ │ │ │ │ │ │ │ │ ├── categories.twig │ │ │ │ │ │ │ │ │ ├── fields.twig │ │ │ │ │ │ │ │ │ ├── globals.twig │ │ │ │ │ │ │ │ │ ├── imageTransforms.twig │ │ │ │ │ │ │ │ │ ├── locales.twig │ │ │ │ │ │ │ │ │ ├── other.twig │ │ │ │ │ │ │ │ │ ├── sections.twig │ │ │ │ │ │ │ │ │ ├── tags.twig │ │ │ │ │ │ │ │ │ └── userGroups.twig │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── MigrationManagerVariable.php │ │ │ │ │ │ ├── mntwigperversion │ │ │ │ │ │ │ ├── MnTwigPerversionPlugin.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ └── icon.svg │ │ │ │ │ │ │ └── twigextensions │ │ │ │ │ │ │ │ ├── MnTwigPerversionTwigExtension.php │ │ │ │ │ │ │ │ ├── MnTwigPerversion_Break_Node.php │ │ │ │ │ │ │ │ ├── MnTwigPerversion_Break_TokenParser.php │ │ │ │ │ │ │ │ ├── MnTwigPerversion_Continue_Node.php │ │ │ │ │ │ │ │ ├── MnTwigPerversion_Continue_TokenParser.php │ │ │ │ │ │ │ │ ├── MnTwigPerversion_Return_Node.php │ │ │ │ │ │ │ │ ├── MnTwigPerversion_Return_TokenParser.php │ │ │ │ │ │ │ │ └── NumericTest.php │ │ │ │ │ │ ├── neo │ │ │ │ │ │ │ ├── NeoPlugin.php │ │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ └── NeoController.php │ │ │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ │ │ └── Neo_BlockElementType.php │ │ │ │ │ │ │ ├── enums │ │ │ │ │ │ │ │ └── Neo_ElementType.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ └── NeoFieldType.php │ │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ │ ├── m160428_202308_Neo_UpdateBlockLevels.php │ │ │ │ │ │ │ │ ├── m160515_005002_Neo_UpdateBlockStructure.php │ │ │ │ │ │ │ │ ├── m160605_191540_Neo_UpdateBlockStructureLocales.php │ │ │ │ │ │ │ │ └── m161029_230849_Neo_AddMaxChildBlocksSetting.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── Neo_BlockModel.php │ │ │ │ │ │ │ │ ├── Neo_BlockTypeModel.php │ │ │ │ │ │ │ │ ├── Neo_CriteriaModel.php │ │ │ │ │ │ │ │ ├── Neo_GroupModel.php │ │ │ │ │ │ │ │ └── Neo_SettingsModel.php │ │ │ │ │ │ │ ├── records │ │ │ │ │ │ │ │ ├── Neo_BlockRecord.php │ │ │ │ │ │ │ │ ├── Neo_BlockStructureRecord.php │ │ │ │ │ │ │ │ ├── Neo_BlockTypeRecord.php │ │ │ │ │ │ │ │ └── Neo_GroupRecord.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── converter.js │ │ │ │ │ │ │ │ ├── converter.js.map │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── main.js.map │ │ │ │ │ │ │ │ ├── polyfill.js │ │ │ │ │ │ │ │ └── polyfill.js.map │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── NeoService.php │ │ │ │ │ │ │ │ ├── Neo_ReasonsService.php │ │ │ │ │ │ │ │ └── Neo_RelabelService.php │ │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ │ └── Neo_GetSearchKeywordsTask.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ └── _fieldtype │ │ │ │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ │ ├── translations │ │ │ │ │ │ │ │ └── de.php │ │ │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ │ │ └── NeoTwigExtension.php │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── NeoVariable.php │ │ │ │ │ │ ├── seomatic │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── DOCS.md │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── SeomaticPlugin.php │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ └── SeomaticController.php │ │ │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ │ │ └── Seomatic_MetaElementType.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ └── Seomatic_MetaFieldType.php │ │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ │ ├── m151225_000000_seomatic_addHumansField.php │ │ │ │ │ │ │ │ ├── m151226_000000_seomatic_addTwitterFacebookFields.php │ │ │ │ │ │ │ │ ├── m160101_000000_seomatic_addRobotsFields.php │ │ │ │ │ │ │ │ ├── m160111_000000_seomatic_addTitleFields.php │ │ │ │ │ │ │ │ ├── m160122_000000_seomatic_addTypeFields.php │ │ │ │ │ │ │ │ ├── m160123_000000_seomatic_addOpeningHours.php │ │ │ │ │ │ │ │ ├── m160202_000000_seomatic_addSocialHandles.php │ │ │ │ │ │ │ │ ├── m160204_000000_seomatic_addGoogleAnalytics.php │ │ │ │ │ │ │ │ ├── m160205_000000_seomatic_addResturantMenu.php │ │ │ │ │ │ │ │ ├── m160206_000000_seomatic_addGoogleAnalyticsPlugins.php │ │ │ │ │ │ │ │ ├── m160206_000000_seomatic_addGoogleAnalyticsSendPageView.php │ │ │ │ │ │ │ │ ├── m160209_000000_seomatic_alterDescriptionsColumns.php │ │ │ │ │ │ │ │ ├── m160209_000001_seomatic_addRobotsTxt.php │ │ │ │ │ │ │ │ ├── m160227_000000_seomatic_addFacebookAppId.php │ │ │ │ │ │ │ │ ├── m160416_000000_seomatic_addContactPoints.php │ │ │ │ │ │ │ │ ├── m160509_000000_seomatic_addSiteLinksBing.php │ │ │ │ │ │ │ │ ├── m160707_000000_seomatic_addGoogleTagManager.php │ │ │ │ │ │ │ │ ├── m160715_000000_seomatic_addSeoImageTransforms.php │ │ │ │ │ │ │ │ ├── m160723_000000_seomatic_addSeoMainEntityOfPage.php │ │ │ │ │ │ │ │ ├── m160724_000000_seomatic_addSeoMainEntityCategory.php │ │ │ │ │ │ │ │ ├── m160811_000000_seomatic_addVimeo.php │ │ │ │ │ │ │ │ ├── m160904_000000_seomatic_addTwitterFacebookImages.php │ │ │ │ │ │ │ │ ├── m161220_000000_seomatic_addPriceRange.php │ │ │ │ │ │ │ │ ├── m170212_000000_seomatic_addGoogleAnalyticsAnonymizeIp.php │ │ │ │ │ │ │ │ └── m170212_000000_seomatic_addWikipedia.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── Seomatic_CreatorModel.php │ │ │ │ │ │ │ │ ├── Seomatic_IdentityModel.php │ │ │ │ │ │ │ │ ├── Seomatic_MetaFieldModel.php │ │ │ │ │ │ │ │ ├── Seomatic_MetaModel.php │ │ │ │ │ │ │ │ ├── Seomatic_SettingsModel.php │ │ │ │ │ │ │ │ ├── Seomatic_SiteMetaModel.php │ │ │ │ │ │ │ │ └── Seomatic_SocialModel.php │ │ │ │ │ │ │ ├── records │ │ │ │ │ │ │ │ ├── Seomatic_MetaRecord.php │ │ │ │ │ │ │ │ └── Seomatic_SettingsRecord.php │ │ │ │ │ │ │ ├── releases.json │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ ├── bootstrap-tokenfield.css │ │ │ │ │ │ │ │ │ ├── css-reset.css │ │ │ │ │ │ │ │ │ ├── field.css │ │ │ │ │ │ │ │ │ ├── prism.min.css │ │ │ │ │ │ │ │ │ ├── seo-metrics-style.css │ │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ ├── humanstxt-isolated-blank.gif │ │ │ │ │ │ │ │ │ ├── missing_image.png │ │ │ │ │ │ │ │ │ ├── no_image_set.png │ │ │ │ │ │ │ │ │ ├── seo_meta.svg │ │ │ │ │ │ │ │ │ ├── seo_site.svg │ │ │ │ │ │ │ │ │ ├── seometrics_badge.png │ │ │ │ │ │ │ │ │ ├── site_creator.svg │ │ │ │ │ │ │ │ │ ├── site_identity.svg │ │ │ │ │ │ │ │ │ └── social_media.svg │ │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ │ │ ├── bootstrap-tokenfield.min.js │ │ │ │ │ │ │ │ │ ├── creator.js │ │ │ │ │ │ │ │ │ ├── field.js │ │ │ │ │ │ │ │ │ ├── field_settings.js │ │ │ │ │ │ │ │ │ ├── identity.js │ │ │ │ │ │ │ │ │ ├── jquery-2.2.4.min.js │ │ │ │ │ │ │ │ │ ├── jquery-2.2.4.min.map │ │ │ │ │ │ │ │ │ ├── jquery.bpopup.min.js │ │ │ │ │ │ │ │ │ ├── main_entity_type_list.js │ │ │ │ │ │ │ │ │ ├── meta.js │ │ │ │ │ │ │ │ │ ├── metalist.js │ │ │ │ │ │ │ │ │ ├── prism.min.js │ │ │ │ │ │ │ │ │ ├── seomatic.js │ │ │ │ │ │ │ │ │ ├── site.js │ │ │ │ │ │ │ │ │ └── type_list.js │ │ │ │ │ │ │ │ └── screenshots │ │ │ │ │ │ │ │ │ ├── seomatic01.png │ │ │ │ │ │ │ │ │ ├── seomatic02.png │ │ │ │ │ │ │ │ │ ├── seomatic03.png │ │ │ │ │ │ │ │ │ ├── seomatic04.png │ │ │ │ │ │ │ │ │ ├── seomatic05.png │ │ │ │ │ │ │ │ │ ├── seomatic06.png │ │ │ │ │ │ │ │ │ ├── seomatic07.png │ │ │ │ │ │ │ │ │ └── seomatic08.png │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── SeomaticService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _error.twig │ │ │ │ │ │ │ │ ├── _facebookDisplayPreview.twig │ │ │ │ │ │ │ │ ├── _googleAnalytics.twig │ │ │ │ │ │ │ │ ├── _googleDisplayPreview.twig │ │ │ │ │ │ │ │ ├── _googleTagManager.twig │ │ │ │ │ │ │ │ ├── _humans.twig │ │ │ │ │ │ │ │ ├── _humansDefault.twig │ │ │ │ │ │ │ │ ├── _humansPreview.twig │ │ │ │ │ │ │ │ ├── _preview_display_modal.twig │ │ │ │ │ │ │ │ ├── _preview_humans_modal.twig │ │ │ │ │ │ │ │ ├── _preview_robots_modal.twig │ │ │ │ │ │ │ │ ├── _preview_tags_modal.twig │ │ │ │ │ │ │ │ ├── _robots.twig │ │ │ │ │ │ │ │ ├── _robotsDefault.twig │ │ │ │ │ │ │ │ ├── _robotsPreview.twig │ │ │ │ │ │ │ │ ├── _seo_meta.twig │ │ │ │ │ │ │ │ ├── _seo_metaPreview.twig │ │ │ │ │ │ │ │ ├── _seo_metrics.twig │ │ │ │ │ │ │ │ ├── _seo_metrics_floater.twig │ │ │ │ │ │ │ │ ├── _seomatic_tabs.twig │ │ │ │ │ │ │ │ ├── _twitterCardDisplayPreview.twig │ │ │ │ │ │ │ │ ├── creator │ │ │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ │ │ ├── field.twig │ │ │ │ │ │ │ │ ├── field_settings.twig │ │ │ │ │ │ │ │ ├── identity │ │ │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ │ │ ├── index.twig │ │ │ │ │ │ │ │ ├── json-ld │ │ │ │ │ │ │ │ │ ├── _json-ld.twig │ │ │ │ │ │ │ │ │ └── _json-ld_core.twig │ │ │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ │ │ │ ├── _main.twig │ │ │ │ │ │ │ │ │ ├── _sidebar.twig │ │ │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ │ │ │ ├── seometrics.twig │ │ │ │ │ │ │ │ ├── settings.twig │ │ │ │ │ │ │ │ ├── site │ │ │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ │ │ ├── social │ │ │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ │ │ └── welcome.twig │ │ │ │ │ │ │ ├── translations │ │ │ │ │ │ │ │ ├── fr.php │ │ │ │ │ │ │ │ └── nl.php │ │ │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ │ │ └── SeomaticTwigExtension.php │ │ │ │ │ │ │ ├── variables │ │ │ │ │ │ │ │ └── SeomaticVariable.php │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ │ │ ├── composer │ │ │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ │ │ │ └── installed.json │ │ │ │ │ │ │ │ ├── crodas │ │ │ │ │ │ │ │ ├── languagedetector │ │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ │ │ ├── classify.php │ │ │ │ │ │ │ │ │ │ ├── datafile.json │ │ │ │ │ │ │ │ │ │ ├── datafile.php │ │ │ │ │ │ │ │ │ │ ├── datafile.ses │ │ │ │ │ │ │ │ │ │ ├── learn.php │ │ │ │ │ │ │ │ │ │ └── samples │ │ │ │ │ │ │ │ │ │ │ ├── albanian │ │ │ │ │ │ │ │ │ │ │ ├── arabic │ │ │ │ │ │ │ │ │ │ │ ├── catalan │ │ │ │ │ │ │ │ │ │ │ ├── danish │ │ │ │ │ │ │ │ │ │ │ ├── dutch │ │ │ │ │ │ │ │ │ │ │ ├── english │ │ │ │ │ │ │ │ │ │ │ ├── esperanto │ │ │ │ │ │ │ │ │ │ │ ├── estonian │ │ │ │ │ │ │ │ │ │ │ ├── euskara │ │ │ │ │ │ │ │ │ │ │ ├── finnish │ │ │ │ │ │ │ │ │ │ │ ├── french │ │ │ │ │ │ │ │ │ │ │ ├── german │ │ │ │ │ │ │ │ │ │ │ ├── guarani │ │ │ │ │ │ │ │ │ │ │ ├── hebrew │ │ │ │ │ │ │ │ │ │ │ ├── irish │ │ │ │ │ │ │ │ │ │ │ ├── italian │ │ │ │ │ │ │ │ │ │ │ ├── ladino │ │ │ │ │ │ │ │ │ │ │ ├── latin │ │ │ │ │ │ │ │ │ │ │ ├── norwegian │ │ │ │ │ │ │ │ │ │ │ ├── portuguese │ │ │ │ │ │ │ │ │ │ │ ├── romanian │ │ │ │ │ │ │ │ │ │ │ ├── spanish │ │ │ │ │ │ │ │ │ │ │ ├── swedish │ │ │ │ │ │ │ │ │ │ │ └── welsh │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── LanguageDetector │ │ │ │ │ │ │ │ │ │ │ ├── AbstractFormat.php │ │ │ │ │ │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ │ │ │ │ │ ├── Detect.php │ │ │ │ │ │ │ │ │ │ │ ├── Distance │ │ │ │ │ │ │ │ │ │ │ └── OutOfPlace.php │ │ │ │ │ │ │ │ │ │ │ ├── DistanceInterface.php │ │ │ │ │ │ │ │ │ │ │ ├── Format │ │ │ │ │ │ │ │ │ │ │ ├── AbstractFileFormat.php │ │ │ │ │ │ │ │ │ │ │ ├── JSON.php │ │ │ │ │ │ │ │ │ │ │ ├── PHP.php │ │ │ │ │ │ │ │ │ │ │ └── SES.php │ │ │ │ │ │ │ │ │ │ │ ├── Learn.php │ │ │ │ │ │ │ │ │ │ │ ├── NGramParser.php │ │ │ │ │ │ │ │ │ │ │ ├── Sort │ │ │ │ │ │ │ │ │ │ │ ├── PageRank.php │ │ │ │ │ │ │ │ │ │ │ ├── SortInterface.php │ │ │ │ │ │ │ │ │ │ │ └── Sum.php │ │ │ │ │ │ │ │ │ │ │ └── autoload.php │ │ │ │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ │ │ ├── AssertTest.php │ │ │ │ │ │ │ │ │ │ ├── assert │ │ │ │ │ │ │ │ │ │ ├── arabic │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ │ │ ├── catalan │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ │ │ ├── 4.txt │ │ │ │ │ │ │ │ │ │ │ └── 5.txt │ │ │ │ │ │ │ │ │ │ ├── dutch │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ │ │ ├── english │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ │ │ ├── 4.txt │ │ │ │ │ │ │ │ │ │ │ ├── 5.txt │ │ │ │ │ │ │ │ │ │ │ ├── 6.txt │ │ │ │ │ │ │ │ │ │ │ └── 7.txt │ │ │ │ │ │ │ │ │ │ ├── esperanto │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ └── 3.txt │ │ │ │ │ │ │ │ │ │ ├── euskara │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ │ │ ├── finnish │ │ │ │ │ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ │ │ │ │ │ ├── french │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ │ │ └── 4.txt │ │ │ │ │ │ │ │ │ │ ├── german │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ │ │ ├── 4.txt │ │ │ │ │ │ │ │ │ │ │ ├── 5.txt │ │ │ │ │ │ │ │ │ │ │ ├── 6.txt │ │ │ │ │ │ │ │ │ │ │ └── 7.txt │ │ │ │ │ │ │ │ │ │ ├── hebrew │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ │ │ ├── italian │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ └── 3.txt │ │ │ │ │ │ │ │ │ │ ├── ladino │ │ │ │ │ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ │ │ │ │ │ ├── latin │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ │ │ └── 4.txt │ │ │ │ │ │ │ │ │ │ ├── portuguese │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ │ │ └── 4.txt │ │ │ │ │ │ │ │ │ │ └── spanish │ │ │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ │ │ └── 3.txt │ │ │ │ │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ │ │ │ └── text-rank │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── TextRank │ │ │ │ │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ │ │ │ │ ├── DefaultEvents.php │ │ │ │ │ │ │ │ │ │ ├── POS │ │ │ │ │ │ │ │ │ │ └── English │ │ │ │ │ │ │ │ │ │ │ ├── Tagger.php │ │ │ │ │ │ │ │ │ │ │ ├── generate.php │ │ │ │ │ │ │ │ │ │ │ ├── lexicon.php │ │ │ │ │ │ │ │ │ │ │ └── lexicon.txt │ │ │ │ │ │ │ │ │ │ ├── Stopword.php │ │ │ │ │ │ │ │ │ │ ├── Stopword │ │ │ │ │ │ │ │ │ │ ├── Stopword.php │ │ │ │ │ │ │ │ │ │ ├── czech-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── danish-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── dutch-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── english-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── finnish-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── french-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── generate.php │ │ │ │ │ │ │ │ │ │ ├── german-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── hungarian-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── italian-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── norwegian-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── polish-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── portuguese-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── russian-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── spanish-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── swedish-stopwords.txt │ │ │ │ │ │ │ │ │ │ └── turkish-stopwords.txt │ │ │ │ │ │ │ │ │ │ ├── Summary.php │ │ │ │ │ │ │ │ │ │ ├── SummaryPageRank.php │ │ │ │ │ │ │ │ │ │ ├── TextRank.php │ │ │ │ │ │ │ │ │ │ └── language-profile.php │ │ │ │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ │ ├── QuickTest.php │ │ │ │ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ │ │ ├── english1.expected │ │ │ │ │ │ │ │ │ ├── english1.summary │ │ │ │ │ │ │ │ │ ├── english1.txt │ │ │ │ │ │ │ │ │ ├── italian.expected │ │ │ │ │ │ │ │ │ ├── italian.summary │ │ │ │ │ │ │ │ │ ├── italian.txt │ │ │ │ │ │ │ │ │ ├── spanish1.expected │ │ │ │ │ │ │ │ │ ├── spanish1.summary │ │ │ │ │ │ │ │ │ └── spanish1.txt │ │ │ │ │ │ │ │ ├── davechild │ │ │ │ │ │ │ │ └── textstatistics │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ │ └── DaveChild │ │ │ │ │ │ │ │ │ │ └── TextStatistics │ │ │ │ │ │ │ │ │ │ ├── Maths.php │ │ │ │ │ │ │ │ │ │ ├── Pluralise.php │ │ │ │ │ │ │ │ │ │ ├── Resource.php │ │ │ │ │ │ │ │ │ │ ├── Syllables.php │ │ │ │ │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ │ │ │ │ ├── TextStatistics.php │ │ │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ │ │ ├── DaleChallWordList.php │ │ │ │ │ │ │ │ │ │ ├── Homographs.txt │ │ │ │ │ │ │ │ │ │ └── SpacheWordList.php │ │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ │ ├── TextStatisticsCMULexTest.php │ │ │ │ │ │ │ │ │ ├── TextStatisticsKiplingIfTest.php │ │ │ │ │ │ │ │ │ ├── TextStatisticsMaths.php │ │ │ │ │ │ │ │ │ ├── TextStatisticsMelvilleMobyDickTest.php │ │ │ │ │ │ │ │ │ ├── TextStatisticsPluralise.php │ │ │ │ │ │ │ │ │ └── TextStatisticsTest.php │ │ │ │ │ │ │ │ └── sunra │ │ │ │ │ │ │ │ └── php-simple-html-dom-parser │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── Src │ │ │ │ │ │ │ │ └── Sunra │ │ │ │ │ │ │ │ │ └── PhpSimple │ │ │ │ │ │ │ │ │ ├── HtmlDomParser.php │ │ │ │ │ │ │ │ │ └── simplehtmldom_1_5 │ │ │ │ │ │ │ │ │ ├── change_log.txt │ │ │ │ │ │ │ │ │ └── simple_html_dom.php │ │ │ │ │ │ │ │ └── composer.json │ │ │ │ │ │ ├── supertable │ │ │ │ │ │ │ ├── SuperTablePlugin.php │ │ │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ │ │ └── SuperTable_BlockElementType.php │ │ │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ │ │ ├── SuperTableFieldType.php │ │ │ │ │ │ │ │ └── SuperTable_LabelFieldType.php │ │ │ │ │ │ │ ├── integrations │ │ │ │ │ │ │ │ └── feedme │ │ │ │ │ │ │ │ │ └── fields │ │ │ │ │ │ │ │ │ └── SuperTableFeedMeFieldType.php │ │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ │ └── m150901_144609_superTable_fixForContentTables.php │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── SuperTable_BlockModel.php │ │ │ │ │ │ │ │ ├── SuperTable_BlockTypeModel.php │ │ │ │ │ │ │ │ └── SuperTable_SettingsModel.php │ │ │ │ │ │ │ ├── records │ │ │ │ │ │ │ │ ├── SuperTable_BlockRecord.php │ │ │ │ │ │ │ │ └── SuperTable_BlockTypeRecord.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ ├── SuperTableConfigurator.css │ │ │ │ │ │ │ │ │ └── SuperTableInput.css │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── MatrixConfiguratorAlt.js │ │ │ │ │ │ │ │ │ ├── MatrixInputAlt.js │ │ │ │ │ │ │ │ │ ├── SuperTableConfigurator.js │ │ │ │ │ │ │ │ │ └── SuperTableInput.js │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── SuperTableService.php │ │ │ │ │ │ │ │ └── SuperTable_MatrixService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _integrations │ │ │ │ │ │ │ │ │ └── feedme │ │ │ │ │ │ │ │ │ │ └── fields │ │ │ │ │ │ │ │ │ │ └── supertable.html │ │ │ │ │ │ │ │ ├── field.html │ │ │ │ │ │ │ │ ├── fields.html │ │ │ │ │ │ │ │ ├── label │ │ │ │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ │ │ │ └── settings.html │ │ │ │ │ │ │ │ ├── rowInput-matrix.html │ │ │ │ │ │ │ │ ├── rowInput.html │ │ │ │ │ │ │ │ ├── settings.html │ │ │ │ │ │ │ │ └── tableInput.html │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── SuperTableVariable.php │ │ │ │ │ │ ├── thearchitect │ │ │ │ │ │ │ ├── TheArchitectPlugin.php │ │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ ├── TheArchitectController.php │ │ │ │ │ │ │ │ └── TheArchitect_ApiController.php │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ └── thearchitect.css │ │ │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ │ │ │ │ ├── diff.min.js │ │ │ │ │ │ │ │ │ └── thearchitect.js │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ └── TheArchitectService.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _itemTable.twig │ │ │ │ │ │ │ │ ├── blueprint.twig │ │ │ │ │ │ │ │ ├── convert.twig │ │ │ │ │ │ │ │ ├── files.twig │ │ │ │ │ │ │ │ ├── index.twig │ │ │ │ │ │ │ │ ├── migrations.twig │ │ │ │ │ │ │ │ └── output.twig │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── TheArchitectVariable.php │ │ │ │ │ │ └── videoembedutility │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── VideoEmbedUtilityPlugin.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── _vimeoEmbed.html │ │ │ │ │ │ │ └── twigextensions │ │ │ │ │ │ │ └── VideoEmbedUtilityTwigExtension.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── _builder │ │ │ │ │ │ ├── _cb-objects.html │ │ │ │ │ │ └── content-builder.html │ │ │ │ │ │ ├── _cbmodules │ │ │ │ │ │ ├── accordion.html │ │ │ │ │ │ ├── anchor.html │ │ │ │ │ │ ├── button.html │ │ │ │ │ │ ├── card.html │ │ │ │ │ │ ├── cardSlider.html │ │ │ │ │ │ ├── embedContent.html │ │ │ │ │ │ ├── gallery.html │ │ │ │ │ │ ├── generic.html │ │ │ │ │ │ ├── grid.html │ │ │ │ │ │ ├── headline.html │ │ │ │ │ │ ├── helper │ │ │ │ │ │ │ └── gridWrapperBackground.html │ │ │ │ │ │ ├── horizontalRuler.html │ │ │ │ │ │ ├── imageSlider.html │ │ │ │ │ │ ├── inlineSvg.html │ │ │ │ │ │ ├── instagram.html │ │ │ │ │ │ ├── jumpNavigation.html │ │ │ │ │ │ ├── list.html │ │ │ │ │ │ ├── markdown.html │ │ │ │ │ │ ├── mediaImage.html │ │ │ │ │ │ ├── quote.html │ │ │ │ │ │ ├── richtext.html │ │ │ │ │ │ ├── section.html │ │ │ │ │ │ ├── slideOutBox.html │ │ │ │ │ │ ├── spacer.html │ │ │ │ │ │ ├── tab.html │ │ │ │ │ │ ├── video.html │ │ │ │ │ │ └── wrapper.html │ │ │ │ │ │ ├── _components │ │ │ │ │ │ ├── articleBoxes.html │ │ │ │ │ │ ├── breadcrumb.html │ │ │ │ │ │ ├── caption.html │ │ │ │ │ │ ├── copyright.html │ │ │ │ │ │ ├── disqusComments.html │ │ │ │ │ │ ├── featuredImage.html │ │ │ │ │ │ ├── glossaryCategory.html │ │ │ │ │ │ ├── hero.html │ │ │ │ │ │ ├── langSwitch.html │ │ │ │ │ │ ├── marker.html │ │ │ │ │ │ ├── offCanvas.html │ │ │ │ │ │ ├── offCanvasTrigger.html │ │ │ │ │ │ ├── pageFooter.html │ │ │ │ │ │ ├── pageHeader.html │ │ │ │ │ │ ├── pagelogo.html │ │ │ │ │ │ ├── postMeta.html │ │ │ │ │ │ ├── progressLoader.html │ │ │ │ │ │ ├── relatedEntries.html │ │ │ │ │ │ ├── searchbar.html │ │ │ │ │ │ └── socialNetworks.html │ │ │ │ │ │ ├── _layout │ │ │ │ │ │ └── main-layout.html │ │ │ │ │ │ ├── _macros │ │ │ │ │ │ ├── my-macro.html │ │ │ │ │ │ └── section-macro.html │ │ │ │ │ │ ├── _objects │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── _parts │ │ │ │ │ │ ├── critical.html │ │ │ │ │ │ ├── document-footer.html │ │ │ │ │ │ ├── document-header.html │ │ │ │ │ │ └── favicon.html │ │ │ │ │ │ ├── general │ │ │ │ │ │ ├── category.html │ │ │ │ │ │ ├── entry.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── pages.html │ │ │ │ │ │ └── parts │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── rss │ │ │ │ │ │ └── blog.rss │ │ │ │ │ │ ├── s.html │ │ │ │ │ │ └── section_ │ │ │ │ │ │ ├── parts │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ └── readme.txt │ │ │ │ └── style │ │ │ │ │ ├── _loader.scss │ │ │ │ │ ├── application │ │ │ │ │ ├── _application.scss │ │ │ │ │ ├── cbmodules │ │ │ │ │ │ ├── _accordion.scss │ │ │ │ │ │ ├── _button.scss │ │ │ │ │ │ ├── _card.scss │ │ │ │ │ │ ├── _embedContent.scss │ │ │ │ │ │ ├── _gallery.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _gridWrapper.scss │ │ │ │ │ │ ├── _headline.scss │ │ │ │ │ │ ├── _horizontalRuler.scss │ │ │ │ │ │ ├── _inlineSvg.scss │ │ │ │ │ │ ├── _instagram.scss │ │ │ │ │ │ ├── _jumpNavigation.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _markdown.scss │ │ │ │ │ │ ├── _mediaImage.scss │ │ │ │ │ │ ├── _quote.scss │ │ │ │ │ │ ├── _richtext.scss │ │ │ │ │ │ ├── _section.scss │ │ │ │ │ │ ├── _slideOutBox.scss │ │ │ │ │ │ ├── _slider.scss │ │ │ │ │ │ ├── _spacer.scss │ │ │ │ │ │ ├── _tab.scss │ │ │ │ │ │ ├── _video.scss │ │ │ │ │ │ └── _wrapper.scss │ │ │ │ │ ├── components │ │ │ │ │ │ ├── _articleBoxes.scss │ │ │ │ │ │ ├── _articleEntry.scss │ │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ │ ├── _caption.scss │ │ │ │ │ │ ├── _copyright.scss │ │ │ │ │ │ ├── _disqusComments.scss │ │ │ │ │ │ ├── _featuredImage.scss │ │ │ │ │ │ ├── _footernav.scss │ │ │ │ │ │ ├── _glossaryCategory.scss │ │ │ │ │ │ ├── _hero.scss │ │ │ │ │ │ ├── _langSwitch.scss │ │ │ │ │ │ ├── _mainnav.scss │ │ │ │ │ │ ├── _marker.scss │ │ │ │ │ │ ├── _offCanvas.scss │ │ │ │ │ │ ├── _offCanvasTrigger.scss │ │ │ │ │ │ ├── _pageFooter.scss │ │ │ │ │ │ ├── _pageHeader.scss │ │ │ │ │ │ ├── _pagelogo.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _postMeta.scss │ │ │ │ │ │ ├── _progressLoader.scss │ │ │ │ │ │ ├── _relatedEntries.scss │ │ │ │ │ │ ├── _searchbar.scss │ │ │ │ │ │ ├── _socialNetworks.scss │ │ │ │ │ │ ├── _socialShare.scss │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── elements │ │ │ │ │ │ ├── _color.scss │ │ │ │ │ │ ├── _container.scss │ │ │ │ │ │ ├── _resets.scss │ │ │ │ │ │ ├── _textAlign.scss │ │ │ │ │ │ ├── _typoLayout.scss │ │ │ │ │ │ ├── _typoScale.scss │ │ │ │ │ │ ├── _verticalAlign.scss │ │ │ │ │ │ ├── _wrapper.scss │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── generic │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── _area.scss │ │ │ │ │ │ ├── _layout-2ColGrid.scss │ │ │ │ │ │ ├── _layout-2to4Grid.scss │ │ │ │ │ │ ├── _layout-3ColGrid.scss │ │ │ │ │ │ ├── _layout-4ColGrid.scss │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── settings │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── tools │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── trumps │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── maps │ │ │ │ │ ├── _fontstacks.scss │ │ │ │ │ ├── _iconfontlist.scss │ │ │ │ │ ├── _map-loader.scss │ │ │ │ │ ├── _sprite-bitmap.scss │ │ │ │ │ └── _sprite-svg.scss │ │ │ │ │ └── vendor │ │ │ │ │ ├── _flickity.scss │ │ │ │ │ ├── _photoswipe.scss │ │ │ │ │ └── readme.txt │ │ │ ├── joomla │ │ │ │ ├── _htaccess │ │ │ │ ├── configuration-sample.php │ │ │ │ ├── structure │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── system │ │ │ │ │ │ │ └── kickcleanhead │ │ │ │ │ │ │ ├── kickcleanhead.php │ │ │ │ │ │ │ ├── kickcleanhead.xml │ │ │ │ │ │ │ ├── language │ │ │ │ │ │ │ ├── de-DE │ │ │ │ │ │ │ │ ├── de-DE.plg_system_kickcleanhead.ini │ │ │ │ │ │ │ │ └── de-DE.plg_system_kickcleanhead.sys.ini │ │ │ │ │ │ │ └── en-GB │ │ │ │ │ │ │ │ ├── en-GB.plg_system_kickcleanhead.ini │ │ │ │ │ │ │ │ └── en-GB.plg_system_kickcleanhead.sys.ini │ │ │ │ │ │ │ └── update.xml │ │ │ │ │ └── templates │ │ │ │ │ │ ├── _critical │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── _parts │ │ │ │ │ │ ├── favicon.php │ │ │ │ │ │ └── footer.php │ │ │ │ │ │ ├── assets │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── html │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── kickcck │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── templateDetails.xml │ │ │ │ │ │ └── tpls │ │ │ │ │ │ └── default.php │ │ │ │ └── template_additions │ │ │ │ │ └── language │ │ │ │ │ ├── de-DE │ │ │ │ │ ├── de-DE.tpl_projectname.ini │ │ │ │ │ └── de-DE.tpl_projectname.sys.ini │ │ │ │ │ └── en-GB │ │ │ │ │ ├── en-GB.tpl_projectname.ini │ │ │ │ │ └── en-GB.tpl_projectname.sys.ini │ │ │ ├── js │ │ │ │ └── main.js │ │ │ ├── simplestructure │ │ │ │ ├── index.html │ │ │ │ └── readme.txt │ │ │ ├── style │ │ │ │ ├── _application_atomic.scss │ │ │ │ ├── _application_itcss.scss │ │ │ │ ├── _application_oocss.scss │ │ │ │ ├── _application_own.scss │ │ │ │ ├── atomic │ │ │ │ │ ├── atoms │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── molecules │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── organisms │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── templates │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── utilities │ │ │ │ │ │ └── readme.txt │ │ │ │ ├── itcss │ │ │ │ │ ├── components │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── elements │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── generic │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── objects │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── settings │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── tools │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── trumps │ │ │ │ │ │ └── readme.txt │ │ │ │ └── oocss │ │ │ │ │ ├── objects │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── pages │ │ │ │ │ └── readme.txt │ │ │ │ │ └── utilities │ │ │ │ │ └── readme.txt │ │ │ ├── twig │ │ │ │ ├── components │ │ │ │ │ └── readme.txt │ │ │ │ ├── index.twig │ │ │ │ ├── parts │ │ │ │ │ ├── _site-header.twig │ │ │ │ │ └── _site-scripts.twig │ │ │ │ └── templates │ │ │ │ │ └── _layout.twig │ │ │ ├── vue │ │ │ │ ├── app.vue │ │ │ │ ├── components │ │ │ │ │ ├── js-style.scss │ │ │ │ │ └── readme.txt │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ └── routes.js │ │ │ │ ├── shared │ │ │ │ │ └── readme.txt │ │ │ │ ├── store │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── getters.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── modules │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── mutations.js │ │ │ │ │ └── state.js │ │ │ │ └── vue-app.js │ │ │ ├── wordpress │ │ │ │ ├── _htaccess │ │ │ │ ├── screenshot.png │ │ │ │ ├── structure │ │ │ │ │ ├── config │ │ │ │ │ │ ├── wp-config-sample.php │ │ │ │ │ │ └── wp-config │ │ │ │ │ │ │ ├── _wp-env.php │ │ │ │ │ │ │ └── wp-env.php │ │ │ │ │ ├── plugins │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── templates │ │ │ │ │ │ ├── 404.php │ │ │ │ │ │ ├── _functions │ │ │ │ │ │ ├── acfOptions.php │ │ │ │ │ │ ├── addRssLink.php │ │ │ │ │ │ ├── cf7CustomLoader.php │ │ │ │ │ │ ├── imagesSizes.php │ │ │ │ │ │ ├── removeAddjQuery.php │ │ │ │ │ │ ├── removeAdminBar.php │ │ │ │ │ │ ├── removeEmojis.php │ │ │ │ │ │ ├── removeWPGenerator.php │ │ │ │ │ │ ├── thumbnailSupport.php │ │ │ │ │ │ ├── titleTagSupport.php │ │ │ │ │ │ └── translation.php │ │ │ │ │ │ ├── footer.php │ │ │ │ │ │ ├── functions.php │ │ │ │ │ │ ├── header.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── page.php │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── template--example.php │ │ │ │ ├── wp-config-sample.php │ │ │ │ └── wp-env.php │ │ │ └── wordpress_contentbuilder │ │ │ │ ├── adminimize-settings.json │ │ │ │ ├── contentbuilder.json │ │ │ │ ├── structure │ │ │ │ ├── plugins │ │ │ │ │ ├── acf-link │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── acf-link.php │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── input.css │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── input.js │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── FieldLink.php │ │ │ │ │ │ │ └── Support │ │ │ │ │ │ │ │ └── AdminColumns │ │ │ │ │ │ │ │ └── FieldLink.php │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── field.php │ │ │ │ │ ├── adminimize │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── adminimize.php │ │ │ │ │ │ ├── adminimize_page.php │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── mw_cat_full.css │ │ │ │ │ │ │ ├── mw_cat_full.min.css │ │ │ │ │ │ │ ├── mw_small_user_info.css │ │ │ │ │ │ │ ├── mw_small_user_info.min.css │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ └── style.min.css │ │ │ │ │ │ ├── inc-options │ │ │ │ │ │ │ ├── admin_bar.php │ │ │ │ │ │ │ ├── admin_bar_frontend.php │ │ │ │ │ │ │ ├── backend_options.php │ │ │ │ │ │ │ ├── dashboard_options.php │ │ │ │ │ │ │ ├── deinstall_options.php │ │ │ │ │ │ │ ├── global_options.php │ │ │ │ │ │ │ ├── im_export_options.php │ │ │ │ │ │ │ ├── links_options.php │ │ │ │ │ │ │ ├── menu_options.php │ │ │ │ │ │ │ ├── minimenu.php │ │ │ │ │ │ │ ├── self_settings.php │ │ │ │ │ │ │ ├── settings_notice.php │ │ │ │ │ │ │ ├── theme_options.php │ │ │ │ │ │ │ ├── widget_options.php │ │ │ │ │ │ │ ├── wp_nav_menu_options.php │ │ │ │ │ │ │ ├── write_cp_options.php │ │ │ │ │ │ │ ├── write_page_options.php │ │ │ │ │ │ │ └── write_post_options.php │ │ │ │ │ │ ├── inc-setup │ │ │ │ │ │ │ ├── admin-bar-items.php │ │ │ │ │ │ │ ├── admin-footer.php │ │ │ │ │ │ │ ├── dashboard.php │ │ │ │ │ │ │ ├── export.php │ │ │ │ │ │ │ ├── footer.php │ │ │ │ │ │ │ ├── helping_hands.php │ │ │ │ │ │ │ ├── import.php │ │ │ │ │ │ │ ├── messages.php │ │ │ │ │ │ │ ├── meta-boxes.php │ │ │ │ │ │ │ ├── remove-admin-bar.php │ │ │ │ │ │ │ ├── remove-admin-notices.php │ │ │ │ │ │ │ └── widget.php │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── adminimize.js │ │ │ │ │ │ │ ├── adminimize.min.js │ │ │ │ │ │ │ ├── remove_footer.js │ │ │ │ │ │ │ ├── remove_footer.min.js │ │ │ │ │ │ │ ├── remove_header.js │ │ │ │ │ │ │ ├── remove_header.min.js │ │ │ │ │ │ │ ├── tb_window.js │ │ │ │ │ │ │ ├── tb_window.min.js │ │ │ │ │ │ │ ├── timestamp.js │ │ │ │ │ │ │ └── timestamp.min.js │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── custom-post-type-ui │ │ │ │ │ │ ├── changelog.txt │ │ │ │ │ │ ├── classes │ │ │ │ │ │ │ ├── class.cptui_admin_ui.php │ │ │ │ │ │ │ └── class.cptui_debug_info.php │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── cptui.css │ │ │ │ │ │ │ ├── cptui.min.css │ │ │ │ │ │ │ └── cptui.scss │ │ │ │ │ │ ├── custom-post-type-ui.php │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── cptui-icon-128x128.png │ │ │ │ │ │ │ ├── cptui-icon-173x173.png │ │ │ │ │ │ │ ├── cptui-icon-256x256.png │ │ │ │ │ │ │ └── wds_ads │ │ │ │ │ │ │ │ ├── buddypages.png │ │ │ │ │ │ │ │ ├── cptui-extended.png │ │ │ │ │ │ │ │ ├── instago.png │ │ │ │ │ │ │ │ └── maintainn.png │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── about.php │ │ │ │ │ │ │ ├── listings.php │ │ │ │ │ │ │ ├── post-types.php │ │ │ │ │ │ │ ├── support.php │ │ │ │ │ │ │ ├── taxonomies.php │ │ │ │ │ │ │ ├── tools.php │ │ │ │ │ │ │ └── utility.php │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── cptui.js │ │ │ │ │ │ │ └── cptui.min.js │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── debug-this │ │ │ │ │ │ ├── debug-this.php │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── debug-this.css │ │ │ │ │ │ │ ├── debug-template.php │ │ │ │ │ │ │ ├── example-extension.txt │ │ │ │ │ │ │ ├── extensions.php │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── debug-this-trigger.js │ │ │ │ │ │ │ │ └── debug-this.js │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── duplicate-post │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── duplicate-post-jetpack.php │ │ │ │ │ │ │ └── duplicate-post-wpml.php │ │ │ │ │ │ ├── donate.png │ │ │ │ │ │ ├── duplicate-post-admin.php │ │ │ │ │ │ ├── duplicate-post-common.php │ │ │ │ │ │ ├── duplicate-post-options.php │ │ │ │ │ │ ├── duplicate-post.css │ │ │ │ │ │ ├── duplicate-post.php │ │ │ │ │ │ ├── gpl-2.0.txt │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── kint-debugger │ │ │ │ │ │ ├── includes │ │ │ │ │ │ │ └── class-kint-debug-bar-panel.php │ │ │ │ │ │ ├── kint-debugger.php │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ └── kint │ │ │ │ │ │ │ ├── Kint.class.php │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── config.default.php │ │ │ │ │ │ │ ├── decorators │ │ │ │ │ │ │ ├── plain.php │ │ │ │ │ │ │ └── rich.php │ │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── kintObject.class.php │ │ │ │ │ │ │ ├── kintParser.class.php │ │ │ │ │ │ │ └── kintVariableData.class.php │ │ │ │ │ │ │ ├── parsers │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ │ ├── classmethods.php │ │ │ │ │ │ │ │ ├── classstatics.php │ │ │ │ │ │ │ │ ├── color.php │ │ │ │ │ │ │ │ ├── fspath.php │ │ │ │ │ │ │ │ ├── json.php │ │ │ │ │ │ │ │ ├── microtime.php │ │ │ │ │ │ │ │ ├── objectiterateable.php │ │ │ │ │ │ │ │ ├── splobjectstorage.php │ │ │ │ │ │ │ │ ├── timestamp.php │ │ │ │ │ │ │ │ └── xml.php │ │ │ │ │ │ │ └── objects │ │ │ │ │ │ │ │ ├── closure.php │ │ │ │ │ │ │ │ ├── smarty.php │ │ │ │ │ │ │ │ └── splfileinfo.php │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── base.less │ │ │ │ │ │ │ ├── compiled │ │ │ │ │ │ │ ├── aante-light.css │ │ │ │ │ │ │ ├── kint.js │ │ │ │ │ │ │ ├── original.css │ │ │ │ │ │ │ ├── solarized-dark.css │ │ │ │ │ │ │ └── solarized.css │ │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ ├── aante-light.less │ │ │ │ │ │ │ ├── original.less │ │ │ │ │ │ │ ├── solarized-dark.less │ │ │ │ │ │ │ └── solarized.less │ │ │ │ │ ├── wp-smartcrop │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── icon-128.png │ │ │ │ │ │ │ ├── icon-256.png │ │ │ │ │ │ │ ├── screenshot 1.jpg │ │ │ │ │ │ │ ├── screenshot 2.jpg │ │ │ │ │ │ │ └── screenshot 3.jpg │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── image-renderer.css │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── jquery.wp-smartcrop.js │ │ │ │ │ │ │ ├── jquery.wp-smartcrop.min.js │ │ │ │ │ │ │ └── media-library.js │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── wp-smartcrop.php │ │ │ │ │ └── wp-sync-db │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── asset │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ │ ├── hook.js │ │ │ │ │ │ │ └── script.js │ │ │ │ │ │ ├── class │ │ │ │ │ │ ├── wpsdb-addon.php │ │ │ │ │ │ ├── wpsdb-base.php │ │ │ │ │ │ └── wpsdb.php │ │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── wp-sync-db-compatibility.php │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── languages │ │ │ │ │ │ └── wp-sync-db-en.pot │ │ │ │ │ │ ├── template │ │ │ │ │ │ ├── help.php │ │ │ │ │ │ ├── migrate-progress.php │ │ │ │ │ │ ├── migrate.php │ │ │ │ │ │ ├── profile.php │ │ │ │ │ │ └── settings.php │ │ │ │ │ │ ├── test.sh │ │ │ │ │ │ └── wp-sync-db.php │ │ │ │ └── templates │ │ │ │ │ ├── 404.php │ │ │ │ │ ├── _cbmodules │ │ │ │ │ ├── accordion.php │ │ │ │ │ ├── anchor.php │ │ │ │ │ ├── button.php │ │ │ │ │ ├── card.php │ │ │ │ │ ├── cardSlider.php │ │ │ │ │ ├── gallery.php │ │ │ │ │ ├── grid.php │ │ │ │ │ ├── headline.php │ │ │ │ │ ├── horizontalRuler.php │ │ │ │ │ ├── iframeContent.php │ │ │ │ │ ├── imageSlider.php │ │ │ │ │ ├── jumpNavigation.php │ │ │ │ │ ├── list.php │ │ │ │ │ ├── mediaImage.php │ │ │ │ │ ├── quote.php │ │ │ │ │ ├── richtext.php │ │ │ │ │ ├── slideOutBox.php │ │ │ │ │ ├── spacer.php │ │ │ │ │ └── tab.php │ │ │ │ │ ├── _components │ │ │ │ │ ├── articleBoxes.php │ │ │ │ │ ├── copyright.php │ │ │ │ │ ├── disqusComments.php │ │ │ │ │ ├── featuredImage.php │ │ │ │ │ ├── footernav.php │ │ │ │ │ ├── mainnav.php │ │ │ │ │ ├── marker.php │ │ │ │ │ ├── offCanvas.php │ │ │ │ │ ├── offCanvasTrigger.php │ │ │ │ │ ├── pageFooter.php │ │ │ │ │ ├── pageHeader.php │ │ │ │ │ ├── pagelogo.php │ │ │ │ │ ├── postMeta.php │ │ │ │ │ └── progressLoader.php │ │ │ │ │ ├── _contentbuilder │ │ │ │ │ ├── contentBuilder.php │ │ │ │ │ └── contentModules.php │ │ │ │ │ ├── _functions │ │ │ │ │ ├── acfOptions.php │ │ │ │ │ ├── addRssLink.php │ │ │ │ │ ├── allowSVG.php │ │ │ │ │ ├── backendLogo.php │ │ │ │ │ ├── cf7CustomLoader.php │ │ │ │ │ ├── disableAdminEditor.php │ │ │ │ │ ├── disableComments.php │ │ │ │ │ ├── disableRest.php │ │ │ │ │ ├── filerename.php │ │ │ │ │ ├── imagesSizes.php │ │ │ │ │ ├── limitWords.php │ │ │ │ │ ├── navigations.php │ │ │ │ │ ├── removeAddjQuery.php │ │ │ │ │ ├── removeAdminBar.php │ │ │ │ │ ├── removeEmoji.php │ │ │ │ │ ├── removeThumbnailDimension.php │ │ │ │ │ ├── removeWPGenerator.php │ │ │ │ │ ├── shortcodes.php │ │ │ │ │ ├── thumbnailSupport.php │ │ │ │ │ ├── titleTagSupport.php │ │ │ │ │ └── translation.php │ │ │ │ │ ├── _macros │ │ │ │ │ ├── macroMediaImageSet.php │ │ │ │ │ ├── macroMediaImageSetRef.php │ │ │ │ │ ├── macroSocialNetworks.php │ │ │ │ │ ├── macroSocialShare.php │ │ │ │ │ └── macroSvgicon.php │ │ │ │ │ ├── _objects │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── _parts │ │ │ │ │ ├── document-footer.php │ │ │ │ │ ├── document-header.php │ │ │ │ │ └── pages--home.php │ │ │ │ │ ├── footer.php │ │ │ │ │ ├── functions.php │ │ │ │ │ ├── header.php │ │ │ │ │ ├── index.php │ │ │ │ │ ├── page.php │ │ │ │ │ ├── single.php │ │ │ │ │ ├── style.css │ │ │ │ │ ├── template--acf-parklot.php │ │ │ │ │ └── template--contentbuilder.php │ │ │ │ └── style │ │ │ │ ├── _loader.scss │ │ │ │ ├── application │ │ │ │ ├── _application.scss │ │ │ │ ├── cbmodules │ │ │ │ │ ├── _accordion.scss │ │ │ │ │ ├── _button.scss │ │ │ │ │ ├── _card.scss │ │ │ │ │ ├── _gallery.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _headline.scss │ │ │ │ │ ├── _horizontalRuler.scss │ │ │ │ │ ├── _iframeContent.scss │ │ │ │ │ ├── _jumpNavigation.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mediaImage.scss │ │ │ │ │ ├── _quote.scss │ │ │ │ │ ├── _richtext.scss │ │ │ │ │ ├── _slideOutBox.scss │ │ │ │ │ ├── _slider.scss │ │ │ │ │ ├── _spacer.scss │ │ │ │ │ └── _tab.scss │ │ │ │ ├── components │ │ │ │ │ ├── _articleBoxes.scss │ │ │ │ │ ├── _articleEntry.scss │ │ │ │ │ ├── _copyright.scss │ │ │ │ │ ├── _disqusComments.scss │ │ │ │ │ ├── _featuredImage.scss │ │ │ │ │ ├── _footernav.scss │ │ │ │ │ ├── _mainnav.scss │ │ │ │ │ ├── _marker.scss │ │ │ │ │ ├── _offCanvas.scss │ │ │ │ │ ├── _offCanvasTrigger.scss │ │ │ │ │ ├── _pageFooter.scss │ │ │ │ │ ├── _pageHeader.scss │ │ │ │ │ ├── _pagelogo.scss │ │ │ │ │ ├── _postMeta.scss │ │ │ │ │ ├── _progressLoader.scss │ │ │ │ │ ├── _socialNetworks.scss │ │ │ │ │ ├── _socialShare.scss │ │ │ │ │ └── readme.txt │ │ │ │ ├── elements │ │ │ │ │ ├── _color.scss │ │ │ │ │ ├── _container.scss │ │ │ │ │ ├── _resets.scss │ │ │ │ │ ├── _textAlign.scss │ │ │ │ │ ├── _typoLayout.scss │ │ │ │ │ ├── _typoScale.scss │ │ │ │ │ ├── _verticalAlign.scss │ │ │ │ │ ├── _wrapper.scss │ │ │ │ │ └── readme.txt │ │ │ │ ├── generic │ │ │ │ │ └── readme.txt │ │ │ │ ├── objects │ │ │ │ │ ├── _area.scss │ │ │ │ │ ├── _layout-1to3Grid.scss │ │ │ │ │ ├── _layout-2ColGrid.scss │ │ │ │ │ ├── _layout-3ColGrid.scss │ │ │ │ │ ├── _layout-4ColGrid.scss │ │ │ │ │ └── readme.txt │ │ │ │ ├── settings │ │ │ │ │ └── readme.txt │ │ │ │ ├── tools │ │ │ │ │ └── readme.txt │ │ │ │ └── trumps │ │ │ │ │ └── readme.txt │ │ │ │ ├── maps │ │ │ │ ├── _fontstacks.scss │ │ │ │ ├── _iconfontlist.scss │ │ │ │ ├── _map-loader.scss │ │ │ │ ├── _sprite-bitmap.scss │ │ │ │ └── _sprite-svg.scss │ │ │ │ └── vendor │ │ │ │ ├── _flickity.scss │ │ │ │ ├── _photoswipe.scss │ │ │ │ └── readme.txt │ │ └── style │ │ │ ├── _loader.scss │ │ │ ├── _setup.scss │ │ │ ├── maps │ │ │ ├── _fonts.scss │ │ │ ├── _fontstacks.scss │ │ │ ├── _iconfontlist.scss │ │ │ ├── _map-loader.scss │ │ │ ├── _sprite-bitmap.scss │ │ │ └── _sprite-svg.scss │ │ │ ├── style.scss │ │ │ └── vendor │ │ │ └── readme.txt │ │ ├── stylelint.config.js │ │ ├── stylelint.configCB.js │ │ ├── tailwind.js │ │ ├── tailwind │ │ ├── ratio.js │ │ └── transition.js │ │ ├── tests │ │ ├── e2e │ │ │ ├── .eslintrc │ │ │ ├── plugins │ │ │ │ └── index.js │ │ │ ├── specs │ │ │ │ └── example.spec.js │ │ │ └── support │ │ │ │ ├── commands.js │ │ │ │ └── index.js │ │ └── unit │ │ │ ├── .eslintrc │ │ │ ├── __transform__ │ │ │ └── mediaFileTransformer.js │ │ │ └── example.spec.js │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ ├── wallaby.config.js │ │ └── webpack │ │ ├── utils.js │ │ ├── webpack.config.base.babel.js │ │ ├── webpack.dev.babel.js │ │ └── webpack.prod.babel.js └── module │ ├── config │ └── filesModuleTpl.js │ ├── helpers │ ├── messages │ │ ├── branding.js │ │ └── logMessage.js │ └── prompts │ │ ├── message.js │ │ └── when.js │ ├── index.js │ ├── modules │ ├── prompts.js │ └── prompts │ │ └── module.js │ └── templates │ ├── _module.html │ ├── _module.js │ ├── _module.php │ ├── _module.scss │ └── _module.twig └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/.jshintrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/** 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/__tests__/app.js -------------------------------------------------------------------------------- /__tests__/contentBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/__tests__/contentBuilder.js -------------------------------------------------------------------------------- /__tests__/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/__tests__/prototype.js -------------------------------------------------------------------------------- /__tests__/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/__tests__/vue.js -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/modules/config/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/config/base.js -------------------------------------------------------------------------------- /generators/app/modules/config/craft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/config/craft.js -------------------------------------------------------------------------------- /generators/app/modules/config/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/config/html.js -------------------------------------------------------------------------------- /generators/app/modules/config/joomla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/config/joomla.js -------------------------------------------------------------------------------- /generators/app/modules/config/wordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/config/wordpress.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/base.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/partials/contentBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/partials/contentBuilder.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/partials/gulp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/partials/gulp.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/partials/stylelint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/partials/stylelint.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/partials/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/partials/typescript.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/partials/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/partials/vue.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/script.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/starterpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/starterpack.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/style.js -------------------------------------------------------------------------------- /generators/app/modules/package/dependencies/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/dependencies/tools.js -------------------------------------------------------------------------------- /generators/app/modules/package/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/modules/package/info/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/info/author.js -------------------------------------------------------------------------------- /generators/app/modules/package/info/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/package/info/base.js -------------------------------------------------------------------------------- /generators/app/modules/prompt/helpers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/prompt/helpers/message.js -------------------------------------------------------------------------------- /generators/app/modules/prompt/helpers/when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/prompt/helpers/when.js -------------------------------------------------------------------------------- /generators/app/modules/prompt/helpers/whenExtra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/prompt/helpers/whenExtra.js -------------------------------------------------------------------------------- /generators/app/modules/prompt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/prompt/index.js -------------------------------------------------------------------------------- /generators/app/modules/prompt/partials/_general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/prompt/partials/_general.js -------------------------------------------------------------------------------- /generators/app/modules/writing/addDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/addDB.js -------------------------------------------------------------------------------- /generators/app/modules/writing/configJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/configJSON.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySources.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/base.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/projecttype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/projecttype.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/script.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/starterpackCraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/starterpackCraft.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/starterpackJoomla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/starterpackJoomla.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/starterpackWordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/starterpackWordpress.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/style.js -------------------------------------------------------------------------------- /generators/app/modules/writing/copySrc/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/copySrc/tools.js -------------------------------------------------------------------------------- /generators/app/modules/writing/helpers/import-mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/helpers/import-mysql.js -------------------------------------------------------------------------------- /generators/app/modules/writing/importDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/importDB.js -------------------------------------------------------------------------------- /generators/app/modules/writing/install/craft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/install/craft.js -------------------------------------------------------------------------------- /generators/app/modules/writing/install/joomla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/install/joomla.js -------------------------------------------------------------------------------- /generators/app/modules/writing/install/wordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/install/wordpress.js -------------------------------------------------------------------------------- /generators/app/modules/writing/packageJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/modules/writing/packageJSON.js -------------------------------------------------------------------------------- /generators/app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/README.md -------------------------------------------------------------------------------- /generators/app/templates/_browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | IE 11 3 | -------------------------------------------------------------------------------- /generators/app/templates/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/_editorconfig -------------------------------------------------------------------------------- /generators/app/templates/_eslintrc-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/_eslintrc-dev.js -------------------------------------------------------------------------------- /generators/app/templates/_eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/_eslintrc.js -------------------------------------------------------------------------------- /generators/app/templates/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/_gitignore -------------------------------------------------------------------------------- /generators/app/templates/_npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/_npmrc -------------------------------------------------------------------------------- /generators/app/templates/_nvmrc: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /generators/app/templates/_prettierignore: -------------------------------------------------------------------------------- 1 | **/*.scss 2 | -------------------------------------------------------------------------------- /generators/app/templates/astrum-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "path": "./doc/pattern-library" 3 | } 4 | -------------------------------------------------------------------------------- /generators/app/templates/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/babel.config.js -------------------------------------------------------------------------------- /generators/app/templates/buddy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/buddy.yml -------------------------------------------------------------------------------- /generators/app/templates/config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/databases/craft.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/databases/craft.sql -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/databases/craft3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/databases/craft3.sql -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/databases/craftCB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/databases/craftCB.sql -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/databases/joomla.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/databases/joomla.sql -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/databases/wordpress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/databases/wordpress.sql -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/databases/wordpressCB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/databases/wordpressCB.sql -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/contentBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/contentBuilder.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/disqusComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/disqusComments.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/flickity-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/flickity-package.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/hasScrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/hasScrollbars.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/init-autoscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/init-autoscroll.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/init-heighttransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/init-heighttransition.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/init-photoswipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/init-photoswipe.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/progressLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/progressLoader.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/searchbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/searchbar.js -------------------------------------------------------------------------------- /generators/app/templates/contentBuilder_stuff/js/videoHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/contentBuilder_stuff/js/videoHelper.js -------------------------------------------------------------------------------- /generators/app/templates/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/cypress.json -------------------------------------------------------------------------------- /generators/app/templates/gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile.babel.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/lib/copyImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/lib/copyImages.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/lib/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/lib/errorHandler.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/lib/global-minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/lib/global-minify.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/lib/minifyImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/lib/minifyImage.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/lib/templateFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/lib/templateFiles.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/browsersync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/browsersync.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/build-bitmapsprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/build-bitmapsprite.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/build-favicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/build-favicons.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/build-symbolCleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/build-symbolCleanup.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/build-vectorsprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/build-vectorsprite.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/build.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/combine-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/combine-js.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/compile-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/compile-css.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/compile-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/compile-html.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/copy-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/copy-assets.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/copy-bitmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/copy-bitmaps.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/copy-contentimages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/copy-contentimages.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/copy-fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/copy-fonts.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/copy-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/copy-js.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/copy-launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/copy-launch.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/copy-vectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/copy-vectors.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/default.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/init.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/minify-contentimages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/minify-contentimages.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/minify-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/minify-css.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/minify-inlineimages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/minify-inlineimages.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/minify-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/minify-js.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/publish.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/rebuild-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/rebuild-images.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/rebuild-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/rebuild-js.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/version-bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/version-bump.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile/tasks/watch.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/copy-craftenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/copy-craftenv.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/copy-craftindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/copy-craftindex.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/copy-craftplugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/copy-craftplugins.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/copy-joomlafiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/copy-joomlafiles.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/copy-wpconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/copy-wpconfig.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/copy-wpplugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/copy-wpplugins.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/optimize-criticalCss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/optimize-criticalCss.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile_additions/sassdoc-generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/gulpfile_additions/sassdoc-generate.js -------------------------------------------------------------------------------- /generators/app/templates/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/install.sh -------------------------------------------------------------------------------- /generators/app/templates/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/jest.config.js -------------------------------------------------------------------------------- /generators/app/templates/nodescripts/critical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/nodescripts/critical.js -------------------------------------------------------------------------------- /generators/app/templates/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data.json -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/app/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/app/css/styles.css -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/app/css/styles.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/app/css/styles.min.css -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/app/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/app/js/main.js -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/app/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/app/js/main.min.js -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/color-palette/description.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/color-palette/markup.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/description.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/logo-dark/description.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/logo-dark/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/branding/logo-dark/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/logo/description.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/logo/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/branding/logo/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/typo/description.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/branding/typo/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/branding/typo/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/accordion/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/accordion/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/accordion/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/accordion/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/anchor/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/anchor/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/anchor/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/anchor/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/button/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/button/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/button/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/button/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/galley/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/galley/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/galley/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/galley/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/headline/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/headline/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/headline/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/headline/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/horizontalruler/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/horizontalruler/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/horizontalruler/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/horizontalruler/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/iframecontent/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/iframecontent/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/iframecontent/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/iframecontent/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/imageslider/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/imageslider/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/imageslider/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/imageslider/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/jumpnavigation/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/jumpnavigation/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/jumpnavigation/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/jumpnavigation/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/list/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/list/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/list/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/mediabox/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/mediabox/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/mediabox/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/mediabox/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/mediaimage/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/mediaimage/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/mediaimage/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/mediaimage/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/quote/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/quote/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/quote/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/quote/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/slideoutbox/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/slideoutbox/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/slideoutbox/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/slideoutbox/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/spacer/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/spacer/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/spacer/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/spacer/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/tab/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/tab/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/tab/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/tab/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/textslider/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/textslider/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/textslider/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/textslider/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/viewportspan/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/viewportspan/description.md -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/components/objects/viewportspan/markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/components/objects/viewportspan/markup.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/favicon.png -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide1--1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide1--1200.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide1--300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide1--300.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide1--600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide1--600.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide1--800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide1--800.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide1.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide2--1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide2--1200.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide2--300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide2--300.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide2--600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide2--600.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide2--800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide2--800.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide2.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide3--1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide3--1200.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide3--300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide3--300.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide3--600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide3--600.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide3--800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide3--800.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide3.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide4--1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide4--1200.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide4--300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide4--300.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide4--600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide4--600.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide4--800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide4--800.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/images/slide4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/images/slide4.jpg -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/index.html -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/pattern-library/data/pages/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/pattern-library/data/pages/intro.md -------------------------------------------------------------------------------- /generators/app/templates/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/postcss.config.js -------------------------------------------------------------------------------- /generators/app/templates/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/prettier.config.js -------------------------------------------------------------------------------- /generators/app/templates/purgecss.pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/purgecss.pattern.js -------------------------------------------------------------------------------- /generators/app/templates/src/.system/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system/404.html -------------------------------------------------------------------------------- /generators/app/templates/src/.system/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /generators/app/templates/src/.system/tpl_bitmapsprite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system/tpl_bitmapsprite.scss -------------------------------------------------------------------------------- /generators/app/templates/src/.system/tpl_svgsprite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system/tpl_svgsprite.scss -------------------------------------------------------------------------------- /generators/app/templates/src/.system_additions/facebook-og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system_additions/facebook-og-image.jpg -------------------------------------------------------------------------------- /generators/app/templates/src/.system_additions/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system_additions/favicon.png -------------------------------------------------------------------------------- /generators/app/templates/src/.system_additions/htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system_additions/htaccess -------------------------------------------------------------------------------- /generators/app/templates/src/.system_additions/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system_additions/placeholder.png -------------------------------------------------------------------------------- /generators/app/templates/src/.system_additions/twitter-og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/.system_additions/twitter-og-image.jpg -------------------------------------------------------------------------------- /generators/app/templates/src/fonts/readme.txt: -------------------------------------------------------------------------------- 1 | Font files belong in this directory. 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/framework/_defaults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/_defaults.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/__import-core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/__import-core.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_argcheck.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_argcheck.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_breakpoints.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_colors.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_container-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_container-queries.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_em.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_em.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_fontfamily.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_fontfamily.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_maps.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_rem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_rem.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_sassylists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_sassylists.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_spacing.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_typechecks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_typechecks.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/functions/_unitcheck.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/functions/_unitcheck.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_bem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_bem.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_break.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_break.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_cssgrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_cssgrid.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_eqcss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_eqcss.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_family.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_family.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_fluid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_fluid.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_fontface.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_fontface.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_jacket.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_jacket.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_pos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_pos.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/mixins/_size.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_antialias.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_antialias.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_block-center.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_block-center.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_clearfix.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_cleartext-complex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_cleartext-complex.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_cleartext-simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_cleartext-simple.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_cleartext.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_cleartext.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_decollapse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_decollapse.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_embed-responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_embed-responsive.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_expand-clickarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_expand-clickarea.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_perfomance.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_perfomance.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_simple-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_simple-button.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_text-hyphen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_text-hyphen.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_text-truncate.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_vertical-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_vertical-align.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_vertical-center.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_vertical-center.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_visually-hidden.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/core/placeholder/_word-wrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/core/placeholder/_word-wrap.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/generators/__import-generators.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/generators/__import-generators.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/generators/__init-generator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/generators/__init-generator.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/generators/_debug-generator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/generators/_debug-generator.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/generators/_fontface-generator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/generators/_fontface-generator.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/generators/_iconfont-generator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/generators/_iconfont-generator.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/generators/_resposive-fontsize-generator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/generators/_resposive-fontsize-generator.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/generators/_typoset-generator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/generators/_typoset-generator.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/__import-methods.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/__import-methods.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_align.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_bar.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_grid.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_iconfont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_iconfont.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_images.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_overlap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_overlap.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_positioning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_positioning.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_ratio.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_reposition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_reposition.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_scale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_scale.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_spacer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_spacer.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/methods/_vertical-sizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/methods/_vertical-sizes.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/partials/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/partials/_print.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework/partials/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework/partials/_tables.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework_additions/_normalize-slim.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework_additions/_normalize-slim.scss -------------------------------------------------------------------------------- /generators/app/templates/src/framework_additions/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/framework_additions/_normalize.scss -------------------------------------------------------------------------------- /generators/app/templates/src/images/bitmapSingle-assets/readme.txt: -------------------------------------------------------------------------------- 1 | Put all Bitmap Files in this Folder. 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/images/bitmapSingle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/bitmapSingle.psd -------------------------------------------------------------------------------- /generators/app/templates/src/images/bitmapSprite-assets/readme.txt: -------------------------------------------------------------------------------- 1 | Put all Bitmap Sprite Files in this Folder. 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/images/bitmapSprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/bitmapSprite.psd -------------------------------------------------------------------------------- /generators/app/templates/src/images/htmlimages/readme.txt: -------------------------------------------------------------------------------- 1 | Put your Images for here. 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSingle-assets/default-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSingle-assets/default-skin.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSingle-assets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSingle-assets/readme.txt -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-buffer.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-email.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-facebook.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-googleplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-googleplus.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-instagram.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-linkedin.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-pinterest.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-reddit.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-twitter.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-vimeo.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-whatsapp.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-xing.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/icon-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/icon-youtube.svg -------------------------------------------------------------------------------- /generators/app/templates/src/images/vectorSprite-assets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images/vectorSprite-assets/readme.txt -------------------------------------------------------------------------------- /generators/app/templates/src/images_webpackApp/bitmaps/readme.txt: -------------------------------------------------------------------------------- 1 | Put all Bitmap Sprite Files in this Folder. 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/images_webpackApp/vectors/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images_webpackApp/vectors/readme.txt -------------------------------------------------------------------------------- /generators/app/templates/src/images_webpackApp/vectorsSingle/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/images_webpackApp/vectorsSingle/readme.txt -------------------------------------------------------------------------------- /generators/app/templates/src/js/partial/detect-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/js/partial/detect-browser.js -------------------------------------------------------------------------------- /generators/app/templates/src/js/partial/disable-pointerevents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/js/partial/disable-pointerevents.js -------------------------------------------------------------------------------- /generators/app/templates/src/js/partial/failsave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/js/partial/failsave.js -------------------------------------------------------------------------------- /generators/app/templates/src/js/partial/kittnad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/js/partial/kittnad.js -------------------------------------------------------------------------------- /generators/app/templates/src/js/partial/lazysize-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/js/partial/lazysize-init.js -------------------------------------------------------------------------------- /generators/app/templates/src/js/partial/offcanvas-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/js/partial/offcanvas-trigger.js -------------------------------------------------------------------------------- /generators/app/templates/src/scripts/readme.txt: -------------------------------------------------------------------------------- 1 | Put your scripts here. 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftplugins/readme.txt: -------------------------------------------------------------------------------- 1 | Place for your Craftplugins 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/.env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/.env.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/backup_assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/backup_assets.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/backup_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/backup_db.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/backup_dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/backup_dirs.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/clear_caches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/clear_caches.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/common/common_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/common/common_db.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/common/common_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/common/common_env.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/common/defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/common/defaults.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/example.env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/example.env.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/pull_assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/pull_assets.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/pull_backups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/pull_backups.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/pull_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/pull_db.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/restore_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/restore_db.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/set_perms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/set_perms.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/craftscripts/sync_backups_to_s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/craftscripts/sync_backups_to_s3.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/env.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/env/env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/env/env.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/env/example.env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/env/example.env.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/env_v3/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/env_v3/env -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/env_v3/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/env_v3/env.example -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/plugins.sh -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/en/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/public/en/index.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/en/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/public/en/readme.txt -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/imager/readme.txt: -------------------------------------------------------------------------------- 1 | Place for Imager Files 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/public/index.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/public/robots.txt -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/uploads/files/readme.txt: -------------------------------------------------------------------------------- 1 | Place for fileuploads 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/uploads/images/readme.txt: -------------------------------------------------------------------------------- 1 | Image Upload Folder 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/uploads/videos/readme.txt: -------------------------------------------------------------------------------- 1 | Place for Videouploads 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/public/web.config -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public_additions/_htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/public_additions/_htaccess -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/public_additions/en/_htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/public_additions/en/_htaccess -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/db.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/elementapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/elementapi.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/elementapi/vendor/readme.txt: -------------------------------------------------------------------------------- 1 | Place for Element API Parts -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/environmentlabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/environmentlabel.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/general.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/imager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/imager.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/redactor/Reduced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/redactor/Reduced.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/redactor/Simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/redactor/Simple.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/redactor/Standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/redactor/Standard.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/routes.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/config/seomatic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/config/seomatic.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/404.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/_builder/content-builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/_builder/content-builder.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/_components/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/_components/example.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/_layout/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/_layout/main-layout.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/_macros/my-macro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/_macros/my-macro.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/_parts/document-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/_parts/document-footer.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/_parts/document-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/_parts/document-header.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/index.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/news/_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/news/_entry.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/templates/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/templates/news/index.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure/translations/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure/translations/en.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/config/db.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/config/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/config/general.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/config/redactor/Reduced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/config/redactor/Reduced.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/config/redactor/Simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/config/redactor/Simple.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/config/redactor/Standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/config/redactor/Standard.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/404.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_builder/content-builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_builder/content-builder.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_components/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_components/example.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_layout/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_layout/main-layout.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_macros/my-macro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_macros/my-macro.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_parts/document-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_parts/document-footer.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_parts/document-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/_parts/document-header.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/index.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/news/_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/news/_entry.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/templates/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/templates/news/index.html -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms/structure_v3/translations/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms/structure_v3/translations/en.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/contentbuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/contentbuilder.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/config/elementapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/config/elementapi.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/Inlin/InlinPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/Inlin/InlinPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/Inlin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/Inlin/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/Inlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/Inlin/README.md -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/acefreely/resources/ace.freely.min.css: -------------------------------------------------------------------------------- 1 | .ace_cursor-layer,.ace_gutter{z-index:1!important} -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/acefreely/resources/ace/mode-text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amcommand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amcommand/README.md -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/AmNavPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/AmNavPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/README.md -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/composer.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/amnav/releases.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cachebuster/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cachebuster/config.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cookies/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cookies/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cookies/README.md -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cookies/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/cookies/releases.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/doxter/templates/index.html: -------------------------------------------------------------------------------- 1 | {% redirect cpUrl('settings/plugins/doxter') %} 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/imager/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/imager/composer.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/imager/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/imager/config.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/imager/vendor/imgix/imgix-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/imager/vendor/tinify/tinify/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/imager/vendor/tinify/tinify/test/examples/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/kint/KintPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/kint/KintPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/kint/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/kint/composer.json -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/kint/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/kint/composer.lock -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/neo/NeoPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/neo/NeoPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/neo/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/neo/config.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | .DS_Store 3 | .idea 4 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/DOCS.md -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/README.md -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kittn/generator-kittn/HEAD/generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/config.php -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/templates/_humansPreview.twig: -------------------------------------------------------------------------------- 1 | {{ craft.seomatic.renderHumansTemplate() | raw }} -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/templates/_robotsPreview.twig: -------------------------------------------------------------------------------- 1 | {{ craft.seomatic.renderRobotsTemplate() | raw }} -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/vendor/crodas/languagedetector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /generators/app/templates/src/skeletons/craftcms_contentbuilder/structure/craftplugins/seomatic/vendor/crodas/languagedetector/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |