├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci-builds.yaml │ ├── release.yaml │ └── tests.yaml ├── .gitignore ├── CHANGELOG.md ├── CSP-REQUIREMENTS.md ├── README.md ├── UPGRADE-5.5.md ├── VERSION ├── assets ├── common │ ├── application │ │ ├── main.js │ │ ├── menu │ │ │ └── index.js │ │ ├── offcanvas │ │ │ └── index.js │ │ ├── totop │ │ │ └── index.js │ │ └── utils │ │ │ ├── decouple.js │ │ │ └── dollar-extras.js │ ├── css │ │ ├── font-awesome.min.css │ │ ├── font-awesome6-all.min.css │ │ ├── font-awesome6-pseudo.min.css │ │ ├── font-awesome6-shim.min.css │ │ ├── lightcase.css │ │ └── whoops.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── lightcase.eot │ │ ├── lightcase.svg │ │ ├── lightcase.ttf │ │ └── lightcase.woff │ ├── gulpfile.js │ ├── images │ │ └── gantry5-logo.png │ ├── js │ │ ├── font-awesome5-all.min.js │ │ ├── font-awesome5-shim.min.js │ │ ├── lightcase.js │ │ └── main.js │ ├── package.json │ ├── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ └── yarn.lock ├── grav │ └── .gitkeep ├── joomla │ └── css │ │ └── bootstrap-gantry.css └── wordpress │ ├── .gitkeep │ ├── css │ └── wordpress-admin-icon.css │ └── fonts │ ├── Gantry-5.eot │ ├── Gantry-5.svg │ ├── Gantry-5.ttf │ └── Gantry-5.woff ├── bin ├── build ├── builder │ ├── build-grav.xml │ ├── build-joomla.xml │ ├── build-wordpress.xml │ ├── build.ini │ ├── build.xml │ ├── classes │ │ └── JsonMapTask.php │ ├── composer.json │ ├── composer.lock │ └── custom.type.properties ├── composer-install ├── composer-update └── language-convert ├── composer.json ├── composer.lock ├── engines ├── common │ └── nucleus │ │ ├── admin │ │ └── blueprints │ │ │ ├── layout │ │ │ ├── block.yaml │ │ │ ├── container.yaml │ │ │ ├── inheritance │ │ │ │ ├── atom.yaml │ │ │ │ ├── messages │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── empty.yaml │ │ │ │ │ └── inherited.yaml │ │ │ │ ├── offcanvas.yaml │ │ │ │ ├── particle.yaml │ │ │ │ ├── position.yaml │ │ │ │ ├── section.yaml │ │ │ │ └── system.yaml │ │ │ ├── offcanvas.yaml │ │ │ └── section.yaml │ │ │ ├── menu │ │ │ └── block.yaml │ │ │ └── position │ │ │ └── chrome.yaml │ │ ├── blueprints │ │ └── page │ │ │ ├── assets.yaml │ │ │ ├── body.yaml │ │ │ ├── fontawesome.yaml │ │ │ └── head.yaml │ │ ├── css-compiled │ │ └── nucleus.css │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── particles │ │ ├── analytics.html.twig │ │ ├── analytics.yaml │ │ ├── assets.html.twig │ │ ├── assets.yaml │ │ ├── branding.html.twig │ │ ├── branding.yaml │ │ ├── content.yaml │ │ ├── copyright.html.twig │ │ ├── copyright.yaml │ │ ├── custom.html.twig │ │ ├── custom.yaml │ │ ├── date.html.twig │ │ ├── date.yaml │ │ ├── frameworks.html.twig │ │ ├── frameworks.yaml │ │ ├── lightcase.html.twig │ │ ├── lightcase.yaml │ │ ├── logo.html.twig │ │ ├── logo.yaml │ │ ├── menu.html.twig │ │ ├── menu.yaml │ │ ├── messages.yaml │ │ ├── mobile-menu.html.twig │ │ ├── mobile-menu.yaml │ │ ├── position.html.twig │ │ ├── position.yaml │ │ ├── social.html.twig │ │ ├── social.yaml │ │ ├── spacer.yaml │ │ ├── totop.html.twig │ │ └── totop.yaml │ │ ├── scss │ │ ├── configuration │ │ │ └── nucleus │ │ │ │ ├── _base.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fontawesome.scss │ │ │ │ ├── _layout.scss │ │ │ │ └── _typography.scss │ │ ├── custom.scss │ │ ├── nucleus.scss │ │ ├── nucleus │ │ │ ├── _core.scss │ │ │ ├── _flex.scss │ │ │ ├── _forms.scss │ │ │ ├── _nav.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _sizes.scss │ │ │ ├── _typography.scss │ │ │ ├── _utilities.scss │ │ │ ├── functions │ │ │ │ ├── _base.scss │ │ │ │ ├── _direction.scss │ │ │ │ ├── _range.scss │ │ │ │ └── _utilities.scss │ │ │ ├── mixins │ │ │ │ ├── _base.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _sizes.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── _utilities.scss │ │ │ └── theme │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _base.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── breakpoints │ │ │ │ ├── _base.scss │ │ │ │ ├── _flex.scss │ │ │ │ └── _utilities.scss │ │ │ │ └── mixins │ │ │ │ ├── _base.scss │ │ │ │ └── _typography.scss │ │ └── vendor │ │ │ ├── .DS_Store │ │ │ ├── bourbon │ │ │ ├── _bourbon-deprecate.scss │ │ │ ├── _bourbon-deprecated-upcoming.scss │ │ │ ├── _bourbon.scss │ │ │ ├── addons │ │ │ │ ├── _border-color.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _border-style.scss │ │ │ │ ├── _border-width.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _ellipsis.scss │ │ │ │ ├── _font-stacks.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _margin.scss │ │ │ │ ├── _padding.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _prefixer.scss │ │ │ │ ├── _retina-image.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _text-inputs.scss │ │ │ │ ├── _timing-functions.scss │ │ │ │ ├── _triangle.scss │ │ │ │ └── _word-wrap.scss │ │ │ ├── css3 │ │ │ │ ├── _animation.scss │ │ │ │ ├── _appearance.scss │ │ │ │ ├── _backface-visibility.scss │ │ │ │ ├── _background-image.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _border-image.scss │ │ │ │ ├── _calc.scss │ │ │ │ ├── _columns.scss │ │ │ │ ├── _filter.scss │ │ │ │ ├── _flex-box.scss │ │ │ │ ├── _font-face.scss │ │ │ │ ├── _font-feature-settings.scss │ │ │ │ ├── _hidpi-media-query.scss │ │ │ │ ├── _hyphens.scss │ │ │ │ ├── _image-rendering.scss │ │ │ │ ├── _keyframes.scss │ │ │ │ ├── _linear-gradient.scss │ │ │ │ ├── _perspective.scss │ │ │ │ ├── _placeholder.scss │ │ │ │ ├── _radial-gradient.scss │ │ │ │ ├── _selection.scss │ │ │ │ ├── _text-decoration.scss │ │ │ │ ├── _transform.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _user-select.scss │ │ │ ├── functions │ │ │ │ ├── _assign-inputs.scss │ │ │ │ ├── _contains-falsy.scss │ │ │ │ ├── _contains.scss │ │ │ │ ├── _is-length.scss │ │ │ │ ├── _is-light.scss │ │ │ │ ├── _is-number.scss │ │ │ │ ├── _is-size.scss │ │ │ │ ├── _modular-scale.scss │ │ │ │ ├── _px-to-em.scss │ │ │ │ ├── _px-to-rem.scss │ │ │ │ ├── _shade.scss │ │ │ │ ├── _strip-units.scss │ │ │ │ ├── _tint.scss │ │ │ │ ├── _transition-property-name.scss │ │ │ │ └── _unpack.scss │ │ │ ├── helpers │ │ │ │ ├── _convert-units.scss │ │ │ │ ├── _directional-values.scss │ │ │ │ ├── _font-source-declaration.scss │ │ │ │ ├── _gradient-positions-parser.scss │ │ │ │ ├── _linear-angle-parser.scss │ │ │ │ ├── _linear-gradient-parser.scss │ │ │ │ ├── _linear-positions-parser.scss │ │ │ │ ├── _linear-side-corner-parser.scss │ │ │ │ ├── _radial-arg-parser.scss │ │ │ │ ├── _radial-gradient-parser.scss │ │ │ │ ├── _radial-positions-parser.scss │ │ │ │ ├── _render-gradients.scss │ │ │ │ ├── _shape-size-stripper.scss │ │ │ │ └── _str-to-num.scss │ │ │ └── settings │ │ │ │ ├── _asset-pipeline.scss │ │ │ │ ├── _deprecation-warnings.scss │ │ │ │ ├── _prefixer.scss │ │ │ │ └── _px-to-em.scss │ │ │ └── color-schemer │ │ │ ├── _color-schemer.scss │ │ │ └── color-schemer │ │ │ ├── _cmyk.scss │ │ │ ├── _color-adjustments.scss │ │ │ ├── _color-schemer.scss │ │ │ ├── _colorblind.scss │ │ │ ├── _comparison.scss │ │ │ ├── _equalize.scss │ │ │ ├── _harmonize.scss │ │ │ ├── _interpolation.scss │ │ │ ├── _mix.scss │ │ │ ├── _mixins.scss │ │ │ ├── _ryb.scss │ │ │ └── _tint-shade.scss │ │ ├── templates │ │ ├── content │ │ │ ├── atom.html.twig │ │ │ ├── missing.html.twig │ │ │ ├── particle.html.twig │ │ │ ├── position.html.twig │ │ │ ├── spacer.html.twig │ │ │ ├── system.html.twig │ │ │ └── unknown.html.twig │ │ ├── layout │ │ │ ├── atoms.html.twig │ │ │ ├── block.html.twig │ │ │ ├── container.html.twig │ │ │ ├── grid.html.twig │ │ │ ├── offcanvas.html.twig │ │ │ ├── section.html.twig │ │ │ └── wrapper.html.twig │ │ ├── page.html.twig │ │ ├── page_head.html.twig │ │ └── partials │ │ │ └── particle.html.twig │ │ └── yarn.lock ├── grav │ └── nucleus │ │ ├── blueprints │ │ └── pages │ │ │ ├── blog_item.yaml │ │ │ ├── blog_list.yaml │ │ │ ├── form.yaml │ │ │ └── modular │ │ │ ├── features.yaml │ │ │ ├── showcase.yaml │ │ │ └── text.yaml │ │ ├── particles │ │ ├── breadcrumbs.html.twig │ │ ├── breadcrumbs.yaml │ │ ├── contentarray.html.twig │ │ ├── contentarray.yaml │ │ ├── feed.html.twig │ │ ├── feed.yaml │ │ ├── langswitcher.html.twig │ │ ├── langswitcher.yaml │ │ ├── login.html.twig │ │ ├── login.yaml │ │ ├── search.html.twig │ │ └── search.yaml │ │ ├── scss │ │ ├── configuration │ │ │ └── grav │ │ │ │ ├── _base.scss │ │ │ │ ├── _bullets.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── _variables.scss │ │ ├── grav.scss │ │ └── grav │ │ │ ├── _base.scss │ │ │ └── theme │ │ │ ├── _base.scss │ │ │ ├── _blog.scss │ │ │ ├── _extensions.scss │ │ │ ├── _modular.scss │ │ │ ├── _simplesearch.scss │ │ │ └── modular │ │ │ ├── _all.scss │ │ │ ├── _features.scss │ │ │ ├── _showcase.scss │ │ │ └── _text.scss │ │ └── templates │ │ ├── blog_item.html.twig │ │ ├── blog_list.html.twig │ │ ├── default.html.twig │ │ ├── error.html.twig │ │ ├── form.html.twig │ │ ├── formdata.html.twig │ │ ├── modular.html.twig │ │ ├── modular │ │ ├── features.html.twig │ │ ├── showcase.html.twig │ │ └── text.html.twig │ │ ├── module-chrome │ │ ├── gantry.html.twig │ │ └── none.html.twig │ │ ├── offline.html.twig │ │ ├── partials │ │ ├── author.html.twig │ │ ├── base.html.twig │ │ ├── blog_item.html.twig │ │ ├── metadata.html.twig │ │ ├── module.html.twig │ │ ├── page.html.twig │ │ └── page_head.html.twig │ │ ├── particle.html.twig │ │ ├── particle.json.twig │ │ └── snipcart.html.twig ├── joomla │ └── nucleus │ │ ├── css-compiled │ │ ├── bootstrap5-rtl.css │ │ ├── bootstrap5.css │ │ └── joomla.css │ │ ├── images │ │ ├── select-bg-active-rtl.svg │ │ ├── select-bg-active.svg │ │ ├── select-bg-rtl.svg │ │ └── select-bg.svg │ │ ├── layouts │ │ ├── _joomla_-_beez3.yaml │ │ ├── _joomla_-_gantry4.yaml │ │ └── _joomla_-_protostar.yaml │ │ ├── particles │ │ ├── contentarray.html.twig │ │ ├── contentarray.yaml │ │ ├── frameworks.html.twig │ │ ├── frameworks.yaml │ │ ├── module.html.twig │ │ ├── module.yaml │ │ ├── position.html.twig │ │ └── position.yaml │ │ ├── scss │ │ ├── bootstrap5.scss │ │ ├── joomla.scss │ │ ├── joomla │ │ │ ├── _buttons.scss │ │ │ ├── _forms.scss │ │ │ ├── _offline.scss │ │ │ ├── _svg-fixes.scss │ │ │ ├── _tabs.scss │ │ │ ├── _typography.scss │ │ │ ├── _utilities.scss │ │ │ └── theme │ │ │ │ ├── _base.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── breakpoints │ │ │ │ ├── _base.scss │ │ │ │ ├── _bootstrap.scss │ │ │ │ ├── _forms.scss │ │ │ │ └── _utilities.scss │ │ └── vendor │ │ │ ├── .DS_Store │ │ │ ├── bootstrap5 │ │ │ ├── .DS_Store │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _containers.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _helpers.scss │ │ │ ├── _images.scss │ │ │ ├── _list-group.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap-utilities.scss │ │ │ ├── bootstrap.scss │ │ │ ├── forms │ │ │ │ ├── _floating-labels.scss │ │ │ │ ├── _form-check.scss │ │ │ │ ├── _form-control.scss │ │ │ │ ├── _form-range.scss │ │ │ │ ├── _form-select.scss │ │ │ │ ├── _form-text.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _labels.scss │ │ │ │ └── _validation.scss │ │ │ ├── helpers │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _colored-links.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _ratio.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text-truncation.scss │ │ │ │ └── _visually-hidden.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _color-scheme.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _table-variants.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ ├── _utilities.scss │ │ │ │ └── _visually-hidden.scss │ │ │ ├── utilities │ │ │ │ └── _api.scss │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ │ └── cassiopeia │ │ │ ├── .DS_Store │ │ │ ├── _choices.scss │ │ │ ├── _css-grid.scss │ │ │ ├── _form.scss │ │ │ ├── _icons.scss │ │ │ ├── _iframe.scss │ │ │ ├── _modal.scss │ │ │ ├── _modifiers.scss │ │ │ ├── _searchtools.scss │ │ │ ├── _toolbar.scss │ │ │ ├── _variables.scss │ │ │ └── images │ │ │ ├── select-bg-active-rtl.svg │ │ │ ├── select-bg-active.svg │ │ │ ├── select-bg-rtl.svg │ │ │ └── select-bg.svg │ │ └── twig │ │ ├── component.html.twig │ │ ├── error.html.twig │ │ ├── index.html.twig │ │ ├── offline.html.twig │ │ ├── partials │ │ ├── error_head.html.twig │ │ ├── page.html.twig │ │ └── page_head.html.twig │ │ └── raw.html.twig └── wordpress │ └── nucleus │ ├── css-compiled │ └── wordpress.css │ ├── languages │ ├── nucleus-en_US.mo │ └── nucleus-en_US.po │ ├── particles │ ├── contentarray.html.twig │ ├── contentarray.yaml │ ├── loginform.html.twig │ ├── loginform.yaml │ ├── menu.yaml │ ├── position.html.twig │ ├── position.yaml │ ├── widget.html.twig │ └── widget.yaml │ ├── scss │ ├── wordpress.scss │ └── wordpress │ │ ├── _captions.scss │ │ ├── _comments.scss │ │ ├── _core.scss │ │ ├── _meta.scss │ │ ├── _pagination.scss │ │ ├── _particles.scss │ │ ├── _screen-readers.scss │ │ ├── _shortcodes.scss │ │ ├── _typography.scss │ │ ├── _utilities.scss │ │ ├── _widgets.scss │ │ └── theme │ │ ├── _base.scss │ │ └── _forms.scss │ └── views │ └── partials │ ├── messages.html.twig │ ├── page.html.twig │ └── page_head.html.twig ├── gulpfile.js ├── hebe.json ├── package-lock.json ├── package.json ├── php_errors.log ├── phpunit.xml.dist ├── platforms ├── common │ ├── application │ │ ├── assignments │ │ │ └── index.js │ │ ├── changelog │ │ │ └── index.js │ │ ├── configurations │ │ │ ├── dropdown-edit.js │ │ │ └── index.js │ │ ├── fields │ │ │ ├── index.js │ │ │ ├── multicheckbox.js │ │ │ └── submit.js │ │ ├── lm │ │ │ ├── blocks │ │ │ │ ├── atom.js │ │ │ │ ├── atoms.js │ │ │ │ ├── base.js │ │ │ │ ├── block.js │ │ │ │ ├── container.js │ │ │ │ ├── grid.js │ │ │ │ ├── index.js │ │ │ │ ├── offcanvas.js │ │ │ │ ├── particle.js │ │ │ │ ├── position.js │ │ │ │ ├── section.js │ │ │ │ ├── spacer.js │ │ │ │ ├── system.js │ │ │ │ └── wrapper.js │ │ │ ├── builder.js │ │ │ ├── drag.resizer.js │ │ │ ├── history.js │ │ │ ├── id.js │ │ │ ├── index.js │ │ │ ├── inheritance │ │ │ │ └── index.js │ │ │ ├── layoutmanager.js │ │ │ └── particles-sidebar.js │ │ ├── main.js │ │ ├── menu │ │ │ ├── drag.resizer.js │ │ │ ├── extra-items.js │ │ │ ├── index.js │ │ │ └── menumanager.js │ │ ├── pagesettings │ │ │ └── index.js │ │ ├── particles │ │ │ ├── collections │ │ │ │ └── index.js │ │ │ ├── colorpicker │ │ │ │ └── index.js │ │ │ ├── filepicker │ │ │ │ └── index.js │ │ │ ├── fonts │ │ │ │ └── index.js │ │ │ ├── icons │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── instancepicker │ │ │ │ └── index.js │ │ │ ├── keyvalue │ │ │ │ └── index.js │ │ │ └── menu │ │ │ │ └── index.js │ │ ├── positions │ │ │ ├── cards.js │ │ │ └── index.js │ │ ├── styles │ │ │ └── index.js │ │ ├── ui │ │ │ ├── collapse.js │ │ │ ├── drag.drop.js │ │ │ ├── drag.events.js │ │ │ ├── eraser.js │ │ │ ├── index.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── progresser.js │ │ │ ├── selectize.js │ │ │ ├── toastr.js │ │ │ ├── togglers.js │ │ │ └── tooltips.js │ │ └── utils │ │ │ ├── ajaxify-links.js │ │ │ ├── async-foreach.js │ │ │ ├── cookie.js │ │ │ ├── decouple.js │ │ │ ├── elements.utils.js │ │ │ ├── elements.viewport.js │ │ │ ├── field-validation.js │ │ │ ├── flags-state.js │ │ │ ├── get-ajax-suffix.js │ │ │ ├── get-ajax-url.js │ │ │ ├── get-outline.js │ │ │ ├── get-scrollbar-width.js │ │ │ ├── history-adapter.js │ │ │ ├── history.js │ │ │ ├── rAF-polyfill.js │ │ │ ├── save-state.js │ │ │ ├── translate.js │ │ │ └── wp-widgets-customizer.js │ ├── blueprints │ │ ├── gantry │ │ │ └── theme │ │ │ │ ├── admin.yaml │ │ │ │ ├── configuration.yaml │ │ │ │ └── details.yaml │ │ └── menu │ │ │ ├── menu.yaml │ │ │ └── menuitem.yaml │ ├── css-compiled │ │ └── g-admin.css │ ├── fonts │ │ ├── roboto_bold_macroman │ │ │ ├── Roboto-Bold-webfont.eot │ │ │ ├── Roboto-Bold-webfont.svg │ │ │ ├── Roboto-Bold-webfont.ttf │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ └── Roboto-Bold-webfont.woff2 │ │ ├── roboto_medium_macroman │ │ │ ├── Roboto-Medium-webfont.eot │ │ │ ├── Roboto-Medium-webfont.svg │ │ │ ├── Roboto-Medium-webfont.ttf │ │ │ ├── Roboto-Medium-webfont.woff │ │ │ └── Roboto-Medium-webfont.woff2 │ │ ├── roboto_regular_macroman │ │ │ ├── Roboto-Regular-webfont.eot │ │ │ ├── Roboto-Regular-webfont.svg │ │ │ ├── Roboto-Regular-webfont.ttf │ │ │ ├── Roboto-Regular-webfont.woff │ │ │ └── Roboto-Regular-webfont.woff2 │ │ └── rockettheme-apps │ │ │ ├── rockettheme-apps.eot │ │ │ ├── rockettheme-apps.svg │ │ │ ├── rockettheme-apps.ttf │ │ │ ├── rockettheme-apps.woff │ │ │ └── rockettheme-apps.woff2 │ ├── gulpfile.js │ ├── images │ │ ├── gantrylogo.png │ │ └── layouts │ │ │ ├── 2-col-left.png │ │ │ ├── 2-col-right.png │ │ │ ├── 3-col-left.png │ │ │ ├── 3-col-right.png │ │ │ ├── 3-col.png │ │ │ ├── body-only.png │ │ │ ├── default.png │ │ │ ├── error.png │ │ │ ├── home.png │ │ │ └── offline.png │ ├── js │ │ ├── google-fonts.json │ │ ├── main.js │ │ └── tooltips.js │ ├── package.json │ ├── scss │ │ ├── admin.scss │ │ ├── admin │ │ │ ├── _assignments.scss │ │ │ ├── _buttons.scss │ │ │ ├── _changelog.scss │ │ │ ├── _configurations.scss │ │ │ ├── _core.scss │ │ │ ├── _fields.scss │ │ │ ├── _fonts.scss │ │ │ ├── _headers.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _layout-manager.scss │ │ │ ├── _main.scss │ │ │ ├── _menu.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _overview.scss │ │ │ ├── _page-settings.scss │ │ │ ├── _popover.scss │ │ │ ├── _positions.scss │ │ │ ├── _rtl.scss │ │ │ ├── _selectize.scss │ │ │ ├── _settings.scss │ │ │ ├── _styles.scss │ │ │ ├── _toastr.scss │ │ │ ├── _tooltips.scss │ │ │ ├── _typography.scss │ │ │ ├── fields │ │ │ │ ├── _colorpicker.scss │ │ │ │ ├── _filepicker.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _keyvalue.scss │ │ │ │ └── _tabs.scss │ │ │ ├── mixins │ │ │ │ ├── _background.scss │ │ │ │ └── _base.scss │ │ │ └── modules │ │ │ │ ├── _base.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _modal.scss │ │ │ │ └── _toggle-ui.scss │ │ └── configuration │ │ │ └── admin │ │ │ ├── _base.scss │ │ │ ├── _colors.scss │ │ │ ├── _core.scss │ │ │ ├── _fontawesome.scss │ │ │ ├── _layout.scss │ │ │ └── _typography.scss │ ├── templates │ │ ├── ajax │ │ │ ├── changelog.html.twig │ │ │ ├── confirm-deletion.html.twig │ │ │ ├── filepicker.html.twig │ │ │ ├── filepicker │ │ │ │ ├── files.html.twig │ │ │ │ └── subfolders.html.twig │ │ │ ├── fontpicker.html.twig │ │ │ ├── icons.html.twig │ │ │ ├── outline-new.html.twig │ │ │ ├── particles-loss.html.twig │ │ │ └── unsaved.html.twig │ │ ├── error.html.twig │ │ ├── forms │ │ │ ├── field.html.twig │ │ │ ├── fields.html.twig │ │ │ ├── fields │ │ │ │ ├── README.md │ │ │ │ ├── button │ │ │ │ │ ├── button.html.twig │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── dropdown-separated.html.twig │ │ │ │ │ │ └── dropdown.html.twig │ │ │ │ │ └── group │ │ │ │ │ │ └── group.html.twig │ │ │ │ ├── checkboxes │ │ │ │ │ └── checkboxes.html.twig │ │ │ │ ├── collection │ │ │ │ │ ├── keyvalue.html.twig │ │ │ │ │ ├── list.html.twig │ │ │ │ │ └── list.yaml │ │ │ │ ├── container │ │ │ │ │ ├── set.html.twig │ │ │ │ │ └── tabs.html.twig │ │ │ │ ├── enable │ │ │ │ │ └── enable.html.twig │ │ │ │ ├── gantry │ │ │ │ │ ├── atoms.html.twig │ │ │ │ │ ├── inherit.html.twig │ │ │ │ │ ├── module.html.twig │ │ │ │ │ ├── outlines.html.twig │ │ │ │ │ ├── particle.html.twig │ │ │ │ │ └── particles.html.twig │ │ │ │ ├── input │ │ │ │ │ ├── block-variations.html.twig │ │ │ │ │ ├── checkbox.html.twig │ │ │ │ │ ├── color.html.twig │ │ │ │ │ ├── colorpicker.html.twig │ │ │ │ │ ├── date.html.twig │ │ │ │ │ ├── datetime-local.html.twig │ │ │ │ │ ├── datetime.html.twig │ │ │ │ │ ├── email.html.twig │ │ │ │ │ ├── file.html.twig │ │ │ │ │ ├── filepicker.html.twig │ │ │ │ │ ├── fonts.html.twig │ │ │ │ │ ├── group │ │ │ │ │ │ └── group.html.twig │ │ │ │ │ ├── hidden.html.twig │ │ │ │ │ ├── icon.html.twig │ │ │ │ │ ├── image.html.twig │ │ │ │ │ ├── imagepicker.html.twig │ │ │ │ │ ├── month.html.twig │ │ │ │ │ ├── multicheckbox.html.twig │ │ │ │ │ ├── number.html.twig │ │ │ │ │ ├── password.html.twig │ │ │ │ │ ├── radio.html.twig │ │ │ │ │ ├── radios.html.twig │ │ │ │ │ ├── range.html.twig │ │ │ │ │ ├── reset.html.twig │ │ │ │ │ ├── search.html.twig │ │ │ │ │ ├── section-variations.html.twig │ │ │ │ │ ├── selectize.html.twig │ │ │ │ │ ├── submit.html.twig │ │ │ │ │ ├── tel.html.twig │ │ │ │ │ ├── text.html.twig │ │ │ │ │ ├── time.html.twig │ │ │ │ │ ├── url.html.twig │ │ │ │ │ ├── videopicker.html.twig │ │ │ │ │ └── week.html.twig │ │ │ │ ├── key │ │ │ │ │ └── key.html.twig │ │ │ │ ├── menu │ │ │ │ │ ├── item.html.twig │ │ │ │ │ └── list.html.twig │ │ │ │ ├── select │ │ │ │ │ ├── date.html.twig │ │ │ │ │ ├── select.html.twig │ │ │ │ │ └── selectize.html.twig │ │ │ │ ├── separator │ │ │ │ │ ├── note.html.twig │ │ │ │ │ └── separator.html.twig │ │ │ │ ├── textarea │ │ │ │ │ ├── editor.html.twig │ │ │ │ │ └── textarea.html.twig │ │ │ │ ├── toggle │ │ │ │ │ └── toggle.html.twig │ │ │ │ └── unknown │ │ │ │ │ └── unknown.html.twig │ │ │ ├── form.html.twig │ │ │ ├── input.html.twig │ │ │ └── override.html.twig │ │ ├── layouts │ │ │ ├── css-warnings.html.twig │ │ │ ├── outline.html.twig │ │ │ ├── picker.html.twig │ │ │ ├── position.html.twig │ │ │ └── switcher.html.twig │ │ ├── menu │ │ │ ├── base.html.twig │ │ │ ├── columns.html.twig │ │ │ ├── empty.html.twig │ │ │ ├── item.html.twig │ │ │ └── list.html.twig │ │ ├── modals │ │ │ ├── atom-preview.html.twig │ │ │ ├── atom.html.twig │ │ │ ├── module-picker.html.twig │ │ │ ├── particle-picker.html.twig │ │ │ └── particle.html.twig │ │ ├── pages │ │ │ ├── about │ │ │ │ └── about.html.twig │ │ │ ├── configurations │ │ │ │ ├── assignments │ │ │ │ │ └── assignments.html.twig │ │ │ │ ├── configurations.html.twig │ │ │ │ ├── confirm-deletion.html.twig │ │ │ │ ├── layouts │ │ │ │ │ ├── container.html.twig │ │ │ │ │ ├── create.html.twig │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ ├── particle-card.html.twig │ │ │ │ │ ├── particle-preview.html.twig │ │ │ │ │ ├── particle.html.twig │ │ │ │ │ └── section.html.twig │ │ │ │ ├── page │ │ │ │ │ ├── atoms.html.twig │ │ │ │ │ └── page.html.twig │ │ │ │ ├── settings │ │ │ │ │ ├── field.html.twig │ │ │ │ │ ├── item.html.twig │ │ │ │ │ └── settings.html.twig │ │ │ │ └── styles │ │ │ │ │ ├── field.html.twig │ │ │ │ │ ├── item.html.twig │ │ │ │ │ └── styles.html.twig │ │ │ ├── custom │ │ │ │ └── notification.html.twig │ │ │ ├── import │ │ │ │ └── import.html.twig │ │ │ ├── install │ │ │ │ └── install.html.twig │ │ │ ├── menu │ │ │ │ ├── edit.html.twig │ │ │ │ ├── menu.html.twig │ │ │ │ ├── menuitem.html.twig │ │ │ │ └── particle.html.twig │ │ │ ├── positions │ │ │ │ ├── assignments.html.twig │ │ │ │ ├── item.html.twig │ │ │ │ ├── particle.html.twig │ │ │ │ └── positions.html.twig │ │ │ └── themes │ │ │ │ └── themes.html.twig │ │ └── partials │ │ │ ├── ajax.html.twig │ │ │ ├── base.html.twig │ │ │ ├── configuration-selector.html.twig │ │ │ ├── field.html.twig │ │ │ ├── gantry-details.html.twig │ │ │ ├── header.html.twig │ │ │ ├── js-translations.html.twig │ │ │ ├── layout.html.twig │ │ │ ├── navigation.html.twig │ │ │ ├── outlines-list.html.twig │ │ │ ├── php_unsupported.html.twig │ │ │ └── updates.html.twig │ ├── translations │ │ ├── en │ │ │ ├── nucleus.yaml │ │ │ └── platform.yaml │ │ └── es │ │ │ ├── nucleus.yaml │ │ │ └── platform.yaml │ └── yarn.lock ├── grav │ └── gantry5 │ │ ├── Debugger.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── admin │ │ ├── blueprints │ │ │ └── menu │ │ │ │ └── menuitem.yaml │ │ ├── css-compiled │ │ │ └── grav-g-admin.css │ │ ├── scss │ │ │ ├── configuration │ │ │ │ └── admin │ │ │ │ │ ├── _base.scss │ │ │ │ │ ├── _colors.scss │ │ │ │ │ └── _typography.scss │ │ │ ├── grav-admin.scss │ │ │ └── grav-admin │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _headers.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _overrides.scss │ │ │ │ ├── _overview.scss │ │ │ │ ├── _settings.scss │ │ │ │ └── _typography.scss │ │ └── templates │ │ │ └── partials │ │ │ ├── header.html.twig │ │ │ └── page.html.twig │ │ ├── blueprints.yaml │ │ ├── cli │ │ └── ChildThemeCommand.php │ │ ├── compat │ │ ├── composer.json │ │ └── composer.lock │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── gantry5.php │ │ ├── gantry5.yaml │ │ ├── hebe.json │ │ ├── pages │ │ ├── gantry.md │ │ ├── offline.md │ │ └── particle.md │ │ ├── permissions.yaml │ │ └── templates │ │ ├── gantry.html.twig │ │ └── gantry.json.twig ├── joomla │ ├── com_gantry5 │ │ ├── admin │ │ │ ├── access.xml │ │ │ ├── blueprints │ │ │ │ └── menu │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── menuitem.yaml │ │ │ ├── config.xml │ │ │ ├── css-compiled │ │ │ │ └── joomla-g-admin.css │ │ │ ├── gantry5.php │ │ │ ├── gantry5.xml │ │ │ ├── install │ │ │ │ └── templates │ │ │ │ │ ├── install.php │ │ │ │ │ ├── style.php │ │ │ │ │ └── update.php │ │ │ ├── js │ │ │ │ └── dark-mode.js │ │ │ ├── language │ │ │ │ └── en-GB │ │ │ │ │ ├── en-GB.com_gantry5.ini │ │ │ │ │ └── en-GB.com_gantry5.sys.ini │ │ │ ├── scss │ │ │ │ ├── configuration │ │ │ │ │ └── admin │ │ │ │ │ │ ├── _base.scss │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ └── _typography.scss │ │ │ │ ├── joomla-admin.scss │ │ │ │ └── joomla-admin │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _dark-mode.scss │ │ │ │ │ ├── _headers.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _overview.scss │ │ │ │ │ ├── _settings.scss │ │ │ │ │ └── _typography.scss │ │ │ └── templates │ │ │ │ ├── forms │ │ │ │ └── fields │ │ │ │ │ └── joomla │ │ │ │ │ └── categories.html.twig │ │ │ │ └── partials │ │ │ │ ├── layout.html.twig │ │ │ │ └── page.html.twig │ │ └── site │ │ │ ├── fields │ │ │ └── particle.php │ │ │ ├── gantry5.php │ │ │ ├── router.php │ │ │ └── views │ │ │ └── custom │ │ │ └── tmpl │ │ │ └── default.xml │ ├── gantry5_nucleus │ │ ├── gantry5_nucleus.xml │ │ ├── install.php │ │ └── language │ │ │ └── en-GB │ │ │ ├── en-GB.files_gantry5_nucleus.ini │ │ │ └── en-GB.files_gantry5_nucleus.sys.ini │ ├── install.php │ ├── language │ │ └── en-GB │ │ │ └── en-GB.pkg_gantry5.sys.ini │ ├── lib_gantry5 │ │ ├── compat │ │ │ ├── composer.json │ │ │ └── composer.lock │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── gantry5.xml │ │ └── language │ │ │ └── en-GB │ │ │ └── en-GB.lib_gantry5.sys.ini │ ├── mod_gantry5_particle │ │ ├── helper.php │ │ ├── language │ │ │ └── en-GB │ │ │ │ ├── en-GB.mod_gantry5_particle.ini │ │ │ │ └── en-GB.mod_gantry5_particle.sys.ini │ │ ├── mod_gantry5_particle.php │ │ └── mod_gantry5_particle.xml │ ├── pkg_gantry5.xml │ ├── plg_gantry5_preset │ │ ├── language │ │ │ └── en-GB │ │ │ │ └── en-GB.plg_gantry5_preset.sys.ini │ │ ├── preset.php │ │ └── preset.xml │ ├── plg_quickicon_gantry5 │ │ ├── gantry5.php │ │ ├── gantry5.xml │ │ └── language │ │ │ └── en-GB │ │ │ └── en-GB.plg_quickicon_gantry5.sys.ini │ ├── plg_system_gantry5 │ │ ├── fields │ │ │ └── warning.php │ │ ├── forms │ │ │ └── menu_item.xml │ │ ├── gantry5.php │ │ ├── gantry5.xml │ │ └── language │ │ │ └── en-GB │ │ │ └── en-GB.plg_system_gantry5.sys.ini │ ├── plg_system_gantry5_debugbar │ │ ├── Debugger.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── gantry5_debugbar.php │ │ ├── gantry5_debugbar.xml │ │ └── language │ │ │ └── en-GB │ │ │ └── en-GB.plg_system_gantry5_debugbar.sys.ini │ └── updates │ │ ├── gantry5_jed.xml │ │ ├── list.xml │ │ ├── pkg_gantry5.xml │ │ ├── tpl_g5_helium.xml │ │ └── tpl_g5_hydrogen.xml └── wordpress │ ├── gantry5 │ ├── admin │ │ ├── blueprints │ │ │ └── menu │ │ │ │ └── menuitem.yaml │ │ ├── css-compiled │ │ │ └── wordpress-g-admin.css │ │ ├── init.php │ │ ├── languages │ │ │ ├── gantry5-en_US.mo │ │ │ └── gantry5-en_US.po │ │ ├── scss │ │ │ ├── configuration │ │ │ │ └── admin │ │ │ │ │ ├── _base.scss │ │ │ │ │ ├── _colors.scss │ │ │ │ │ └── _typography.scss │ │ │ ├── wordpress-admin.scss │ │ │ └── wordpress-admin │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _headers.scss │ │ │ │ ├── _layout-manager.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _overview.scss │ │ │ │ ├── _settings.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── _widgets.scss │ │ ├── settings.php │ │ └── templates │ │ │ ├── forms │ │ │ └── fields │ │ │ │ ├── gantry │ │ │ │ └── widget.html.twig │ │ │ │ └── wordpress │ │ │ │ ├── categories.html.twig │ │ │ │ └── posts.html.twig │ │ │ ├── modals │ │ │ ├── widget-picker.html.twig │ │ │ └── widget.html.twig │ │ │ ├── pages │ │ │ └── configurations │ │ │ │ └── content │ │ │ │ ├── content.html.twig │ │ │ │ ├── field.html.twig │ │ │ │ └── item.html.twig │ │ │ └── partials │ │ │ ├── inline.html.twig │ │ │ ├── navigation.html.twig │ │ │ └── page.html.twig │ ├── compat │ │ ├── composer.json │ │ └── composer.lock │ ├── composer.json │ ├── composer.lock │ ├── gantry5.php │ ├── readme.txt │ └── uninstall.php │ └── gantry5_debugbar │ ├── Debugger.php │ ├── composer.json │ ├── composer.lock │ ├── debugbar.php │ └── readme.txt ├── src ├── Loader.php ├── RealLoader.php ├── bootstrap.php ├── classes │ ├── Gantry │ │ ├── Admin │ │ │ ├── Controller │ │ │ │ ├── Html │ │ │ │ │ ├── About.php │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── Configurations.php │ │ │ │ │ ├── Configurations │ │ │ │ │ │ ├── Assignments.php │ │ │ │ │ │ ├── Layout.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── Settings.php │ │ │ │ │ │ └── Styles.php │ │ │ │ │ ├── Export.php │ │ │ │ │ ├── Import.php │ │ │ │ │ ├── Install.php │ │ │ │ │ ├── Menu.php │ │ │ │ │ ├── Positions.php │ │ │ │ │ └── Themes.php │ │ │ │ └── Json │ │ │ │ │ ├── Atoms.php │ │ │ │ │ ├── Changelog.php │ │ │ │ │ ├── Confirmdeletion.php │ │ │ │ │ ├── Devprod.php │ │ │ │ │ ├── Filepicker.php │ │ │ │ │ ├── Fontpicker.php │ │ │ │ │ ├── Icons.php │ │ │ │ │ ├── Icons │ │ │ │ │ ├── FontAwesome4.php │ │ │ │ │ └── FontAwesome5.php │ │ │ │ │ ├── Layouts.php │ │ │ │ │ ├── Particle.php │ │ │ │ │ └── Unsaved.php │ │ │ ├── Events │ │ │ │ ├── AssigmentsEvent.php │ │ │ │ ├── Event.php │ │ │ │ ├── InitThemeEvent.php │ │ │ │ ├── LayoutEvent.php │ │ │ │ ├── MenuEvent.php │ │ │ │ ├── PageEvent.php │ │ │ │ ├── SettingsEvent.php │ │ │ │ └── StylesEvent.php │ │ │ ├── Page.php │ │ │ ├── Particles.php │ │ │ ├── Styles.php │ │ │ ├── Theme.php │ │ │ └── ThemeList.php │ │ ├── Component │ │ │ ├── Admin │ │ │ │ ├── HtmlController.php │ │ │ │ └── JsonController.php │ │ │ ├── Assignments │ │ │ │ ├── AbstractAssignments.php │ │ │ │ ├── AssignmentFilter.php │ │ │ │ └── AssignmentsInterface.php │ │ │ ├── Collection │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionInterface.php │ │ │ ├── Config │ │ │ │ ├── BlueprintForm.php │ │ │ │ ├── BlueprintSchema.php │ │ │ │ ├── CompiledBase.php │ │ │ │ ├── CompiledBlueprints.php │ │ │ │ ├── CompiledConfig.php │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigFileFinder.php │ │ │ │ ├── Validation.php │ │ │ │ └── ValidationException.php │ │ │ ├── Content │ │ │ │ ├── Block │ │ │ │ │ ├── ContentBlock.php │ │ │ │ │ ├── ContentBlockInterface.php │ │ │ │ │ ├── HtmlBlock.php │ │ │ │ │ └── HtmlBlockInterface.php │ │ │ │ └── Document │ │ │ │ │ └── HtmlDocument.php │ │ │ ├── Controller │ │ │ │ ├── BaseController.php │ │ │ │ ├── HtmlController.php │ │ │ │ ├── JsonController.php │ │ │ │ └── RestfulControllerInterface.php │ │ │ ├── File │ │ │ │ ├── CompiledFile.php │ │ │ │ └── CompiledYamlFile.php │ │ │ ├── Filesystem │ │ │ │ ├── Folder.php │ │ │ │ └── Streams.php │ │ │ ├── Gantry │ │ │ │ └── GantryTrait.php │ │ │ ├── Gettext │ │ │ │ └── Gettext.php │ │ │ ├── Layout │ │ │ │ ├── Layout.php │ │ │ │ ├── LayoutReader.php │ │ │ │ └── Version │ │ │ │ │ ├── Format0.php │ │ │ │ │ ├── Format1.php │ │ │ │ │ └── Format2.php │ │ │ ├── Menu │ │ │ │ ├── AbstractMenu.php │ │ │ │ └── Item.php │ │ │ ├── Outline │ │ │ │ └── OutlineCollection.php │ │ │ ├── Position │ │ │ │ ├── Module.php │ │ │ │ ├── Position.php │ │ │ │ └── Positions.php │ │ │ ├── Remote │ │ │ │ └── Response.php │ │ │ ├── Request │ │ │ │ ├── Input.php │ │ │ │ └── Request.php │ │ │ ├── Response │ │ │ │ ├── HtmlResponse.php │ │ │ │ ├── JsonResponse.php │ │ │ │ ├── RedirectResponse.php │ │ │ │ └── Response.php │ │ │ ├── Router │ │ │ │ ├── Router.php │ │ │ │ └── RouterInterface.php │ │ │ ├── Serializable │ │ │ │ └── Serializable.php │ │ │ ├── Stylesheet │ │ │ │ ├── CssCompiler.php │ │ │ │ ├── CssCompilerInterface.php │ │ │ │ ├── Scss │ │ │ │ │ ├── Compiler.php │ │ │ │ │ ├── Functions.php │ │ │ │ │ └── LegacyCompiler.php │ │ │ │ └── ScssCompiler.php │ │ │ ├── System │ │ │ │ └── Messages.php │ │ │ ├── Theme │ │ │ │ ├── AbstractTheme.php │ │ │ │ ├── ThemeDetails.php │ │ │ │ ├── ThemeInstaller.php │ │ │ │ ├── ThemeInterface.php │ │ │ │ └── ThemeTrait.php │ │ │ ├── Translator │ │ │ │ ├── Translator.php │ │ │ │ └── TranslatorInterface.php │ │ │ ├── Twig │ │ │ │ ├── Node │ │ │ │ │ ├── TwigNodeAssets.php │ │ │ │ │ ├── TwigNodeMarkdown.php │ │ │ │ │ ├── TwigNodePageblock.php │ │ │ │ │ ├── TwigNodeScripts.php │ │ │ │ │ ├── TwigNodeStyles.php │ │ │ │ │ ├── TwigNodeSwitch.php │ │ │ │ │ ├── TwigNodeThrow.php │ │ │ │ │ └── TwigNodeTryCatch.php │ │ │ │ ├── TokenParser │ │ │ │ │ ├── TokenParserAssets.php │ │ │ │ │ ├── TokenParserMarkdown.php │ │ │ │ │ ├── TokenParserPageblock.php │ │ │ │ │ ├── TokenParserScripts.php │ │ │ │ │ ├── TokenParserStyles.php │ │ │ │ │ ├── TokenParserSwitch.php │ │ │ │ │ ├── TokenParserThrow.php │ │ │ │ │ └── TokenParserTryCatch.php │ │ │ │ ├── TwigCacheFilesystem.php │ │ │ │ └── TwigExtension.php │ │ │ ├── Url │ │ │ │ └── Url.php │ │ │ └── Whoops │ │ │ │ └── SystemFacade.php │ │ └── Framework │ │ │ ├── Assignments.php │ │ │ ├── Atoms.php │ │ │ ├── Base │ │ │ ├── Gantry.php │ │ │ ├── Page.php │ │ │ ├── Platform.php │ │ │ ├── Site.php │ │ │ └── Theme.php │ │ │ ├── Configurations.php │ │ │ ├── Exception.php │ │ │ ├── Exporter.php │ │ │ ├── Gantry.php │ │ │ ├── Markdown │ │ │ ├── Parsedown.php │ │ │ ├── ParsedownExtra.php │ │ │ └── ParsedownTrait.php │ │ │ ├── Outlines.php │ │ │ ├── Page.php │ │ │ ├── Positions.php │ │ │ ├── Request.php │ │ │ ├── Services │ │ │ ├── ConfigServiceProvider.php │ │ │ ├── ErrorServiceProvider.php │ │ │ └── StreamsServiceProvider.php │ │ │ ├── Site.php │ │ │ ├── Theme.php │ │ │ ├── ThemeInstaller.php │ │ │ └── Translator.php │ └── Leafo │ │ └── ScssPhp │ │ └── Compiler.php └── platforms │ ├── grav │ └── classes │ │ └── Gantry │ │ ├── Admin │ │ ├── EventListener.php │ │ └── Router.php │ │ ├── Framework │ │ ├── Assignments.php │ │ ├── Document.php │ │ ├── Gantry.php │ │ ├── Importer.php │ │ ├── Menu.php │ │ ├── Page.php │ │ ├── Platform.php │ │ ├── Services │ │ │ └── ErrorServiceProvider.php │ │ ├── Site.php │ │ ├── Theme.php │ │ └── Translator.php │ │ └── Grav │ │ └── Assignments │ │ ├── AssignmentsLanguage.php │ │ ├── AssignmentsPage.php │ │ └── AssignmentsType.php │ ├── joomla │ └── classes │ │ └── Gantry │ │ ├── Admin │ │ ├── EventListener.php │ │ ├── Router.php │ │ └── ThemeList.php │ │ ├── Framework │ │ ├── Assignments.php │ │ ├── Document.php │ │ ├── Exporter.php │ │ ├── Gantry.php │ │ ├── Menu.php │ │ ├── Outlines.php │ │ ├── Page.php │ │ ├── Platform.php │ │ ├── Site.php │ │ ├── Theme.php │ │ ├── ThemeInstaller.php │ │ └── Translator.php │ │ └── Joomla │ │ ├── Assignments │ │ ├── AssignmentsMenu.php │ │ └── AssignmentsStyle.php │ │ ├── CacheHelper.php │ │ ├── Category │ │ ├── Category.php │ │ └── CategoryFinder.php │ │ ├── Contact │ │ ├── Contact.php │ │ └── ContactFinder.php │ │ ├── Content │ │ ├── Content.php │ │ └── ContentFinder.php │ │ ├── Manifest.php │ │ ├── MenuHelper.php │ │ ├── MenuItem │ │ ├── MenuItem.php │ │ └── MenuItemFinder.php │ │ ├── Module │ │ ├── Module.php │ │ ├── ModuleCollection.php │ │ └── ModuleFinder.php │ │ ├── Object │ │ ├── AbstractObject.php │ │ ├── Collection.php │ │ └── Finder.php │ │ ├── StyleHelper.php │ │ └── TemplateInstaller.php │ └── wordpress │ └── classes │ └── Gantry │ ├── Admin │ ├── Content.php │ ├── Controller │ │ ├── Html │ │ │ └── Configurations │ │ │ │ └── Content.php │ │ └── Json │ │ │ └── Widget.php │ ├── EventListener.php │ └── Router.php │ ├── Framework │ ├── Assignments.php │ ├── Document.php │ ├── Exporter.php │ ├── Gantry.php │ ├── Importer.php │ ├── Menu.php │ ├── OutlineChooser.php │ ├── Outlines.php │ ├── Page.php │ ├── Platform.php │ ├── Request.php │ ├── Site.php │ ├── Theme.php │ ├── ThemeInstaller.php │ └── Translator.php │ └── WordPress │ ├── Assignments │ ├── AssignmentsArchive.php │ ├── AssignmentsContext.php │ ├── AssignmentsLanguage.php │ ├── AssignmentsMenu.php │ ├── AssignmentsPost.php │ ├── AssignmentsTaxonomy.php │ └── AssignmentsWalker.php │ ├── Integration │ ├── BuddyPress │ │ ├── Assignments.php │ │ └── BuddyPress.php │ └── WooCommerce │ │ ├── Assignments.php │ │ └── WooCommerce.php │ ├── MultiLanguage │ ├── MultiLantuageInterface.php │ ├── PolyLang.php │ ├── WordPress.php │ └── Wpml.php │ ├── NavMenuEditWalker.php │ ├── PostQuery.php │ ├── Utilities.php │ ├── Widget │ └── Particle.php │ └── Widgets.php ├── tests └── php83 │ ├── Component │ ├── Layout │ │ └── LayoutTest.php │ ├── PHP83TypesTest.php │ └── TwigTest.php │ ├── Framework │ ├── GantryMock.php │ └── GantryTest.php │ ├── MockableTest.php │ ├── Platform │ └── PlatformTest.php │ ├── README.md │ ├── bootstrap.php │ ├── phpunit.phar │ └── scripts │ └── run-tests.sh ├── themes ├── README.md ├── base │ └── joomla │ │ ├── component.php │ │ ├── error.php │ │ ├── fields │ │ └── warning.php │ │ ├── html │ │ ├── layouts │ │ │ ├── chromes │ │ │ │ └── gantry.php │ │ │ └── joomla │ │ │ │ └── system │ │ │ │ └── message.php │ │ └── modules.php │ │ ├── includes │ │ └── gantry.php │ │ ├── index.php │ │ ├── install.php │ │ ├── install │ │ ├── menus.yaml │ │ ├── outlines.yaml │ │ └── templates │ │ │ ├── install.html.twig │ │ │ └── update.html.twig │ │ ├── language │ │ └── en-GB │ │ │ ├── en-GB.tpl_g5_base.ini │ │ │ └── en-GB.tpl_g5_base.sys.ini │ │ ├── offline.php │ │ ├── templateDetails.xml │ │ ├── template_preview.png │ │ └── template_thumbnail.png ├── helium-child │ └── wordpress │ │ ├── functions.php │ │ ├── gantry │ │ └── theme.yaml │ │ ├── includes │ │ └── theme.php │ │ ├── screenshot.jpg │ │ └── style.css ├── helium │ ├── common │ │ ├── admin │ │ │ ├── images │ │ │ │ ├── preset1.png │ │ │ │ ├── preset2.png │ │ │ │ ├── preset3.png │ │ │ │ ├── preset4.png │ │ │ │ ├── preset5.png │ │ │ │ └── preset6.png │ │ │ └── templates │ │ │ │ └── pages │ │ │ │ └── about │ │ │ │ └── about.html.twig │ │ ├── blueprints │ │ │ └── styles │ │ │ │ ├── above.yaml │ │ │ │ ├── accent.yaml │ │ │ │ ├── base.yaml │ │ │ │ ├── breakpoints.yaml │ │ │ │ ├── expanded.yaml │ │ │ │ ├── features.yaml │ │ │ │ ├── font.yaml │ │ │ │ ├── footer.yaml │ │ │ │ ├── header.yaml │ │ │ │ ├── intro.yaml │ │ │ │ ├── link.yaml │ │ │ │ ├── menu.yaml │ │ │ │ ├── navigation.yaml │ │ │ │ ├── offcanvas.yaml │ │ │ │ ├── testimonials.yaml │ │ │ │ └── utility.yaml │ │ ├── config │ │ │ └── default │ │ │ │ ├── page │ │ │ │ └── body.yaml │ │ │ │ └── particles │ │ │ │ ├── branding.yaml │ │ │ │ ├── copyright.yaml │ │ │ │ ├── logo.yaml │ │ │ │ ├── social.yaml │ │ │ │ └── totop.yaml │ │ ├── fonts │ │ │ ├── lato │ │ │ │ ├── lato-black │ │ │ │ │ ├── lato-black-webfont.eot │ │ │ │ │ ├── lato-black-webfont.svg │ │ │ │ │ ├── lato-black-webfont.ttf │ │ │ │ │ ├── lato-black-webfont.woff │ │ │ │ │ └── lato-black-webfont.woff2 │ │ │ │ ├── lato-blackitalic │ │ │ │ │ ├── lato-blackitalic-webfont.eot │ │ │ │ │ ├── lato-blackitalic-webfont.svg │ │ │ │ │ ├── lato-blackitalic-webfont.ttf │ │ │ │ │ ├── lato-blackitalic-webfont.woff │ │ │ │ │ └── lato-blackitalic-webfont.woff2 │ │ │ │ ├── lato-bold │ │ │ │ │ ├── lato-bold-webfont.eot │ │ │ │ │ ├── lato-bold-webfont.svg │ │ │ │ │ ├── lato-bold-webfont.ttf │ │ │ │ │ ├── lato-bold-webfont.woff │ │ │ │ │ └── lato-bold-webfont.woff2 │ │ │ │ ├── lato-bolditalic │ │ │ │ │ ├── lato-bolditalic-webfont.eot │ │ │ │ │ ├── lato-bolditalic-webfont.svg │ │ │ │ │ ├── lato-bolditalic-webfont.ttf │ │ │ │ │ ├── lato-bolditalic-webfont.woff │ │ │ │ │ └── lato-bolditalic-webfont.woff2 │ │ │ │ ├── lato-italic │ │ │ │ │ ├── lato-italic-webfont.eot │ │ │ │ │ ├── lato-italic-webfont.svg │ │ │ │ │ ├── lato-italic-webfont.ttf │ │ │ │ │ ├── lato-italic-webfont.woff │ │ │ │ │ └── lato-italic-webfont.woff2 │ │ │ │ ├── lato-light │ │ │ │ │ ├── lato-light-webfont.eot │ │ │ │ │ ├── lato-light-webfont.svg │ │ │ │ │ ├── lato-light-webfont.ttf │ │ │ │ │ ├── lato-light-webfont.woff │ │ │ │ │ └── lato-light-webfont.woff2 │ │ │ │ ├── lato-lightitalic │ │ │ │ │ ├── lato-lightitalic-webfont.eot │ │ │ │ │ ├── lato-lightitalic-webfont.svg │ │ │ │ │ ├── lato-lightitalic-webfont.ttf │ │ │ │ │ ├── lato-lightitalic-webfont.woff │ │ │ │ │ └── lato-lightitalic-webfont.woff2 │ │ │ │ └── lato-regular │ │ │ │ │ ├── lato-regular-webfont.eot │ │ │ │ │ ├── lato-regular-webfont.svg │ │ │ │ │ ├── lato-regular-webfont.ttf │ │ │ │ │ ├── lato-regular-webfont.woff │ │ │ │ │ └── lato-regular-webfont.woff2 │ │ │ ├── raleway │ │ │ │ ├── raleway-black │ │ │ │ │ ├── raleway-black-webfont.eot │ │ │ │ │ ├── raleway-black-webfont.svg │ │ │ │ │ ├── raleway-black-webfont.ttf │ │ │ │ │ ├── raleway-black-webfont.woff │ │ │ │ │ └── raleway-black-webfont.woff2 │ │ │ │ ├── raleway-blackitalic │ │ │ │ │ ├── raleway-blackitalic-webfont.eot │ │ │ │ │ ├── raleway-blackitalic-webfont.svg │ │ │ │ │ ├── raleway-blackitalic-webfont.ttf │ │ │ │ │ ├── raleway-blackitalic-webfont.woff │ │ │ │ │ └── raleway-blackitalic-webfont.woff2 │ │ │ │ ├── raleway-bold │ │ │ │ │ ├── raleway-bold-webfont.eot │ │ │ │ │ ├── raleway-bold-webfont.svg │ │ │ │ │ ├── raleway-bold-webfont.ttf │ │ │ │ │ ├── raleway-bold-webfont.woff │ │ │ │ │ └── raleway-bold-webfont.woff2 │ │ │ │ ├── raleway-bolditalic │ │ │ │ │ ├── raleway-bolditalic-webfont.eot │ │ │ │ │ ├── raleway-bolditalic-webfont.svg │ │ │ │ │ ├── raleway-bolditalic-webfont.ttf │ │ │ │ │ ├── raleway-bolditalic-webfont.woff │ │ │ │ │ └── raleway-bolditalic-webfont.woff2 │ │ │ │ ├── raleway-italic │ │ │ │ │ ├── raleway-italic-webfont.eot │ │ │ │ │ ├── raleway-italic-webfont.svg │ │ │ │ │ ├── raleway-italic-webfont.ttf │ │ │ │ │ ├── raleway-italic-webfont.woff │ │ │ │ │ └── raleway-italic-webfont.woff2 │ │ │ │ ├── raleway-light │ │ │ │ │ ├── raleway-light-webfont.eot │ │ │ │ │ ├── raleway-light-webfont.svg │ │ │ │ │ ├── raleway-light-webfont.ttf │ │ │ │ │ ├── raleway-light-webfont.woff │ │ │ │ │ └── raleway-light-webfont.woff2 │ │ │ │ ├── raleway-lightitalic │ │ │ │ │ ├── raleway-lightitalic-webfont.eot │ │ │ │ │ ├── raleway-lightitalic-webfont.svg │ │ │ │ │ ├── raleway-lightitalic-webfont.ttf │ │ │ │ │ ├── raleway-lightitalic-webfont.woff │ │ │ │ │ └── raleway-lightitalic-webfont.woff2 │ │ │ │ ├── raleway-medium │ │ │ │ │ ├── raleway-medium-webfont.eot │ │ │ │ │ ├── raleway-medium-webfont.svg │ │ │ │ │ ├── raleway-medium-webfont.ttf │ │ │ │ │ ├── raleway-medium-webfont.woff │ │ │ │ │ └── raleway-medium-webfont.woff2 │ │ │ │ ├── raleway-mediumitalic │ │ │ │ │ ├── raleway-mediumitalic-webfont.eot │ │ │ │ │ ├── raleway-mediumitalic-webfont.svg │ │ │ │ │ ├── raleway-mediumitalic-webfont.ttf │ │ │ │ │ ├── raleway-mediumitalic-webfont.woff │ │ │ │ │ └── raleway-mediumitalic-webfont.woff2 │ │ │ │ ├── raleway-regular │ │ │ │ │ ├── raleway-regular-webfont.eot │ │ │ │ │ ├── raleway-regular-webfont.svg │ │ │ │ │ ├── raleway-regular-webfont.ttf │ │ │ │ │ ├── raleway-regular-webfont.woff │ │ │ │ │ └── raleway-regular-webfont.woff2 │ │ │ │ ├── raleway-semibold │ │ │ │ │ ├── raleway-semibold-webfont.eot │ │ │ │ │ ├── raleway-semibold-webfont.svg │ │ │ │ │ ├── raleway-semibold-webfont.ttf │ │ │ │ │ ├── raleway-semibold-webfont.woff │ │ │ │ │ └── raleway-semibold-webfont.woff2 │ │ │ │ └── raleway-semibolditalic │ │ │ │ │ ├── raleway-semibolditalic-webfont.eot │ │ │ │ │ ├── raleway-semibolditalic-webfont.svg │ │ │ │ │ ├── raleway-semibolditalic-webfont.ttf │ │ │ │ │ ├── raleway-semibolditalic-webfont.woff │ │ │ │ │ └── raleway-semibolditalic-webfont.woff2 │ │ │ └── rockettheme-apps │ │ │ │ ├── rockettheme-apps.eot │ │ │ │ ├── rockettheme-apps.svg │ │ │ │ ├── rockettheme-apps.ttf │ │ │ │ ├── rockettheme-apps.woff │ │ │ │ └── rockettheme-apps.woff2 │ │ ├── gantry │ │ │ └── presets.yaml │ │ ├── images │ │ │ ├── above │ │ │ │ ├── img01.jpeg │ │ │ │ └── img02.jpeg │ │ │ ├── header │ │ │ │ ├── img01.jpg │ │ │ │ └── img02.jpg │ │ │ ├── intro │ │ │ │ └── mockup.png │ │ │ ├── owlcarousel │ │ │ │ ├── ajax-loader.gif │ │ │ │ └── owl.video.play.png │ │ │ ├── styles │ │ │ │ ├── preset1.png │ │ │ │ ├── preset2.png │ │ │ │ ├── preset3.png │ │ │ │ ├── preset4.png │ │ │ │ ├── preset5.png │ │ │ │ └── preset6.png │ │ │ └── testimonials │ │ │ │ ├── face.jpg │ │ │ │ └── img01.jpg │ │ ├── js │ │ │ ├── juitabs.js │ │ │ └── owl.carousel.min.js │ │ ├── layouts │ │ │ ├── _body_only.yaml │ │ │ ├── _error.yaml │ │ │ ├── _offline.yaml │ │ │ ├── default.yaml │ │ │ └── home_-_particles.yaml │ │ ├── particles │ │ │ ├── contentcubes.html.twig │ │ │ ├── contentcubes.yaml │ │ │ ├── contenttabs.html.twig │ │ │ ├── contenttabs.yaml │ │ │ ├── copyright.html.twig │ │ │ ├── copyright.yaml │ │ │ ├── horizontalmenu.html.twig │ │ │ ├── horizontalmenu.yaml │ │ │ ├── owlcarousel.html.twig │ │ │ ├── owlcarousel.yaml │ │ │ └── totop.html.twig │ │ └── scss │ │ │ ├── _dependencies.scss │ │ │ ├── configuration │ │ │ ├── _base.scss │ │ │ ├── _colors.scss │ │ │ ├── _core.scss │ │ │ ├── _nav.scss │ │ │ ├── _offcanvas.scss │ │ │ └── _typography.scss │ │ │ ├── helium.scss │ │ │ └── helium │ │ │ ├── layouts │ │ │ ├── _error.scss │ │ │ └── _offline.scss │ │ │ ├── particles │ │ │ ├── _contentarray.scss │ │ │ ├── _contentcubes.scss │ │ │ ├── _contenttabs.scss │ │ │ ├── _horizontalmenu.scss │ │ │ ├── _logo.scss │ │ │ ├── _owlcarousel.scss │ │ │ ├── _social.scss │ │ │ └── _totop.scss │ │ │ ├── sections │ │ │ ├── _above.scss │ │ │ ├── _aside.scss │ │ │ ├── _expanded.scss │ │ │ ├── _features.scss │ │ │ ├── _footer.scss │ │ │ ├── _header.scss │ │ │ ├── _intro.scss │ │ │ ├── _main.scss │ │ │ ├── _mainnav.scss │ │ │ ├── _navigation.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagesurround.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _testimonials.scss │ │ │ └── _utility.scss │ │ │ └── styles │ │ │ ├── _buttons.scss │ │ │ ├── _core.scss │ │ │ ├── _dropdownanimations.scss │ │ │ ├── _fonts.scss │ │ │ ├── _forms.scss │ │ │ ├── _helium-style.scss │ │ │ ├── _hyperlinks.scss │ │ │ ├── _tables.scss │ │ │ ├── _typography.scss │ │ │ ├── _utilities.scss │ │ │ └── _variations.scss │ ├── grav │ │ ├── blueprints.yaml │ │ ├── g5_helium.yaml │ │ ├── gantry │ │ │ └── theme.yaml │ │ ├── includes │ │ │ └── theme.php │ │ ├── screenshot.jpg │ │ ├── scss │ │ │ ├── helium-grav.scss │ │ │ └── helium-grav │ │ │ │ └── _core.scss │ │ ├── theme.php │ │ └── thumbnail.jpg │ ├── joomla │ │ ├── component.php │ │ ├── error.php │ │ ├── fields │ │ │ └── warning.php │ │ ├── gantry │ │ │ └── theme.yaml │ │ ├── html │ │ │ ├── layouts │ │ │ │ ├── chromes │ │ │ │ │ └── gantry.php │ │ │ │ └── joomla │ │ │ │ │ └── system │ │ │ │ │ └── message.php │ │ │ └── modules.php │ │ ├── includes │ │ │ ├── gantry.php │ │ │ └── theme.php │ │ ├── index.php │ │ ├── install.php │ │ ├── install │ │ │ ├── menus.yaml │ │ │ ├── outlines.yaml │ │ │ └── templates │ │ │ │ ├── install.html.twig │ │ │ │ ├── style.html.twig │ │ │ │ └── update.html.twig │ │ ├── language │ │ │ └── en-GB │ │ │ │ ├── en-GB.tpl_g5_helium.ini │ │ │ │ └── en-GB.tpl_g5_helium.sys.ini │ │ ├── offline.php │ │ ├── scss │ │ │ ├── helium-joomla.scss │ │ │ └── helium-joomla │ │ │ │ ├── components │ │ │ │ ├── _contact.scss │ │ │ │ ├── _content.scss │ │ │ │ ├── _search.scss │ │ │ │ └── _users.scss │ │ │ │ ├── particles │ │ │ │ └── _popupmodule.scss │ │ │ │ └── styles │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _modules.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _tags.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── _utilities.scss │ │ ├── templateDetails.xml │ │ ├── template_preview.png │ │ └── template_thumbnail.png │ └── wordpress │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author.php │ │ ├── bbpress.php │ │ ├── blueprints │ │ └── content │ │ │ ├── archive │ │ │ ├── content.yaml │ │ │ ├── featured-image.yaml │ │ │ ├── heading.yaml │ │ │ ├── meta-author.yaml │ │ │ ├── meta-categories.yaml │ │ │ ├── meta-comments.yaml │ │ │ ├── meta-date.yaml │ │ │ ├── meta-tags.yaml │ │ │ ├── read-more.yaml │ │ │ └── title.yaml │ │ │ ├── blog │ │ │ ├── content.yaml │ │ │ ├── featured-image.yaml │ │ │ ├── heading.yaml │ │ │ ├── meta-author.yaml │ │ │ ├── meta-categories.yaml │ │ │ ├── meta-comments.yaml │ │ │ ├── meta-date.yaml │ │ │ ├── meta-tags.yaml │ │ │ ├── query.yaml │ │ │ ├── read-more.yaml │ │ │ └── title.yaml │ │ │ ├── general │ │ │ └── wpautop.yaml │ │ │ ├── page │ │ │ ├── featured-image.yaml │ │ │ ├── meta-author.yaml │ │ │ ├── meta-date.yaml │ │ │ └── title.yaml │ │ │ └── single │ │ │ ├── featured-image.yaml │ │ │ ├── meta-author.yaml │ │ │ ├── meta-categories.yaml │ │ │ ├── meta-comments.yaml │ │ │ ├── meta-date.yaml │ │ │ ├── meta-tags.yaml │ │ │ └── title.yaml │ │ ├── buddypress.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.example.php │ │ ├── functions.php │ │ ├── gantry │ │ └── theme.yaml │ │ ├── header.php │ │ ├── includes │ │ ├── gantry.php │ │ ├── helper.php │ │ └── theme.php │ │ ├── index.php │ │ ├── install.php │ │ ├── install │ │ ├── outlines.yaml │ │ └── outlines │ │ │ └── home_-_particles │ │ │ ├── assignments.yaml │ │ │ └── index.yaml │ │ ├── languages │ │ └── g5_helium.pot │ │ ├── offline.php │ │ ├── page.php │ │ ├── particles │ │ └── loginform.html.twig │ │ ├── screenshot.jpg │ │ ├── scss │ │ ├── configuration-wordpress │ │ │ ├── _base.scss │ │ │ └── _comments.scss │ │ ├── helium-wordpress.scss │ │ └── helium-wordpress │ │ │ ├── _comments.scss │ │ │ ├── _core.scss │ │ │ ├── _meta.scss │ │ │ ├── _pagination.scss │ │ │ ├── _particles.scss │ │ │ └── _widgets.scss │ │ ├── search.php │ │ ├── searchform.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── views │ │ ├── 404.html.twig │ │ ├── archive.html.twig │ │ ├── bbpress.html.twig │ │ ├── buddypress.html.twig │ │ ├── index.html.twig │ │ ├── offline.html.twig │ │ ├── page-plugin.html.twig │ │ ├── page.html.twig │ │ ├── partials │ │ ├── comments.html.twig │ │ ├── content-page.html.twig │ │ ├── content-single.html.twig │ │ ├── content.html.twig │ │ ├── meta-page.html.twig │ │ ├── meta.html.twig │ │ ├── pagination.html.twig │ │ ├── password-form.html.twig │ │ └── sidebar.html.twig │ │ ├── searchform.html.twig │ │ └── single.html.twig ├── hydrogen-child │ └── wordpress │ │ ├── functions.php │ │ ├── gantry │ │ └── theme.yaml │ │ ├── includes │ │ └── theme.php │ │ ├── screenshot.png │ │ └── style.css ├── hydrogen-demo │ ├── common │ │ └── particles │ │ │ ├── team.html.twig │ │ │ ├── team.yaml │ │ │ └── test.yaml │ └── grav │ │ └── pages │ │ ├── 01.home │ │ └── default.md │ │ ├── 02.features │ │ ├── 01.overview │ │ │ └── default.md │ │ ├── 02.particles │ │ │ └── default.md │ │ ├── 03.typography │ │ │ └── default.md │ │ ├── 04.block-variations │ │ │ └── default.md │ │ ├── 05.documentation │ │ │ └── default.md │ │ └── 06.support │ │ │ └── default.md │ │ ├── 04.pages │ │ ├── 01.about-us │ │ │ └── default.md │ │ ├── 02.pricing │ │ │ └── default.md │ │ ├── 03.portfolio │ │ │ └── default.md │ │ ├── 04.blog │ │ │ └── default.md │ │ ├── 05.contact │ │ │ └── default.md │ │ ├── 06.error │ │ │ └── default.md │ │ ├── 07.coming-soon │ │ │ └── default.md │ │ └── 08.offline │ │ │ └── default.md │ │ └── 05.download │ │ └── default.md └── hydrogen │ ├── common │ ├── admin │ │ └── images │ │ │ ├── preset1.png │ │ │ ├── preset2.png │ │ │ ├── preset3.png │ │ │ └── preset4.png │ ├── blueprints │ │ ├── page.yaml │ │ └── styles │ │ │ ├── accent.yaml │ │ │ ├── base.yaml │ │ │ ├── breakpoints.yaml │ │ │ ├── feature.yaml │ │ │ ├── footer.yaml │ │ │ ├── header.yaml │ │ │ ├── main.yaml │ │ │ ├── menu.yaml │ │ │ ├── navigation.yaml │ │ │ ├── offcanvas.yaml │ │ │ ├── showcase.yaml │ │ │ └── subfeature.yaml │ ├── config │ │ └── default │ │ │ └── particles │ │ │ └── logo.yaml │ ├── fonts │ │ ├── roboto_bold_macroman │ │ │ ├── Roboto-Bold-webfont.eot │ │ │ ├── Roboto-Bold-webfont.svg │ │ │ ├── Roboto-Bold-webfont.ttf │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ └── Roboto-Bold-webfont.woff2 │ │ ├── roboto_medium_macroman │ │ │ ├── Roboto-Medium-webfont.eot │ │ │ ├── Roboto-Medium-webfont.svg │ │ │ ├── Roboto-Medium-webfont.ttf │ │ │ ├── Roboto-Medium-webfont.woff │ │ │ └── Roboto-Medium-webfont.woff2 │ │ └── roboto_regular_macroman │ │ │ ├── Roboto-Regular-webfont.eot │ │ │ ├── Roboto-Regular-webfont.svg │ │ │ ├── Roboto-Regular-webfont.ttf │ │ │ ├── Roboto-Regular-webfont.woff │ │ │ └── Roboto-Regular-webfont.woff2 │ ├── gantry │ │ └── presets.yaml │ ├── images │ │ ├── ipad.png │ │ ├── iphone.png │ │ └── macbook.png │ ├── layouts │ │ ├── 2_column_-_left.yaml │ │ ├── 2_column_-_right.yaml │ │ ├── 3_column.yaml │ │ ├── 3_column_-_left.yaml │ │ ├── 3_column_-_right.yaml │ │ ├── _body_only.yaml │ │ ├── _error.yaml │ │ ├── _offline.yaml │ │ ├── default.yaml │ │ └── home.yaml │ ├── particles │ │ ├── sample.html.twig │ │ └── sample.yaml │ └── scss │ │ ├── _dependencies.scss │ │ ├── configuration │ │ ├── _base.scss │ │ ├── _colors.scss │ │ ├── _core.scss │ │ ├── _nav.scss │ │ └── _typography.scss │ │ ├── hydrogen.scss │ │ ├── hydrogen │ │ ├── _contentarray.scss │ │ ├── _core.scss │ │ ├── _dropdownanimations.scss │ │ ├── _feature.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _header.scss │ │ ├── _main.scss │ │ ├── _nav.scss │ │ ├── _offcanvas.scss │ │ ├── _offline.scss │ │ ├── _sample.scss │ │ ├── _showcase.scss │ │ ├── _sidebar.scss │ │ ├── _social.scss │ │ ├── _subfeature.scss │ │ ├── _tables.scss │ │ ├── _typography.scss │ │ └── _variations.scss │ │ └── mixins │ │ ├── _base.scss │ │ └── _nav.scss │ ├── grav │ ├── blueprints.yaml │ ├── g5_hydrogen.yaml │ ├── gantry │ │ └── theme.yaml │ ├── includes │ │ └── theme.php │ ├── screenshot.jpg │ ├── scss │ │ ├── hydrogen-grav.scss │ │ └── hydrogen-grav │ │ │ └── _core.scss │ ├── theme.php │ └── thumbnail.jpg │ ├── joomla │ ├── component.php │ ├── custom │ │ └── .gitkeep │ ├── error.php │ ├── fields │ │ └── warning.php │ ├── gantry │ │ └── theme.yaml │ ├── html │ │ ├── layouts │ │ │ ├── chromes │ │ │ │ └── gantry.php │ │ │ └── joomla │ │ │ │ └── system │ │ │ │ └── message.php │ │ └── modules.php │ ├── includes │ │ ├── gantry.php │ │ └── theme.php │ ├── index.php │ ├── install.php │ ├── install │ │ ├── menus.yaml │ │ ├── outlines.yaml │ │ └── templates │ │ │ ├── install.html.twig │ │ │ ├── style.html.twig │ │ │ └── update.html.twig │ ├── language │ │ └── en-GB │ │ │ ├── en-GB.tpl_g5_hydrogen.ini │ │ │ └── en-GB.tpl_g5_hydrogen.sys.ini │ ├── layouts │ │ ├── _joomla_-_beez3.yaml │ │ └── _joomla_-_protostar.yaml │ ├── offline.php │ ├── scss │ │ ├── hydrogen-joomla.scss │ │ └── hydrogen-joomla │ │ │ ├── _buttons.scss │ │ │ ├── _core.scss │ │ │ ├── _forms.scss │ │ │ ├── _tabs.scss │ │ │ ├── _typography.scss │ │ │ └── _utilities.scss │ ├── templateDetails.xml │ ├── template_preview.png │ └── template_thumbnail.png │ └── wordpress │ ├── 404.php │ ├── archive.php │ ├── author.php │ ├── bbpress.php │ ├── blueprints │ └── content │ │ ├── archive │ │ ├── content.yaml │ │ ├── featured-image.yaml │ │ ├── heading.yaml │ │ ├── meta-author.yaml │ │ ├── meta-categories.yaml │ │ ├── meta-comments.yaml │ │ ├── meta-date.yaml │ │ ├── meta-tags.yaml │ │ ├── read-more.yaml │ │ └── title.yaml │ │ ├── blog │ │ ├── content.yaml │ │ ├── featured-image.yaml │ │ ├── heading.yaml │ │ ├── meta-author.yaml │ │ ├── meta-categories.yaml │ │ ├── meta-comments.yaml │ │ ├── meta-date.yaml │ │ ├── meta-tags.yaml │ │ ├── read-more.yaml │ │ └── title.yaml │ │ ├── general │ │ └── wpautop.yaml │ │ ├── page │ │ ├── featured-image.yaml │ │ ├── meta-author.yaml │ │ ├── meta-date.yaml │ │ └── title.yaml │ │ └── single │ │ ├── featured-image.yaml │ │ ├── meta-author.yaml │ │ ├── meta-categories.yaml │ │ ├── meta-comments.yaml │ │ ├── meta-date.yaml │ │ ├── meta-tags.yaml │ │ └── title.yaml │ ├── buddypress.php │ ├── comments.php │ ├── footer.php │ ├── functions.php │ ├── gantry │ └── theme.yaml │ ├── header.php │ ├── includes │ ├── gantry.php │ ├── helper.php │ └── theme.php │ ├── index.php │ ├── install.php │ ├── install │ ├── outlines.yaml │ └── outlines │ │ └── home │ │ ├── assignments.yaml │ │ └── index.yaml │ ├── languages │ └── g5_hydrogen.pot │ ├── offline.php │ ├── page.php │ ├── screenshot.png │ ├── scss │ ├── hydrogen-wordpress.scss │ └── hydrogen-wordpress │ │ ├── _comments.scss │ │ ├── _core.scss │ │ └── _pagination.scss │ ├── search.php │ ├── searchform.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ └── views │ ├── 404.html.twig │ ├── archive.html.twig │ ├── bbpress.html.twig │ ├── buddypress.html.twig │ ├── index.html.twig │ ├── offline.html.twig │ ├── page-plugin.html.twig │ ├── page.html.twig │ ├── partials │ ├── comments.html.twig │ ├── content-page.html.twig │ ├── content-single.html.twig │ ├── content.html.twig │ ├── meta-page.html.twig │ ├── meta.html.twig │ ├── pagination.html.twig │ ├── password-form.html.twig │ └── sidebar.html.twig │ ├── searchform.html.twig │ └── single.html.twig └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | charset = utf-8 9 | end_of_line = lf 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | indent_style = space 13 | indent_size = 4 14 | 15 | # 2 space indentation 16 | [*.yaml, *.yml] 17 | indent_style = space 18 | indent_size = 2 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Linguist Normalizer 2 | *.yaml linguistic-language=PHP 3 | *.twig linguistic-language=PHP 4 | **/gulpfile.js linguist-vendored 5 | **/hebe.json linguist-vendored 6 | **/js/*.js linguist-vendored 7 | **/js/*.json linguist-vendored 8 | **/css-compiled/*.css linguist-vendored 9 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 5.5.20 2 | -------------------------------------------------------------------------------- /assets/common/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/common/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/common/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/common/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/common/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/common/fonts/lightcase.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/lightcase.eot -------------------------------------------------------------------------------- /assets/common/fonts/lightcase.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/lightcase.ttf -------------------------------------------------------------------------------- /assets/common/fonts/lightcase.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/fonts/lightcase.woff -------------------------------------------------------------------------------- /assets/common/images/gantry5-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/images/gantry5-logo.png -------------------------------------------------------------------------------- /assets/common/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/common/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/common/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/common/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/common/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/common/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/common/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/common/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/common/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/common/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/common/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/common/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/common/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/grav/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/grav/.gitkeep -------------------------------------------------------------------------------- /assets/wordpress/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/wordpress/.gitkeep -------------------------------------------------------------------------------- /assets/wordpress/fonts/Gantry-5.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/wordpress/fonts/Gantry-5.eot -------------------------------------------------------------------------------- /assets/wordpress/fonts/Gantry-5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/wordpress/fonts/Gantry-5.ttf -------------------------------------------------------------------------------- /assets/wordpress/fonts/Gantry-5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/assets/wordpress/fonts/Gantry-5.woff -------------------------------------------------------------------------------- /bin/builder/build.ini: -------------------------------------------------------------------------------- 1 | # The name of your extension's main XML file 2 | cfg.name=gantry5 3 | 4 | # Prefix [pkg_, com_, mod_, plg_, ...] 5 | cfg.prefix=pkg_ 6 | 7 | # Make a Joomla package 8 | cfg.joomla=true 9 | 10 | # Add version number to filename [true|false] 11 | cfg.addversion=true 12 | 13 | # Version prefix 14 | cfg.versionprefix=v 15 | 16 | # Add date to filename [true|false] 17 | cfg.adddate=false 18 | 19 | # Date Format 20 | cfg.datefmt=%Y-%m-%d-%H%M 21 | 22 | # Date format in manifest files 23 | cfg.date=%B %e, %Y 24 | 25 | -------------------------------------------------------------------------------- /bin/builder/custom.type.properties: -------------------------------------------------------------------------------- 1 | sshconfig=Phing\Task\Ext\Ssh2MethodParam 2 | tarfileset=Phing\Task\Ext\TarFileSet 3 | zipfileset=Phing\Task\Ext\ZipFileSet 4 | -------------------------------------------------------------------------------- /engines/common/nucleus/admin/blueprints/layout/inheritance/messages/default.yaml: -------------------------------------------------------------------------------- 1 | name: Inheritance 2 | description: Nothing to inherit tab 3 | type: empty.inheritance 4 | 5 | form: 6 | fields: 7 | _note: 8 | type: separator.note 9 | class: 'alert alert-info blocksize-note' 10 | content: 'You can inherit sections and particles from Base Outline.' 11 | _note2: 12 | type: separator.note 13 | class: 'alert alert-success blocksize-note' 14 | content: 'No Outline is currently inheriting this item.' 15 | -------------------------------------------------------------------------------- /engines/common/nucleus/admin/blueprints/layout/inheritance/messages/empty.yaml: -------------------------------------------------------------------------------- 1 | name: Inheritance 2 | description: Nothing to inherit tab 3 | type: empty.inheritance 4 | 5 | form: 6 | fields: 7 | _note: 8 | type: separator.note 9 | class: 'alert alert-warning blocksize-note' 10 | content: 'This item does not exist in any other Outline and cannot be inherited because of that.' 11 | -------------------------------------------------------------------------------- /engines/common/nucleus/admin/blueprints/layout/inheritance/messages/inherited.yaml: -------------------------------------------------------------------------------- 1 | name: Inheritance 2 | description: Inherited tab 3 | type: inherited.inheritance 4 | 5 | form: 6 | fields: 7 | _note: 8 | type: separator.note 9 | class: 'alert alert-success blocksize-note' 10 | content: 'This %s has been inherited by the following Outlines: %s' 11 | -------------------------------------------------------------------------------- /engines/common/nucleus/admin/blueprints/menu/block.yaml: -------------------------------------------------------------------------------- 1 | name: Block 2 | description: Layout block. 3 | type: block 4 | 5 | form: 6 | fields: 7 | class: 8 | type: input.selectize 9 | label: CSS Classes 10 | description: Enter CSS class names. 11 | 12 | extra: 13 | type: collection.keyvalue 14 | label: Tag Attributes 15 | description: Extra Tag attributes. 16 | key_placeholder: 'Key (data-*, style, ...)' 17 | value_placeholder: Value 18 | exclude: ['id', 'class'] 19 | -------------------------------------------------------------------------------- /engines/common/nucleus/admin/blueprints/position/chrome.yaml: -------------------------------------------------------------------------------- 1 | name: Module chrome 2 | description: Module chrome 3 | type: position.chrome 4 | 5 | form: 6 | fields: 7 | 8 | display_title: 9 | type: enable.enable 10 | label: Display Title 11 | description: Display title. 12 | default: 1 13 | 14 | class: 15 | type: input.selectize 16 | label: CSS Classes 17 | description: Enter CSS class names. 18 | default: 19 | -------------------------------------------------------------------------------- /engines/common/nucleus/particles/branding.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 |
5 | {{ particle.content|raw }} 6 |
7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /engines/common/nucleus/particles/copyright.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% set start_date = particle.date.start|trim in ['now', ''] ? 'now'|date('Y') : particle.date.start|e %} 4 | {% set end_date = particle.date.end|trim in ['now', ''] ? 'now'|date('Y') : particle.date.end|e %} 5 | 6 | {% block particle %} 7 | © 8 | {% if (start_date != end_date) %}{{ start_date|e }} - {% endif %} 9 | {{ end_date|e }} 10 | {{ particle.owner|raw }} 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /engines/common/nucleus/particles/custom.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {% set html = particle.twig ? gantry.theme.compile(particle.html) : particle.html %} 5 | {{ (particle.filter ? gantry.platform.filter(html) : html)|html|raw }} 6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /engines/common/nucleus/particles/date.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 |
5 | {{ "now"|date(particle.date.formats|default('l, F d, Y')) }} 6 |
7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /engines/common/nucleus/particles/lightcase.html.twig: -------------------------------------------------------------------------------- 1 | {% do gantry.load('lightcase.init') %} 2 | -------------------------------------------------------------------------------- /engines/common/nucleus/particles/mobile-menu.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 |
5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/particles/position.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {{ gantry.platform.displayModules(particle.key, {'style': particle.chrome|default('gantry'), 'position': particle})|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/configuration/nucleus/_base.scss: -------------------------------------------------------------------------------- 1 | // Core 2 | @import "core"; 3 | 4 | // Breakpoints 5 | @import "breakpoints"; 6 | 7 | // Layout 8 | @import "layout"; 9 | 10 | // Typography 11 | @import "typography"; 12 | 13 | // FontAwesome 14 | @import "fontawesome"; 15 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/configuration/nucleus/_core.scss: -------------------------------------------------------------------------------- 1 | // Border Radius 2 | $core-border-radius: rem(3) !default; 3 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/configuration/nucleus/_fontawesome.scss: -------------------------------------------------------------------------------- 1 | $fa-chevron-left: '\f053'; 2 | $fa-chevron-right: '\f054'; 3 | $fa-chevron-up: '\f077'; 4 | $fa-chevron-down: '\f078'; 5 | $fa-tag: '\f02b'; 6 | $fa-columns: '\f0db'; 7 | $fa-times-circle: '\f057'; 8 | $fa-plus: '\f067'; 9 | $fa-caret-right: '\f0da'; 10 | $fa-angle-down: '\f107'; 11 | $fa-times: '\f00d'; 12 | $fa-bars: '\f0c9'; 13 | $fa-folder-open: '\f07c'; 14 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/configuration/nucleus/_layout.scss: -------------------------------------------------------------------------------- 1 | // Content Block Spacing Variables 2 | $content-margin: 0.625rem !default; 3 | $content-padding: 0.938rem !default; 4 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/engines/common/nucleus/scss/custom.scss -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/functions/_base.scss: -------------------------------------------------------------------------------- 1 | @import "direction"; 2 | @import "range"; 3 | @import "utilities"; 4 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/functions/_range.scss: -------------------------------------------------------------------------------- 1 | @function lower-bound($range){ 2 | @if length($range) <= 0 { 3 | @return 0; 4 | } 5 | @return nth($range,1); 6 | } 7 | 8 | @function upper-bound($range) { 9 | @if length($range) < 2 { 10 | @return 999999999999; 11 | } 12 | @return nth($range, 2); 13 | } 14 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/functions/_utilities.scss: -------------------------------------------------------------------------------- 1 | @function textcolor-tint($color, $amount: 65%) { 2 | @if (lightness($color) > 50) { 3 | @return darken($color, $amount); 4 | } @else { 5 | @return lighten($color, $amount); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/mixins/_base.scss: -------------------------------------------------------------------------------- 1 | @import "breakpoints"; 2 | @import "sizes"; 3 | @import "nav"; 4 | @import "typography"; 5 | @import "utilities"; 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/mixins/_sizes.scss: -------------------------------------------------------------------------------- 1 | @mixin size-x { 2 | @for $i from 5 through 95 { 3 | .size-#{$i} { 4 | flex: 0 $i * 1%; 5 | width: $i * 1%; 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/mixins/_typography.scss: -------------------------------------------------------------------------------- 1 | // Headers 2 | @mixin header($margin-top: $leading-margin / 2, $margin-bottom: $leading-margin) { 3 | margin: $margin-top 0 $margin-bottom 0; 4 | } 5 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/theme/_base.scss: -------------------------------------------------------------------------------- 1 | @import "flex"; 2 | @import "typography"; 3 | @import "forms"; 4 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/theme/_flex.scss: -------------------------------------------------------------------------------- 1 | // Content Block Spacing 2 | .g-content { 3 | margin: $content-margin; 4 | padding: $content-padding; 5 | 6 | .g-flushed & { 7 | margin: 0; 8 | padding: 0; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/theme/_forms.scss: -------------------------------------------------------------------------------- 1 | textarea, select[multiple=multiple], #{$all-text-inputs} { 2 | border-radius: $core-border-radius; 3 | } 4 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/theme/breakpoints/_base.scss: -------------------------------------------------------------------------------- 1 | @import "flex"; 2 | @import "utilities"; 3 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/nucleus/theme/mixins/_base.scss: -------------------------------------------------------------------------------- 1 | @import "typography"; 2 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/engines/common/nucleus/scss/vendor/.DS_Store -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/css3/_appearance.scss: -------------------------------------------------------------------------------- 1 | @mixin appearance($value) { 2 | @include _bourbon-deprecate-for-prefixing("appearance"); 3 | 4 | @include prefixer(appearance, $value, webkit moz ms o spec); 5 | } 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/css3/_backface-visibility.scss: -------------------------------------------------------------------------------- 1 | @mixin backface-visibility($visibility) { 2 | @include _bourbon-deprecate-for-prefixing("backface-visibility"); 3 | 4 | @include prefixer(backface-visibility, $visibility, webkit spec); 5 | } 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/css3/_calc.scss: -------------------------------------------------------------------------------- 1 | @mixin calc($property, $value) { 2 | @include _bourbon-deprecate-for-prefixing("calc"); 3 | 4 | #{$property}: -webkit-calc(#{$value}); 5 | #{$property}: calc(#{$value}); 6 | } 7 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/css3/_filter.scss: -------------------------------------------------------------------------------- 1 | @mixin filter($function: none) { 2 | @include _bourbon-deprecate-for-prefixing("filter"); 3 | 4 | // [ 5 | @include prefixer(perspective, $depth, webkit moz spec); 6 | } 7 | 8 | @mixin perspective-origin($value: 50% 50%) { 9 | @include _bourbon-deprecate-for-prefixing("perspective-origin"); 10 | 11 | @include prefixer(perspective-origin, $value, webkit moz spec); 12 | } 13 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/css3/_placeholder.scss: -------------------------------------------------------------------------------- 1 | @mixin placeholder { 2 | @include _bourbon-deprecate-for-prefixing("placeholder"); 3 | 4 | $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input"; 5 | @each $placeholder in $placeholders { 6 | &:#{$placeholder}-placeholder { 7 | @content; 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/css3/_user-select.scss: -------------------------------------------------------------------------------- 1 | @mixin user-select($value: none) { 2 | @include _bourbon-deprecate-for-prefixing("user-select"); 3 | 4 | @include prefixer(user-select, $value, webkit moz ms spec); 5 | } 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/functions/_is-number.scss: -------------------------------------------------------------------------------- 1 | /// Checks for a valid number. 2 | /// 3 | /// @param {Number} $value 4 | /// 5 | /// @require {function} contains 6 | 7 | @function is-number($value) { 8 | @if $output-bourbon-deprecation-warnings == true { 9 | @warn "[Bourbon] [Deprecation] `is-number` is deprecated and will be " + 10 | "removed in 5.0.0."; 11 | } 12 | 13 | @return contains("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" 0 1 2 3 4 5 6 7 8 9, $value); 14 | } 15 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/settings/_asset-pipeline.scss: -------------------------------------------------------------------------------- 1 | /// A global setting to enable or disable the `$asset-pipeline` variable for all functions that accept it. 2 | /// 3 | /// @type Bool 4 | 5 | $asset-pipeline: false !default; 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/settings/_deprecation-warnings.scss: -------------------------------------------------------------------------------- 1 | /// Enable or disable output of Bourbon’s deprecation-related Sass warnings. 2 | /// This variable must be declared _before_ importing Bourbon. 3 | /// 4 | /// @type Bool 5 | 6 | $output-bourbon-deprecation-warnings: true !default; 7 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/settings/_prefixer.scss: -------------------------------------------------------------------------------- 1 | /// Global variables to enable or disable vendor prefixes 2 | 3 | $prefix-for-webkit: true !default; 4 | $prefix-for-mozilla: true !default; 5 | $prefix-for-microsoft: true !default; 6 | $prefix-for-opera: true !default; 7 | $prefix-for-spec: true !default; 8 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/bourbon/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/color-schemer/color-schemer/_cmyk.scss: -------------------------------------------------------------------------------- 1 | @function cmyk($cyan, $magenta, $yellow, $black) { 2 | 3 | // Get the color values out of white 4 | $cyan : mix(cyan , white, $cyan ); 5 | $magenta : mix(magenta, white, $magenta); 6 | $yellow : mix(yellow , white, $yellow ); 7 | $black : mix(black , white, $black ); 8 | 9 | // Subtract the colors from white 10 | $color: white - invert($cyan) - invert($magenta) - invert($yellow) - invert($black); 11 | 12 | 13 | @return $color; 14 | } 15 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/color-schemer/color-schemer/_equalize.scss: -------------------------------------------------------------------------------- 1 | // Color equalize credit to Mason Wendell: 2 | // https://github.com/canarymason/The-Coding-Designers-Survival-Kit/blob/master/sass/partials/lib/variables/_color_schemes.sass 3 | @function equalize($color) { 4 | @return hsl(hue($color), 100%, 50%); 5 | } 6 | -------------------------------------------------------------------------------- /engines/common/nucleus/scss/vendor/color-schemer/color-schemer/_tint-shade.scss: -------------------------------------------------------------------------------- 1 | // Add percentage of white to a color 2 | @function tint($color, $percent) { 3 | @return mix(white, $color, $percent); 4 | } 5 | 6 | // Add percentage of black to a color 7 | @function shade($color, $percent) { 8 | @return mix(black, $color, $percent); 9 | } 10 | -------------------------------------------------------------------------------- /engines/common/nucleus/templates/content/atom.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/content/particle.html.twig' %} 2 | 3 | {# Handle atoms, which are special case of particles #} 4 | -------------------------------------------------------------------------------- /engines/common/nucleus/templates/content/missing.html.twig: -------------------------------------------------------------------------------- 1 |
Missing content: '{{ segment.subtype }}' {{ segment.type }} cannot be found.
2 | -------------------------------------------------------------------------------- /engines/common/nucleus/templates/content/spacer.html.twig: -------------------------------------------------------------------------------- 1 | {% if not particle %} 2 | {% set enabled = gantry.config.get('particles.' ~ segment.type ~ '.enabled', 1) %} 3 | {% set spacer = gantry.config.getJoined('particles.' ~ segment.type, segment.attributes) %} 4 | {% endif %} 5 | 6 | {% if enabled and (segment.attributes.enabled is null or segment.attributes.enabled) %} 7 |
8 | {% endif %} 9 | -------------------------------------------------------------------------------- /engines/common/nucleus/templates/content/unknown.html.twig: -------------------------------------------------------------------------------- 1 | {% if gantry.debug or not gantry.global.get('production') %} 2 |
Warning: Content type {{ segment.type }} {{ segment.options.type }} is not supported.
3 | {% endif %} -------------------------------------------------------------------------------- /engines/common/nucleus/templates/layout/atoms.html.twig: -------------------------------------------------------------------------------- 1 | {%- set invisible %} 2 | {% if segment.children %} 3 | {% for segment in segments %} 4 | {% include '@nucleus/layout/' ~ segment.type ~ '.html.twig' with { 'segments': segment.children } %} 5 | {% endfor %} 6 | {% endif %} 7 | {% endset -%} 8 | -------------------------------------------------------------------------------- /engines/common/nucleus/templates/partials/particle.html.twig: -------------------------------------------------------------------------------- 1 | {% assets %} 2 | {% block stylesheets %} 3 | {% endblock %} 4 | 5 | {% block javascript %} 6 | {% endblock %} 7 | {% endassets -%} 8 | 9 | {% assets in 'footer' %} 10 | {% block javascript_footer %} 11 | {% endblock %} 12 | {% endassets -%} 13 | 14 | {% block particle %} 15 | {% endblock %} 16 | -------------------------------------------------------------------------------- /engines/grav/nucleus/blueprints/pages/form.yaml: -------------------------------------------------------------------------------- 1 | title: Nopad 2 | extends@: default 3 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/breadcrumbs.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {% try %} 5 | 6 | {% include 'partials/breadcrumbs.html.twig' %} 7 | 8 | {% catch %} 9 |
Error: Please enable breadcrumbs plugin!
10 | {% endtry %} 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/breadcrumbs.yaml: -------------------------------------------------------------------------------- 1 | name: Breadcrumbs 2 | description: Breadcrumbs Particle for Grav Breadcrumbs Plugin 3 | type: particle 4 | icon: fa-ellipsis-h 5 | 6 | dependencies: 7 | platform: 8 | grav: 9 | plugin: 10 | breadcrumbs: true 11 | 12 | form: 13 | fields: 14 | enabled: 15 | type: checkbox 16 | label: Enabled 17 | description: Globally enable breadcrumbs particles. 18 | default: true 19 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/feed.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {% if config.plugins.feed.enabled and not page.feed.skip and page.header.content %} 5 | Atom 1.0 6 | RSS 7 | {% endif %} 8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/feed.yaml: -------------------------------------------------------------------------------- 1 | name: Feed Buttons 2 | description: Feed Buttons Particle for Grav Feed Plugin 3 | type: particle 4 | icon: fa-rss 5 | 6 | dependencies: 7 | platform: 8 | grav: 9 | plugin: 10 | feed: true 11 | 12 | form: 13 | fields: 14 | enabled: 15 | type: checkbox 16 | label: Enabled 17 | description: Globally enable feed particles. 18 | default: true 19 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/langswitcher.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {% try %} 5 | 6 | {% include 'partials/langswitcher.html.twig' %} 7 | 8 | {% catch %} 9 |
Error: Please enable langswitcher plugin!
10 | {% endtry %} 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/langswitcher.yaml: -------------------------------------------------------------------------------- 1 | name: Language Switcher 2 | description: Language Switcher Particle for Grav LangSwitcher Plugin 3 | type: particle 4 | icon: fa-globe 5 | 6 | dependencies: 7 | platform: 8 | grav: 9 | plugin: 10 | langswitcher: true 11 | 12 | form: 13 | fields: 14 | enabled: 15 | type: checkbox 16 | label: Enabled 17 | description: Globally enable Language Switcher particles. 18 | default: true 19 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/login.yaml: -------------------------------------------------------------------------------- 1 | name: Login 2 | description: Login Particle 3 | type: particle 4 | icon: fa-sign-in 5 | 6 | form: 7 | fields: 8 | enabled: 9 | type: checkbox 10 | label: Enabled 11 | description: Globally enable login particles. 12 | default: true 13 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/search.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {% try %} 5 | 6 | {% include 'partials/simplesearch_searchbox.html.twig' %} 7 | {% do gantry.theme.load('jquery') %} 8 | 9 | {% catch %} 10 |
Error: Please enable simplesearch plugin!
11 | {% endtry %} 12 | {% endblock %} 13 | -------------------------------------------------------------------------------- /engines/grav/nucleus/particles/search.yaml: -------------------------------------------------------------------------------- 1 | name: Search 2 | description: Search Particle for Grav SimpleSearch plugin 3 | type: particle 4 | icon: fa-search 5 | 6 | dependencies: 7 | platform: 8 | grav: 9 | plugin: 10 | simplesearch: true 11 | 12 | form: 13 | fields: 14 | enabled: 15 | type: checkbox 16 | label: Enabled 17 | description: Globally enable search particles. 18 | default: true 19 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/configuration/grav/_base.scss: -------------------------------------------------------------------------------- 1 | // Colors 2 | @import "colors"; 3 | 4 | // Typography 5 | @import "typography"; 6 | 7 | // Typography 8 | @import "bullets"; 9 | 10 | // Variables 11 | @import "variables"; 12 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/configuration/grav/_bullets.scss: -------------------------------------------------------------------------------- 1 | $bullet-icon-size: 3.5rem !default; 2 | 3 | $bullet-icon-color-1: $core-accent !default; 4 | $bullet-icon-color-2: adjust-hue($core-accent, -20) !default; 5 | $bullet-icon-color-3: adjust-hue($core-accent, -130) !default; 6 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/configuration/grav/_typography.scss: -------------------------------------------------------------------------------- 1 | // Font Family 2 | $font-family-default: "Raleway", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif !default; 3 | $font-family-header: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif !default; 4 | $font-family-mono: "Inconsolata", monospace !default; 5 | $font-family-serif: "Georgia", "Times", "Times New Roman", serif !default; 6 | 7 | $icons: "Font Awesome 6 Pro", "Font Awesome 6 Free", FontAwesome !default; 8 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/configuration/grav/_variables.scss: -------------------------------------------------------------------------------- 1 | // Sizes 2 | $header-height: 5rem !default; 3 | $footer-height: 6rem !default; 4 | $border-radius: 3px !default; 5 | 6 | // Font Weights 7 | $font-weight-bold: 600 !default; 8 | $font-weight-regular: 400 !default; 9 | $font-weight-light:300 !default; 10 | 11 | // Global Paddings 12 | $padding-horiz: 7rem !default; 13 | $padding-vert: 3rem !default; 14 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/grav/_base.scss: -------------------------------------------------------------------------------- 1 | @import "theme/base"; 2 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/grav/theme/_base.scss: -------------------------------------------------------------------------------- 1 | @import "extensions"; 2 | 3 | @import "modular"; 4 | @import "blog"; 5 | //@import "simplesearch"; 6 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/grav/theme/_modular.scss: -------------------------------------------------------------------------------- 1 | @import "modular/all"; 2 | -------------------------------------------------------------------------------- /engines/grav/nucleus/scss/grav/theme/modular/_all.scss: -------------------------------------------------------------------------------- 1 | @import "showcase"; 2 | @import "features"; 3 | @import "text"; 4 | 5 | .modular { 6 | .modular-row:last-child { 7 | margin-bottom: 2rem; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/blog_item.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 | {% include 'partials/blog_item.html.twig' with {'blog':page.parent, 'truncate':false, 'show_date': page.parent.header.content.show_date} %} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/default.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 | {{ page.content|raw }} 5 | {% endblock %} -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/error.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 |

{{ 'PLUGIN_ERROR.ERROR'|t }} {{ header.http_response_code }}

5 | 6 | {{ content|raw }} 7 | {% endblock %} -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/form.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 | 5 | {{ content|raw }} 6 | {% include "forms/form.html.twig" %} 7 | 8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/formdata.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 | {{ content|raw }} 5 | 6 |
{{ form.message }}
7 | 8 |

{{ 'GANTRY5_ENGINE_FORM_SUMMARY'|trans }}

9 | 10 | {% include "forms/data.html.twig" %} 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/modular/text.html.twig: -------------------------------------------------------------------------------- 1 |
2 | {% set image = page.media.images|first %} 3 | {% if image %} 4 | {{ image.cropResize(400,400).html('','','align-'~page.header.image_align)|raw }} 5 | {% endif %} 6 | {{ content|raw }} 7 |
8 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/module-chrome/gantry.html.twig: -------------------------------------------------------------------------------- 1 | {% set title %} 2 | {% block title %}{% endblock %} 3 | {%- endset -%} 4 | 5 | {% set module %} 6 | {% block module %}{% endblock %} 7 | {%- endset -%} 8 | 9 | {% if module|trim %} 10 |
11 | {% if title|trim %} 12 |

{{ title }}

13 | {% endif %} 14 | 15 | {{ module }} 16 |
17 | {% endif %} -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/module-chrome/none.html.twig: -------------------------------------------------------------------------------- 1 | {% set module %} 2 | {% block module %}{% endblock %} 3 | {%- endset -%} 4 | 5 | {%- if module|trim %} 6 | {{ module }} 7 | {% endif -%} 8 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/offline.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 | {{ content|raw }} 5 | {{ gantry.global.offline_message|markdown|raw }} 6 | 7 | {% if (page.header.form) %} 8 | {% set show_login_form = 1 %} 9 | {% include 'partials/login-form.html.twig' %} 10 | {% endif %} 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/partials/author.html.twig: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ (author.assets.images|first).resize('150','150').html|raw }} 4 |

{{ author.header.name }}

5 |
{{ author.header.email|safe_email }}
6 |
7 |

{{ author.content }}

8 |
9 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/partials/base.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/partials/metadata.html.twig: -------------------------------------------------------------------------------- 1 | {% for meta in page.metadata %} 2 | 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/partials/page.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "@nucleus/page.html.twig" %} 2 | 3 | {% block page_footer %} 4 | {{ assets.js('bottom')|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/particle.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'partials/base.html.twig' %} 2 | 3 | {%- set html = gantry.theme.particle(page.header.particle, {ajax: page.header.ajax}).toString() -%} 4 | 5 | {% block content %} 6 | {{ html|raw }} 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /engines/grav/nucleus/templates/particle.json.twig: -------------------------------------------------------------------------------- 1 | {%- set ajax = page.header.ajax -%} 2 | {%- try -%} 3 | {%- set particle = gantry.theme.particle(page.header.particle, {ajax: ajax}) -%} 4 | {%- set json = {code: 200, props: ajax, html: particle.toString()} -%} 5 | {%- catch -%} 6 | {%- set json = {code: e.code, message: e.message} -%} 7 | {%- endtry -%} 8 | {%- set debugbar = gantry.debugger.data -%} 9 | 10 | {{- json|merge(debugbar ? {_debugbar: debugbar} : [])|json_encode|raw -}} 11 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/images/select-bg-active.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/images/select-bg-rtl.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/images/select-bg.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/particles/module.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {{ gantry.platform.displayModule(particle.module_id, {'style': particle.chrome|default('gantry'), 'position': 'particle'})|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/particles/position.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {{ gantry.platform.displayModules(particle.key, {'style': particle.chrome|default('gantry')})|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/joomla/_offline.scss: -------------------------------------------------------------------------------- 1 | #frame { 2 | margin: 20px auto; 3 | width: 400px; 4 | padding: 20px; 5 | } 6 | 7 | #frame img { 8 | max-width: 100%; 9 | height: auto; 10 | } 11 | 12 | #frame form { 13 | text-align: left; 14 | } 15 | 16 | .outline { 17 | padding: 2px; 18 | } 19 | 20 | #system-message { 21 | margin: 0 auto; 22 | padding: 20px 0 0; 23 | } 24 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/joomla/theme/_base.scss: -------------------------------------------------------------------------------- 1 | @import "forms"; 2 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/joomla/theme/_forms.scss: -------------------------------------------------------------------------------- 1 | legend { 2 | font-size: $core-font-size + .3; 3 | line-height: $core-line-height; 4 | } 5 | 6 | legend small { 7 | font-size: $core-font-size - .2; 8 | } 9 | 10 | .input-prepend > .add-on, 11 | .input-append > .add-on { 12 | line-height: $core-line-height; 13 | } 14 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/joomla/theme/breakpoints/_base.scss: -------------------------------------------------------------------------------- 1 | @import "bootstrap"; 2 | @import "forms"; 3 | @import "utilities"; 4 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/joomla/theme/breakpoints/_forms.scss: -------------------------------------------------------------------------------- 1 | @include breakpoint(mobile-only) { 2 | .form-horizontal { 3 | .control-label { 4 | display: block; 5 | float: none; 6 | text-align: left; 7 | } 8 | 9 | .controls { 10 | margin: 0; 11 | } 12 | } 13 | 14 | [dir="rtl"] .form-horizontal .control-label { 15 | text-align: right; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/engines/joomla/nucleus/scss/vendor/.DS_Store -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/engines/joomla/nucleus/scss/vendor/bootstrap5/.DS_Store -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/_grid.scss: -------------------------------------------------------------------------------- 1 | // Row 2 | // 3 | // Rows contain your columns. 4 | 5 | @if $enable-grid-classes { 6 | .row { 7 | @include make-row(); 8 | 9 | > * { 10 | @include make-col-ready(); 11 | } 12 | } 13 | } 14 | 15 | 16 | // Columns 17 | // 18 | // Common styles for small and large grid columns 19 | 20 | @if $enable-grid-classes { 21 | @include make-grid-columns(); 22 | } 23 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/_helpers.scss: -------------------------------------------------------------------------------- 1 | @import "helpers/clearfix"; 2 | @import "helpers/colored-links"; 3 | @import "helpers/ratio"; 4 | @import "helpers/position"; 5 | @import "helpers/visually-hidden"; 6 | @import "helpers/stretched-link"; 7 | @import "helpers/text-truncation"; 8 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | transition: $transition-fade; 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | // scss-docs-start collapse-classes 10 | .collapse { 11 | &:not(.show) { 12 | display: none; 13 | } 14 | } 15 | 16 | .collapsing { 17 | height: 0; 18 | overflow: hidden; 19 | transition: $transition-collapse; 20 | } 21 | // scss-docs-end collapse-classes 22 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/helpers/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/helpers/_colored-links.scss: -------------------------------------------------------------------------------- 1 | @each $color, $value in $theme-colors { 2 | .link-#{$color} { 3 | color: $value; 4 | 5 | @if $link-shade-percentage != 0 { 6 | &:hover, 7 | &:focus { 8 | color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)); 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Text truncation 3 | // 4 | 5 | .text-truncate { 6 | @include text-truncate(); 7 | } 8 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start alert-variant-mixin 2 | @mixin alert-variant($background, $border, $color) { 3 | color: $color; 4 | @include gradient-bg($background); 5 | border-color: $border; 6 | 7 | .alert-link { 8 | color: shade-color($color, 20%); 9 | } 10 | } 11 | // scss-docs-end alert-variant-mixin 12 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start clearfix 2 | @mixin clearfix() { 3 | &::after { 4 | display: block; 5 | clear: both; 6 | content: ""; 7 | } 8 | } 9 | // scss-docs-end clearfix 10 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_container.scss: -------------------------------------------------------------------------------- 1 | // Container mixins 2 | 3 | @mixin make-container($gutter: $container-padding-x) { 4 | width: 100%; 5 | padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter}); 6 | padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter}); 7 | margin-right: auto; 8 | margin-left: auto; 9 | } 10 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | 10 | @mixin img-fluid { 11 | // Part 1: Set a maximum relative to the parent 12 | max-width: 100%; 13 | // Part 2: Override the height to auto, otherwise images will be stretched 14 | // when setting a width and height attribute on the img element. 15 | height: auto; 16 | } 17 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/bootstrap5/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/cassiopeia/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/engines/joomla/nucleus/scss/vendor/cassiopeia/.DS_Store -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/cassiopeia/_iframe.scss: -------------------------------------------------------------------------------- 1 | // Iframe 2 | 3 | iframe { 4 | border: 0; 5 | } 6 | 7 | .modal iframe { 8 | width: 100%; 9 | } 10 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/cassiopeia/_variables.scss: -------------------------------------------------------------------------------- 1 | // Grid 2 | $grid-gutter-width: 1em !default; 3 | $cassiopeia-grid-gutter: $grid-gutter-width; 4 | 5 | // Forms 6 | $input-padding: .6rem 1rem; 7 | $input-border: solid 1px $gray-400; 8 | $input-btn-padding-y: .6rem; 9 | $input-btn-padding-x: 1rem; 10 | $input-max-width: 100%; 11 | $input-focus-border-color: transparent; 12 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/cassiopeia/images/select-bg-active.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/scss/vendor/cassiopeia/images/select-bg-rtl.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/twig/error.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block page_head -%} 4 | {% include 'partials/error_head.html.twig' %} 5 | {%- endblock %} 6 | 7 | {% block content %} 8 |

{{ errorcode|default(500) }} {{ error|default('Unknown Error') }}

9 | {{ backtrace|raw }} 10 | {% endblock %} 11 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/twig/index.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 | {{ gantry.platform.displayContent(content)|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/twig/offline.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | 3 | {% block content %} 4 | {{ message|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/twig/partials/page.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "@nucleus/page.html.twig" %} 2 | 3 | {% block page_footer %} 4 | {{ parent() }} 5 | 6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /engines/joomla/nucleus/twig/raw.html.twig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/languages/nucleus-en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/engines/wordpress/nucleus/languages/nucleus-en_US.mo -------------------------------------------------------------------------------- /engines/wordpress/nucleus/particles/position.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {{ gantry.platform.displayWidgets(particle.key, {'chrome': particle.chrome|default('gantry'), 'prepare_layout': prepare_layout})|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/particles/widget.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | {{ gantry.platform.displayWidget(particle.widget, {'chrome': particle.chrome|default('gantry'), 'prepare_layout': prepare_layout})|raw }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/scss/wordpress/_meta.scss: -------------------------------------------------------------------------------- 1 | // Entry Meta 2 | .platform-content { 3 | .entry-meta { 4 | margin: 1.5rem 0; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/scss/wordpress/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | .pagination, .page-links { 3 | margin: 1.5rem 0; 4 | 5 | ul.pagination-list { 6 | list-style: none; 7 | margin: 0; 8 | 9 | li.pagination-list-item { 10 | display: inline-block; 11 | } 12 | } 13 | 14 | @include breakpoint('mobile-only') { 15 | p.counter { 16 | display: none; 17 | } 18 | } 19 | } 20 | 21 | .page-links { 22 | text-align: center; 23 | } 24 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/scss/wordpress/_particles.scss: -------------------------------------------------------------------------------- 1 | .g-loginform { 2 | fieldset.login-data { 3 | padding: 0; 4 | } 5 | 6 | .login-pretext, .login-posttext { 7 | p { 8 | margin: 0.5rem 0; 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/scss/wordpress/_typography.scss: -------------------------------------------------------------------------------- 1 | // Lists and Tables 2 | dl { 3 | margin-top: $leading-margin; 4 | margin-bottom: $leading-margin; 5 | } 6 | 7 | dd { 8 | margin-left: $leading-margin; 9 | } 10 | 11 | ul.menu { 12 | ul { 13 | margin-left: $leading-margin; 14 | } 15 | } 16 | 17 | ul.unstyled, 18 | ol.unstyled { 19 | margin-left: 0; 20 | list-style: none; 21 | } 22 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/scss/wordpress/_widgets.scss: -------------------------------------------------------------------------------- 1 | // Widgets - global 2 | .widget { 3 | 4 | // Custom Menu Widget 5 | &.widget_nav_menu { 6 | ul.menu { 7 | margin-left: 0; 8 | list-style: none; 9 | 10 | ul.sub-menu { 11 | list-style: none; 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/scss/wordpress/theme/_base.scss: -------------------------------------------------------------------------------- 1 | @import "forms"; 2 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/scss/wordpress/theme/_forms.scss: -------------------------------------------------------------------------------- 1 | legend { 2 | font-size: $core-font-size + .3; 3 | line-height: $core-line-height; 4 | } 5 | 6 | legend small { 7 | font-size: $core-font-size - .2; 8 | } 9 | -------------------------------------------------------------------------------- /engines/wordpress/nucleus/views/partials/messages.html.twig: -------------------------------------------------------------------------------- 1 |
2 |
3 | {% for message in messages %} 4 |
5 |
6 |

{{ message.message }}

7 |
8 |
9 | {% endfor %} 10 |
11 |
-------------------------------------------------------------------------------- /engines/wordpress/nucleus/views/partials/page.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "@nucleus/page.html.twig" %} 2 | 3 | {% block page_head -%} 4 | {% if page_head %} 5 | {{ page_head|raw }} 6 | {% else %} 7 | {{ parent() }} 8 | {% endif %} 9 | {%- endblock %} 10 | 11 | {% block page_footer %} 12 | {% do gantry.platform.finalize() %} 13 | {{ wp_footer|raw }} 14 | {% endblock %} 15 | -------------------------------------------------------------------------------- /php_errors.log: -------------------------------------------------------------------------------- 1 | [13-Aug-2021 12:38:41 UTC] PHP Warning: Module 'imagick' already loaded in Unknown on line 0 2 | [13-Aug-2021 12:38:41 UTC] PHP Warning: Module 'imagick' already loaded in Unknown on line 0 3 | [13-Aug-2021 12:38:41 UTC] PHP Warning: Module 'imagick' already loaded in Unknown on line 0 4 | [13-Aug-2021 12:38:41 UTC] PHP Warning: Module 'imagick' already loaded in Unknown on line 0 5 | [13-Aug-2021 12:38:41 UTC] PHP Warning: Module 'imagick' already loaded in Unknown on line 0 6 | -------------------------------------------------------------------------------- /platforms/common/application/lm/blocks/spacer.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var prime = require('prime'), 3 | Particle = require('./particle'); 4 | 5 | var UID = 0; 6 | 7 | var Spacer = new prime({ 8 | inherits: Particle, 9 | options: { 10 | type: 'spacer', 11 | title: 'Spacer', 12 | attributes: {} 13 | } 14 | }); 15 | 16 | module.exports = Spacer; 17 | -------------------------------------------------------------------------------- /platforms/common/application/lm/blocks/system.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var prime = require('prime'), 3 | Particle = require('./particle'); 4 | 5 | var System = new prime({ 6 | inherits: Particle, 7 | options: { 8 | type: 'system', 9 | attributes: {} 10 | } 11 | }); 12 | 13 | module.exports = System; 14 | -------------------------------------------------------------------------------- /platforms/common/application/particles/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = { 4 | colorpicker: require('./colorpicker'), 5 | fonts: require('./fonts'), 6 | menu: require('./menu'), 7 | icons: require('./icons'), 8 | filepicker: require('./filepicker'), 9 | collections: require('./collections'), 10 | keyvalue: require('./keyvalue'), 11 | instancepicker: require('./instancepicker') 12 | }; -------------------------------------------------------------------------------- /platforms/common/application/ui/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var Selectize = require('./selectize'); 4 | 5 | module.exports = { 6 | modal: require('./modal'), 7 | togglers: require('./togglers'), 8 | collapse: require('./collapse'), 9 | selectize: Selectize, 10 | toastr: require('./toastr') 11 | }; 12 | -------------------------------------------------------------------------------- /platforms/common/application/utils/get-ajax-suffix.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var getAjaxSuffix = function() { 4 | var GANTRY_AJAX_SUFFIX = window.GANTRY_AJAX_SUFFIX || undefined; 5 | return typeof GANTRY_AJAX_SUFFIX == 'undefined' ? '' : GANTRY_AJAX_SUFFIX; 6 | }; 7 | 8 | module.exports = getAjaxSuffix; 9 | -------------------------------------------------------------------------------- /platforms/common/application/utils/translate.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var replace = require('mout/string/replace'); 4 | 5 | module.exports = function(key, replacement) { 6 | var G5T = global.G5T || function(key) { return key; }; 7 | return replace(G5T(key), '%s', replacement || ''); 8 | }; -------------------------------------------------------------------------------- /platforms/common/blueprints/gantry/theme/admin.yaml: -------------------------------------------------------------------------------- 1 | name: Theme Details 2 | description: Describes theme details 3 | type: theme 4 | 5 | form: 6 | fields: 7 | 8 | styles: 9 | type: input.hidden 10 | array: true 11 | 12 | settings: 13 | type: input.hidden 14 | array: true 15 | 16 | content: 17 | type: input.hidden 18 | array: true 19 | -------------------------------------------------------------------------------- /platforms/common/blueprints/menu/menu.yaml: -------------------------------------------------------------------------------- 1 | name: Menu 2 | description: Gantry menu. 3 | type: particle 4 | 5 | form: 6 | fields: 7 | 8 | settings.title: 9 | type: input.text 10 | label: Title 11 | 12 | settings.base: 13 | type: input.text 14 | label: Base Path 15 | default: '/' 16 | -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.eot -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.ttf -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff2 -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.eot -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.ttf -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff2 -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.eot -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.ttf -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff2 -------------------------------------------------------------------------------- /platforms/common/fonts/rockettheme-apps/rockettheme-apps.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/rockettheme-apps/rockettheme-apps.eot -------------------------------------------------------------------------------- /platforms/common/fonts/rockettheme-apps/rockettheme-apps.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/rockettheme-apps/rockettheme-apps.ttf -------------------------------------------------------------------------------- /platforms/common/fonts/rockettheme-apps/rockettheme-apps.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/rockettheme-apps/rockettheme-apps.woff -------------------------------------------------------------------------------- /platforms/common/fonts/rockettheme-apps/rockettheme-apps.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/fonts/rockettheme-apps/rockettheme-apps.woff2 -------------------------------------------------------------------------------- /platforms/common/images/gantrylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/gantrylogo.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/2-col-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/2-col-left.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/2-col-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/2-col-right.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/3-col-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/3-col-left.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/3-col-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/3-col-right.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/3-col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/3-col.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/body-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/body-only.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/default.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/error.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/home.png -------------------------------------------------------------------------------- /platforms/common/images/layouts/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/images/layouts/offline.png -------------------------------------------------------------------------------- /platforms/common/scss/admin/_main.scss: -------------------------------------------------------------------------------- 1 | #g5-container { //wrapper 2 | 3 | .main-block { 4 | background-color: $main-bg; 5 | 6 | @include breakpoint(no-mobile) { 7 | min-height: 75vh; 8 | } 9 | 10 | } 11 | 12 | }// end wrapper 13 | -------------------------------------------------------------------------------- /platforms/common/scss/admin/mixins/_base.scss: -------------------------------------------------------------------------------- 1 | @import 'background'; 2 | -------------------------------------------------------------------------------- /platforms/common/scss/admin/modules/_base.scss: -------------------------------------------------------------------------------- 1 | @import "toggle-ui"; 2 | @import "buttons"; 3 | -------------------------------------------------------------------------------- /platforms/common/scss/configuration/admin/_base.scss: -------------------------------------------------------------------------------- 1 | // Core 2 | @import "core"; 3 | 4 | // Colors 5 | @import "colors"; 6 | 7 | // Layout 8 | @import "layout"; 9 | 10 | // Typography 11 | @import "typography"; 12 | 13 | // FontAwesome 14 | @import "fontawesome"; 15 | -------------------------------------------------------------------------------- /platforms/common/scss/configuration/admin/_core.scss: -------------------------------------------------------------------------------- 1 | // Border Radius 2 | $core-border-radius: rem(3px); 3 | -------------------------------------------------------------------------------- /platforms/common/scss/configuration/admin/_fontawesome.scss: -------------------------------------------------------------------------------- 1 | $fa-chevron-left: '\f053'; 2 | $fa-chevron-right: '\f054'; 3 | $fa-chevron-up: '\f077'; 4 | $fa-chevron-down: '\f078'; 5 | $fa-tag: '\f02b'; 6 | $fa-columns: '\f0db'; 7 | $fa-times-circle: '\f057'; 8 | $fa-plus: '\f067'; 9 | $fa-caret-right: '\f0da'; 10 | $fa-angle-down: '\f107'; 11 | $fa-times: '\f00d'; 12 | $fa-bars: '\f0c9'; 13 | $fa-folder-open: '\f07c'; 14 | -------------------------------------------------------------------------------- /platforms/common/scss/configuration/admin/_layout.scss: -------------------------------------------------------------------------------- 1 | $content-padding: 0.938rem; 2 | $content-padding-short: $content-padding / 2 $content-padding; 3 | -------------------------------------------------------------------------------- /platforms/common/scss/configuration/admin/_typography.scss: -------------------------------------------------------------------------------- 1 | // Font Family 2 | $font-family-default: "roboto", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; 3 | $font-weight-regular: 400; 4 | $font-weight-medium: 500; 5 | $font-weight-bold: 700; 6 | 7 | // NavBar 8 | $navbar-font-size: $core-font-size - 0.2; 9 | -------------------------------------------------------------------------------- /platforms/common/templates/ajax/filepicker/subfolders.html.twig: -------------------------------------------------------------------------------- 1 |
    2 | {% for bookmarkFolder in folder|sort %} 3 |
  • 4 | 5 | {{ bookmarkFolder.filename }} 6 |
  • 7 | {% endfor %} 8 |
9 | -------------------------------------------------------------------------------- /platforms/common/templates/error.html.twig: -------------------------------------------------------------------------------- 1 | {% extends ajax-suffix ? "@gantry-admin/partials/ajax.html.twig" : "@gantry-admin/partials/base.html.twig" %} 2 | 3 | {% block gantry %} 4 |

{{ title }}

5 | 6 |

{{ 'GANTRY5_PLATFORM_OOPS'|trans }}, {{ error.getMessage }}.

7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/button/dropdown/dropdown-separated.html.twig: -------------------------------------------------------------------------------- 1 |
2 | {% include 'forms/fields/select' with {'field': field} %} 3 | {% include 'forms/fields/select' with {'field': field} %} 4 | 9 |
-------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/button/dropdown/dropdown.html.twig: -------------------------------------------------------------------------------- 1 |
2 | {% include 'forms/fields/select' with {'field': field} %} 3 | 8 |
-------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/button/group/group.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/common/templates/forms/fields/button/group/group.html.twig -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/collection/list.yaml: -------------------------------------------------------------------------------- 1 | field: 2 | deletion: true 3 | reorder: true 4 | add_new: true 5 | array: 6 | node: array 7 | key: name 8 | fields: 9 | name: 10 | type: text 11 | validation: 12 | required: true 13 | value: 14 | type: text 15 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/gantry/inherit.html.twig: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ 'GANTRY5_PLATFORM_INHERITING_FROM_X'|trans('' ~ gantry.outlines.name(inherit)|e ~ '')|raw }} 4 |
5 |
-------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/input/imagepicker.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'forms/fields/input/filepicker.html.twig' %} 2 | 3 | {% block input %} 4 | {% set field = {'icon': 'fa-file-image', 'filter': '\.(jpe?g|gif|png|svg|webp)$'}|merge(field) %} 5 | {{ parent() }} 6 | {% endblock %} -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/input/selectize.html.twig: -------------------------------------------------------------------------------- 1 | {% extends default ? "partials/field.html.twig" : 'forms/' ~ layout|default('field') ~ '.html.twig' %} 2 | 3 | {% block global_attributes %} 4 | type="text" 5 | data-selectize="{{ (field.selectize is defined ? {'create': true}|merge(field.selectize) : {'create': true})|json_encode()|e('html_attr') }}" 6 | 7 | {{ parent() }} 8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/input/videopicker.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'forms/fields/input/filepicker.html.twig' %} 2 | 3 | {% block input %} 4 | {% set field = {'icon': 'far file-video', 'filter': '\.(mp4|webm|ogv|mov)$'}|merge(field) %} 5 | {{ parent() }} 6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/select/selectize.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'forms/fields/select/select.html.twig' %} 2 | 3 | {% block global_attributes %} 4 | data-selectize="{{ (field.selectize is defined ? field.selectize|json_encode()|e('html_attr') : '') }}" 5 | {{ parent() }} 6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/separator/separator.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'forms/' ~ layout|default('field') ~ '.html.twig' %} 2 | 3 | {% block field %} 4 |
5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/fields/unknown/unknown.html.twig: -------------------------------------------------------------------------------- 1 | {% if field.fields %} 2 | {% include 'forms/fields/array/list.list.twig' %} 3 | {% else %} 4 | {% include 'forms/fields/input/text.html.twig' %} 5 | {% endif %} 6 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/form.html.twig: -------------------------------------------------------------------------------- 1 | {% set form_id = form_id ? form_id : 'gantryform' %} 2 | 3 |
4 | {% include 'forms/fields.html.twig' %} 5 | 6 |
7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /platforms/common/templates/forms/override.html.twig: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /platforms/common/templates/layouts/css-warnings.html.twig: -------------------------------------------------------------------------------- 1 | {% block gantry %} 2 | {% for outline, files in warnings %} 3 |

Outline: {{ outline }}

4 | {% for file, list in files %} 5 |

File: {{ file }}

6 | {% for warning in list %} 7 |
{{ warning }}
8 | {% endfor %} 9 | {% endfor %} 10 | {% endfor %} 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /platforms/common/templates/menu/empty.html.twig: -------------------------------------------------------------------------------- 1 |
2 |

{{ 'GANTRY5_PLATFORM_MENU_EMPTY'|trans }}

3 |
4 |

{{ 'GANTRY5_PLATFORM_MENU_EMPTY_DESC'|trans }}

5 |
6 |
-------------------------------------------------------------------------------- /platforms/common/templates/pages/configurations/layouts/section.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@gantry-admin/pages/configurations/layouts/particle.html.twig' %} 2 | 3 | {% block title %} 4 | {{ particle.name|trim }} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /platforms/common/templates/pages/custom/notification.html.twig: -------------------------------------------------------------------------------- 1 | {% extends ajax-suffix ? "@gantry-admin/partials/ajax.html.twig" : "@gantry-admin/partials/base.html.twig" %} 2 | 3 | {% block gantry %} 4 |

5 | {{ header }} 6 |

7 |

{{ content }}

8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /platforms/common/templates/partials/php_unsupported.html.twig: -------------------------------------------------------------------------------- 1 | {% set php_version = constant('PHP_VERSION') %} 2 | 3 | {% if php_version starts with '5.4' %} 4 |
5 |
6 | {{ 'GANTRY5_PLATFORM_PHP54_WARNING'|trans(php_version)|raw }} 7 |
8 |
9 | {% endif %} -------------------------------------------------------------------------------- /platforms/grav/gantry5/README.md: -------------------------------------------------------------------------------- 1 | grav-plugin-gantry5 2 | =================== 3 | 4 | Gantry 5 Plugin 5 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/VERSION: -------------------------------------------------------------------------------- 1 | @version@ 2 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/admin/scss/configuration/admin/_base.scss: -------------------------------------------------------------------------------- 1 | // Colors 2 | @import "colors"; 3 | 4 | // Typography 5 | @import "typography"; 6 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/admin/scss/grav-admin/_footer.scss: -------------------------------------------------------------------------------- 1 | #g5-container { 2 | #footer { 3 | background: $white; 4 | margin-top: 1rem; 5 | border-top: 1px solid darken($white, 20); 6 | padding: 1rem 0; 7 | 8 | a { 9 | color: $grav-link-color !important; 10 | &:hover { 11 | color: $grav-link-hover !important; 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/admin/scss/grav-admin/_navbar.scss: -------------------------------------------------------------------------------- 1 | #g5-container { 2 | .navbar-block { 3 | #navbar { 4 | ul { 5 | li:not(.config-select-wrap) { 6 | a { 7 | @include breakpoint(desktop-range) { 8 | padding: $content-padding $content-padding - 0.4; 9 | i { 10 | margin-right: 0.3rem; 11 | } 12 | } 13 | } 14 | } 15 | } 16 | } 17 | } 18 | } 19 | 20 | 21 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/admin/scss/grav-admin/_overview.scss: -------------------------------------------------------------------------------- 1 | #g5-container { 2 | .overview-header { 3 | .theme-title { 4 | color: $core-accent; 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/compat/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gantry/grav-compat", 3 | "description": "Gantry Framework Library (compat)", 4 | "license": "GPLv2", 5 | 6 | "require": { 7 | "php": ">=7.3.6", 8 | "scssphp/scssphp": "~1.10" 9 | }, 10 | "config": { 11 | "platform": { 12 | "php": "7.3.6" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/gantry5.yaml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | production: false 3 | use_media_folder: false 4 | offline: false 5 | offline_message: 'Site is currently in offline mode. Please try again later.' 6 | asset_timestamps: true 7 | asset_timestamps_period: 7 8 | debug: false 9 | compile_yaml: true 10 | compile_twig: true 11 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/hebe.json: -------------------------------------------------------------------------------- 1 | { 2 | "project":"grav-plugin-gantry5", 3 | "platforms":{ 4 | "grav":{ 5 | "nodes":{ 6 | "plugin":[ 7 | { 8 | "source":"/", 9 | "destination":"/user/plugins/gantry5" 10 | } 11 | ] 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/pages/gantry.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Gantry Templates 3 | 4 | cache_enable: false 5 | process: 6 | markdown: false 7 | twig: false 8 | 9 | access: 10 | admin.gantry: true 11 | admin.themes: true 12 | admin.super: true 13 | --- 14 | 15 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/pages/particle.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Gantry Particle 3 | robots: noindex,nofollow 4 | cache_enable: false 5 | process: 6 | markdown: false 7 | twig: false 8 | --- 9 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/permissions.yaml: -------------------------------------------------------------------------------- 1 | actions: 2 | admin.gantry: 3 | type: default 4 | label: Gantry 5 | 6 | default: 7 | type: access 8 | 9 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/templates/gantry.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'partials/base.html.twig' %} 2 | 3 | {% block stylesheets %} 4 | {{ parent() }} 5 | {% do grav.assets.removeCss(theme_url ~ '/css/fork-awesome.min.css') %} 6 | {% endblock %} 7 | 8 | {% block content %} 9 | {{ content|raw }} 10 | {% endblock %} 11 | -------------------------------------------------------------------------------- /platforms/grav/gantry5/templates/gantry.json.twig: -------------------------------------------------------------------------------- 1 | {% block content %}{{ content|raw }}{% endblock %} -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/blueprints/menu/menu.yaml: -------------------------------------------------------------------------------- 1 | name: Menu 2 | description: Gantry menu. 3 | type: particle 4 | 5 | form: 6 | fields: 7 | 8 | settings.title: 9 | type: input.text 10 | label: Title 11 | 12 | settings.description: 13 | type: input.text 14 | label: Description 15 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/language/en-GB/en-GB.com_gantry5.sys.ini: -------------------------------------------------------------------------------- 1 | COM_GANTRY5="Gantry 5 Themes" 2 | COM_GANTRY5_DESCRIPTION="Gantry 5 component. Needs to be enabled at all times." 3 | 4 | COM_GANTRY5_MENU_CUSTOM_DEFAULT="Custom Page" 5 | COM_GANTRY5_MENU_CUSTOM_DEFAULT_DESC="Displays custom layout." 6 | COM_GANTRY5_ADMIN_MENU_THEME="Default Theme" 7 | COM_GANTRY5_ADMIN_MENU_THEMES="Available Themes" 8 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/scss/configuration/admin/_base.scss: -------------------------------------------------------------------------------- 1 | // Colors 2 | @import "colors"; 3 | 4 | // Typography 5 | @import "typography"; 6 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/scss/configuration/admin/_colors.scss: -------------------------------------------------------------------------------- 1 | // Core 2 | $core-accent: #3180C2; 3 | $white: #fff; 4 | $light-gray: #ddd; 5 | 6 | // Body 7 | $body-bg: #404040; 8 | 9 | // Headers 10 | $main-header-text: #fff; 11 | $inner-header-bg: #222; 12 | $inner-header-text: $core-accent; 13 | $update-header-bg: #8F4DAE; 14 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/scss/joomla-admin/_buttons.scss: -------------------------------------------------------------------------------- 1 | @mixin button-color($color, $text: $white) { 2 | background: $color; 3 | color: $text; 4 | &:not(.disabled):not([disabled]):hover, &:focus { 5 | background: darken($color, 6%); 6 | color: $text; 7 | } 8 | } 9 | 10 | #g5-container { 11 | .button-primary { 12 | @include button-color($core-accent); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/scss/joomla-admin/_navbar.scss: -------------------------------------------------------------------------------- 1 | body.com_gantry5 { 2 | #g5-container { 3 | .navbar-block { 4 | #gantry-logo { 5 | right: 2.1rem; 6 | } 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/scss/joomla-admin/_overview.scss: -------------------------------------------------------------------------------- 1 | #g5-container { 2 | .overview-header { 3 | .theme-title { 4 | color: $core-accent; 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /platforms/joomla/com_gantry5/admin/scss/joomla-admin/_settings.scss: -------------------------------------------------------------------------------- 1 | #g5-container { 2 | .settings-block { 3 | input, textarea, select { 4 | &:focus { 5 | border-color: rgba($core-accent, .5); 6 | } 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /platforms/joomla/gantry5_nucleus/language/en-GB/en-GB.files_gantry5_nucleus.sys.ini: -------------------------------------------------------------------------------- 1 | GANTRY5_NUCLEUS="Gantry 5 Nucleus Engine" 2 | GANTRY5_NUCLEUS_DESCRIPTION="Nucleus rendering engine for Gantry 5." 3 | -------------------------------------------------------------------------------- /platforms/joomla/language/en-GB/en-GB.pkg_gantry5.sys.ini: -------------------------------------------------------------------------------- 1 | PKG_GANTRY5="Gantry 5" 2 | PKG_GANTRY5_DESCRIPTION="Gantry 5 Framework Package. Contains library, component, Nucleus engine and system & quick icon plugins." 3 | -------------------------------------------------------------------------------- /platforms/joomla/lib_gantry5/language/en-GB/en-GB.lib_gantry5.sys.ini: -------------------------------------------------------------------------------- 1 | LIB_GANTRY5="Gantry 5 Framework" 2 | LIB_GANTRY5_DESCRIPTION="Gantry 5 Framework libraries. Needs to be enabled at all times." 3 | -------------------------------------------------------------------------------- /platforms/joomla/mod_gantry5_particle/language/en-GB/en-GB.mod_gantry5_particle.ini: -------------------------------------------------------------------------------- 1 | MOD_GANTRY5_PARTICLE="Gantry 5 Particle" 2 | MOD_GANTRY5_PARTICLE_DESCRIPTION="This module allows you to add particles to module positions." 3 | MOD_GANTRY5_PARTICLE_NOT_INITIALIZED="%s: Cannot display content; not in Gantry 5 template!" 4 | 5 | MOD_GANTRY5_PARTICLE_FIELD_PARTICLE_LABEL="Particle" 6 | MOD_GANTRY5_PARTICLE_FIELD_PARTICLE_DESC="Select and configure Gantry 5 particle." 7 | 8 | GANTRY5_PLATFORM_EDIT_PARTICLE="Edit Particle" 9 | -------------------------------------------------------------------------------- /platforms/joomla/mod_gantry5_particle/language/en-GB/en-GB.mod_gantry5_particle.sys.ini: -------------------------------------------------------------------------------- 1 | MOD_GANTRY5_PARTICLE="Gantry 5 Particle" 2 | MOD_GANTRY5_PARTICLE_DESCRIPTION="This module allows you to add particles to module positions." 3 | -------------------------------------------------------------------------------- /platforms/joomla/plg_system_gantry5_debugbar/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gantry/joomla-debugbar", 3 | "description": "Gantry 5 DebugBar for Joomla", 4 | "license": "GPLv2", 5 | 6 | "require": { 7 | "php": ">=5.6.20", 8 | "maximebf/debugbar": "~1.10", 9 | "symfony/polyfill-iconv": "~1.0", 10 | "symfony/var-dumper": "~3.4" 11 | }, 12 | "config": { 13 | "platform": { 14 | "php": "5.6.20" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /platforms/joomla/plg_system_gantry5_debugbar/language/en-GB/en-GB.plg_system_gantry5_debugbar.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_SYSTEM_GANTRY5_DEBUGBAR="System - Gantry 5 Debug Bar" 2 | PLG_SYSTEM_GANTRY5_DEBUGBAR_DESCRIPTION="Enables Debug Bar in Gantry 5 themes." 3 | -------------------------------------------------------------------------------- /platforms/joomla/updates/gantry5_jed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | @version@ 4 | 5 | 6 | 39 7 | 40 8 | 41 9 | 42 10 | 11 | 12 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5/admin/languages/gantry5-en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/platforms/wordpress/gantry5/admin/languages/gantry5-en_US.mo -------------------------------------------------------------------------------- /platforms/wordpress/gantry5/admin/scss/configuration/admin/_base.scss: -------------------------------------------------------------------------------- 1 | // Colors 2 | @import "colors"; 3 | 4 | // Typography 5 | @import "typography"; 6 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5/admin/scss/wordpress-admin/_navbar.scss: -------------------------------------------------------------------------------- 1 | body.gantry5 { 2 | #g5-container { 3 | .navbar-block { 4 | #navbar { 5 | padding: 0 0.625rem; 6 | } 7 | 8 | #gantry-logo { 9 | right: 2.1rem; 10 | } 11 | } 12 | 13 | nav.navbar * { 14 | -webkit-box-sizing: content-box; 15 | -moz-box-sizing: content-box; 16 | box-sizing: content-box; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5/admin/scss/wordpress-admin/_overview.scss: -------------------------------------------------------------------------------- 1 | body.gantry5 { 2 | @each $preset, $core-accent in $wp-admin-presets { 3 | &.admin-color-#{$preset} { 4 | #g5-container { 5 | .overview-header { 6 | .theme-title { 7 | color: $core-accent; 8 | } 9 | } 10 | } 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5/admin/scss/wordpress-admin/_settings.scss: -------------------------------------------------------------------------------- 1 | @each $preset, $core-accent in $wp-admin-presets { 2 | .admin-color-#{$preset} { 3 | #g5-container { 4 | .settings-block { 5 | input, textarea, select { 6 | &:focus { 7 | border-color: rgba($core-accent, .5); 8 | } 9 | } 10 | } 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5/admin/scss/wordpress-admin/_sidebar.scss: -------------------------------------------------------------------------------- 1 | #adminmenuwrap { 2 | ul, dl { 3 | margin-left: auto; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5/uninstall.php: -------------------------------------------------------------------------------- 1 | rmdir(WP_CONTENT_DIR . '/cache/gantry5', true); 11 | $wp_filesystem->rmdir(WP_CONTENT_DIR . '/cache', false); 12 | 13 | // Remove options. 14 | delete_option('gantry5_plugin'); 15 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5_debugbar/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gantry/wordpress-debugbar", 3 | "description": "DebugBar for Gantry WordPress", 4 | "license": "GPLv2", 5 | 6 | "require": { 7 | "php": ">=5.6.20", 8 | "maximebf/debugbar": "~1.10", 9 | "symfony/polyfill-iconv": "~1.0", 10 | "symfony/var-dumper": "~3.4" 11 | }, 12 | "config": { 13 | "platform": { 14 | "php": "5.6.20" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /platforms/wordpress/gantry5_debugbar/readme.txt: -------------------------------------------------------------------------------- 1 | === Gantry 5 Debugbar === 2 | Contributors: gantry 3 | Author URI: http://gantry.org 4 | Tags: gantry, gantry5, framework, debugbar 5 | Requires at least: 5.2 6 | Tested up to: 5.9.0 7 | Requires PHP: 5.6.20 8 | Stable tag: @version@ 9 | -------------------------------------------------------------------------------- /src/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 |

3 |
{{ name }} Template Updated
4 |
v{{ version }} / {{ date }}
5 |

6 | 7 |
8 | Configure {{ name }} 9 |
10 | 11 | -------------------------------------------------------------------------------- /themes/base/joomla/language/en-GB/en-GB.tpl_g5_base.sys.ini: -------------------------------------------------------------------------------- 1 | G5_BASE="Base" 2 | TPL_G5_BASE_DESC="Base template for Gantry 5 Framework" 3 | -------------------------------------------------------------------------------- /themes/base/joomla/template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/base/joomla/template_preview.png -------------------------------------------------------------------------------- /themes/base/joomla/template_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/base/joomla/template_thumbnail.png -------------------------------------------------------------------------------- /themes/helium-child/wordpress/functions.php: -------------------------------------------------------------------------------- 1 | Gantry Framework' 3 | css: 4 | class: g-branding 5 | -------------------------------------------------------------------------------- /themes/helium/common/config/default/particles/copyright.yaml: -------------------------------------------------------------------------------- 1 | enabled: '1' 2 | date: 3 | start: '2016' 4 | end: now 5 | owner: 'Gantry Framework' 6 | link: '' 7 | target: _blank 8 | additional: 9 | text: 'Developed by RocketTheme exclusively
for Gantry 5.' 10 | css: 11 | class: '' 12 | -------------------------------------------------------------------------------- /themes/helium/common/config/default/particles/totop.yaml: -------------------------------------------------------------------------------- 1 | enabled: '1' 2 | css: 3 | class: '' 4 | icon: 'fa fa-chevron-up fa-fw' 5 | content: 'Back to top' 6 | title: 'Back to top' -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-black/lato-black-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-black/lato-black-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-black/lato-black-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-black/lato-black-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-black/lato-black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-black/lato-black-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-black/lato-black-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-black/lato-black-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-blackitalic/lato-blackitalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bold/lato-bold-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-bolditalic/lato-bolditalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-italic/lato-italic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-light/lato-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-light/lato-light-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-light/lato-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-light/lato-light-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-light/lato-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-light/lato-light-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-light/lato-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-light/lato-light-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-lightitalic/lato-lightitalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/lato/lato-regular/lato-regular-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-black/raleway-black-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-blackitalic/raleway-blackitalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bold/raleway-bold-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-bolditalic/raleway-bolditalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-italic/raleway-italic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-light/raleway-light-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-lightitalic/raleway-lightitalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-medium/raleway-medium-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-mediumitalic/raleway-mediumitalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-regular/raleway-regular-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibold/raleway-semibold-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/raleway/raleway-semibolditalic/raleway-semibolditalic-webfont.woff2 -------------------------------------------------------------------------------- /themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.eot -------------------------------------------------------------------------------- /themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.ttf -------------------------------------------------------------------------------- /themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.woff -------------------------------------------------------------------------------- /themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/fonts/rockettheme-apps/rockettheme-apps.woff2 -------------------------------------------------------------------------------- /themes/helium/common/images/above/img01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/above/img01.jpeg -------------------------------------------------------------------------------- /themes/helium/common/images/above/img02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/above/img02.jpeg -------------------------------------------------------------------------------- /themes/helium/common/images/header/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/header/img01.jpg -------------------------------------------------------------------------------- /themes/helium/common/images/header/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/header/img02.jpg -------------------------------------------------------------------------------- /themes/helium/common/images/intro/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/intro/mockup.png -------------------------------------------------------------------------------- /themes/helium/common/images/owlcarousel/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/owlcarousel/ajax-loader.gif -------------------------------------------------------------------------------- /themes/helium/common/images/owlcarousel/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/owlcarousel/owl.video.play.png -------------------------------------------------------------------------------- /themes/helium/common/images/styles/preset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/styles/preset1.png -------------------------------------------------------------------------------- /themes/helium/common/images/styles/preset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/styles/preset2.png -------------------------------------------------------------------------------- /themes/helium/common/images/styles/preset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/styles/preset3.png -------------------------------------------------------------------------------- /themes/helium/common/images/styles/preset4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/styles/preset4.png -------------------------------------------------------------------------------- /themes/helium/common/images/styles/preset5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/styles/preset5.png -------------------------------------------------------------------------------- /themes/helium/common/images/styles/preset6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/styles/preset6.png -------------------------------------------------------------------------------- /themes/helium/common/images/testimonials/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/testimonials/face.jpg -------------------------------------------------------------------------------- /themes/helium/common/images/testimonials/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/common/images/testimonials/img01.jpg -------------------------------------------------------------------------------- /themes/helium/common/layouts/_body_only.yaml: -------------------------------------------------------------------------------- 1 | version: 2 2 | preset: 3 | image: 'gantry-admin://images/layouts/body-only.png' 4 | name: _body_only 5 | timestamp: 1467996401 6 | layout: 7 | /mainbar/: 8 | - 9 | - system-messages-6659 10 | - 11 | - system-content-5845 12 | structure: 13 | mainbar: 14 | type: section 15 | subtype: main 16 | attributes: 17 | boxed: '' 18 | -------------------------------------------------------------------------------- /themes/helium/common/particles/horizontalmenu.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@nucleus/partials/particle.html.twig' %} 2 | 3 | {% block particle %} 4 | 5 |
    6 | 7 | {% for item in particle.items %} 8 |
  • 9 | {{ item.text }} 10 |
  • 11 | {% endfor %} 12 | 13 |
14 | 15 | {% endblock %} 16 | -------------------------------------------------------------------------------- /themes/helium/common/scss/configuration/_base.scss: -------------------------------------------------------------------------------- 1 | // Core 2 | @import "core"; 3 | 4 | // Colors 5 | @import "colors"; 6 | 7 | // Typography 8 | @import "typography"; 9 | 10 | // Nav 11 | @import "nav"; 12 | 13 | // Off Canvas 14 | @import "offcanvas"; 15 | -------------------------------------------------------------------------------- /themes/helium/common/scss/configuration/_core.scss: -------------------------------------------------------------------------------- 1 | // Content Block Spacing Variables 2 | $content-margin: 0.625rem !default; 3 | $content-padding: 0.938rem !default; 4 | 5 | $section-padding: 3rem; 6 | $core-border-radius: 0.25rem; 7 | $border-radius: 0.25rem; 8 | -------------------------------------------------------------------------------- /themes/helium/common/scss/configuration/_nav.scss: -------------------------------------------------------------------------------- 1 | // Dropdowns 2 | $menu-col-width: 180px !default; 3 | $menu-hide-on-mobile: 0 !default; 4 | -------------------------------------------------------------------------------- /themes/helium/common/scss/configuration/_offcanvas.scss: -------------------------------------------------------------------------------- 1 | // Offcanvas 2 | $offcanvas-width: 17rem !default; 3 | $offcanvas-toggle-visibility: 1 !default; 4 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/particles/_social.scss: -------------------------------------------------------------------------------- 1 | .g-social { 2 | a { 3 | padding: 0.1875rem 0.4rem; 4 | text-decoration: none; 5 | 6 | @include breakpoint(tablet-range) { 7 | padding: 0.1875rem 0.25rem; 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/particles/_totop.scss: -------------------------------------------------------------------------------- 1 | .g-totop { 2 | font-family: get-font-family($font-family-title); 3 | font-weight: $font-weight-bold; 4 | text-align: right; 5 | 6 | @include breakpoint(mobile-only) { 7 | text-align: center; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_above.scss: -------------------------------------------------------------------------------- 1 | #g-above { 2 | background: $above-background; 3 | color: $above-text-color; 4 | padding: $section-padding 0; 5 | } 6 | 7 | @media print { 8 | #g-above { 9 | background: #fff !important; 10 | color: #000 !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_aside.scss: -------------------------------------------------------------------------------- 1 | #g-aside { 2 | background: $base-background; 3 | color: $base-text-color; 4 | padding: $section-padding 0; 5 | } 6 | 7 | @media print { 8 | #g-aside { 9 | background: #fff !important; 10 | color: #000 !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_expanded.scss: -------------------------------------------------------------------------------- 1 | #g-expanded { 2 | background: $expanded-background; 3 | color: $expanded-text-color; 4 | padding: $section-padding; 5 | 6 | @include breakpoint(tablet-range) { 7 | padding: 0; 8 | } 9 | } 10 | 11 | @media print { 12 | #g-expanded { 13 | background: #fff !important; 14 | color: #000 !important; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_features.scss: -------------------------------------------------------------------------------- 1 | #g-features { 2 | background: $features-background; 3 | color: $features-text-color; 4 | padding: $section-padding 0; 5 | } 6 | 7 | @media print { 8 | #g-features { 9 | background: #fff !important; 10 | color: #000 !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_intro.scss: -------------------------------------------------------------------------------- 1 | #g-intro { 2 | background: $intro-background; 3 | color: $intro-text-color; 4 | padding: $section-padding 0; 5 | } 6 | 7 | @media print { 8 | #g-intro { 9 | background: #fff !important; 10 | color: #000 !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_main.scss: -------------------------------------------------------------------------------- 1 | #g-mainbar { 2 | background: $base-background; 3 | color: $base-text-color; 4 | padding: $section-padding 0; 5 | } 6 | 7 | @media print { 8 | #g-main { 9 | background: #fff !important; 10 | color: #000 !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_pagesurround.scss: -------------------------------------------------------------------------------- 1 | #g-page-surround { 2 | background: $pagesurround-background; 3 | overflow: hidden; 4 | 5 | .g-bodyonly & { 6 | color: $base-text-color; 7 | background: $base-background; 8 | } 9 | } 10 | 11 | @media print { 12 | #g-page-surround { 13 | background: #fff !important; 14 | color: #000 !important; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_sidebar.scss: -------------------------------------------------------------------------------- 1 | #g-sidebar { 2 | background: $base-background; 3 | color: $base-text-color; 4 | padding: $section-padding 0; 5 | } 6 | 7 | @media print { 8 | #g-sidebar { 9 | background: #fff !important; 10 | color: #000 !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/sections/_utility.scss: -------------------------------------------------------------------------------- 1 | #g-utility { 2 | background: $utility-background; 3 | color: $utility-text-color; 4 | padding: $section-padding 0; 5 | } 6 | 7 | @media print { 8 | #g-utility { 9 | background: #fff !important; 10 | color: #000 !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/styles/_hyperlinks.scss: -------------------------------------------------------------------------------- 1 | a { 2 | color: $link-regular; 3 | transition: all 0.2s; 4 | 5 | &:hover { 6 | color: $link-hover; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /themes/helium/common/scss/helium/styles/_tables.scss: -------------------------------------------------------------------------------- 1 | table { 2 | border: 1px solid darken($off-white, 5%); 3 | } 4 | 5 | th { 6 | background: $off-white; 7 | padding: 0.5rem; 8 | } 9 | 10 | td { 11 | padding: 0.5rem; 12 | } 13 | -------------------------------------------------------------------------------- /themes/helium/grav/g5_helium.yaml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | -------------------------------------------------------------------------------- /themes/helium/grav/includes/theme.php: -------------------------------------------------------------------------------- 1 | {{ __('404 Page not found', textdomain) }} 8 | 9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /themes/helium/wordpress/views/bbpress.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'bbpress.html.twig' %} 3 | {% set scope = 'bbpress' %} 4 | 5 | {% block content %} 6 | 7 |
8 |
9 | 10 |
11 | {{ content|raw }} 12 |
13 | 14 |
15 |
16 | 17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /themes/helium/wordpress/views/buddypress.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'buddypress.html.twig' %} 3 | {% set scope = 'buddypress' %} 4 | 5 | {% block content %} 6 | 7 |
8 |
9 | 10 |
11 | {{ content|raw }} 12 |
13 | 14 |
15 |
16 | 17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /themes/helium/wordpress/views/offline.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'offline.html.twig' %} 3 | 4 | {% block content %} 5 | 6 |

{{ gantry.global.get('offline_message') }}

7 | 8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /themes/helium/wordpress/views/page-plugin.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'page-plugin.html.twig' %} 3 | 4 | {% block content %} 5 | 6 |
7 |
8 | {{ content|raw }} 9 |
10 |
11 | 12 | {% endblock %} 13 | -------------------------------------------------------------------------------- /themes/helium/wordpress/views/partials/sidebar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/helium/wordpress/views/partials/sidebar.html.twig -------------------------------------------------------------------------------- /themes/hydrogen-child/wordpress/functions.php: -------------------------------------------------------------------------------- 1 | li > a { 7 | color: #F8F8F8; 8 | } 9 | 10 | .nav-tabs.nav-dark > li > a:hover { 11 | border-color: #333 #333 #111; 12 | background-color: #777777; 13 | } 14 | 15 | .nav-tabs.nav-dark > .active > a, 16 | .nav-tabs.nav-dark > .active > a:hover { 17 | color: #ffffff; 18 | background-color: #555555; 19 | border: 1px solid #222; 20 | } 21 | -------------------------------------------------------------------------------- /themes/hydrogen/joomla/template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/hydrogen/joomla/template_preview.png -------------------------------------------------------------------------------- /themes/hydrogen/joomla/template_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/hydrogen/joomla/template_thumbnail.png -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/blueprints/content/archive/heading.yaml: -------------------------------------------------------------------------------- 1 | name: Page Heading 2 | description: Options for displaying Heading 3 | type: archive 4 | 5 | form: 6 | fields: 7 | 8 | enabled: 9 | type: input.checkbox 10 | label: Enabled 11 | description: Display custom heading text at the top of the page. 12 | default: 1 13 | 14 | text: 15 | type: input.text 16 | label: Custom Heading 17 | description: Text to be used as a custom heading. 18 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/blueprints/content/archive/title.yaml: -------------------------------------------------------------------------------- 1 | name: Post Title 2 | description: Options for displaying title 3 | type: archive 4 | 5 | form: 6 | fields: 7 | 8 | enabled: 9 | type: input.checkbox 10 | label: Display Title 11 | description: Display post titles. 12 | default: 1 13 | 14 | link: 15 | type: input.checkbox 16 | label: Link Title 17 | description: Link titles to the posts. 18 | default: 0 19 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/blueprints/content/blog/heading.yaml: -------------------------------------------------------------------------------- 1 | name: Blog Page Heading 2 | description: Options for displaying Heading 3 | type: blog 4 | 5 | form: 6 | fields: 7 | 8 | enabled: 9 | type: input.checkbox 10 | label: Enabled 11 | description: Display custom heading text at the top of the page. 12 | default: 0 13 | 14 | text: 15 | type: input.text 16 | label: Custom Heading 17 | description: Text to be used as a custom heading. 18 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/blueprints/content/blog/title.yaml: -------------------------------------------------------------------------------- 1 | name: Post Title 2 | description: Options for displaying title 3 | type: blog 4 | 5 | form: 6 | fields: 7 | 8 | enabled: 9 | type: input.checkbox 10 | label: Display Title 11 | description: Display post titles. 12 | default: 1 13 | 14 | link: 15 | type: input.checkbox 16 | label: Link Title 17 | description: Link titles to the posts. 18 | default: 0 19 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/blueprints/content/page/title.yaml: -------------------------------------------------------------------------------- 1 | name: Page Title 2 | description: Options for displaying title 3 | type: page 4 | 5 | form: 6 | fields: 7 | 8 | enabled: 9 | type: input.checkbox 10 | label: Display Title 11 | description: Display page title. 12 | default: 1 13 | 14 | link: 15 | type: input.checkbox 16 | label: Link Title 17 | description: Link title to the page. 18 | default: 0 19 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/blueprints/content/single/title.yaml: -------------------------------------------------------------------------------- 1 | name: Post Title 2 | description: Options for displaying title 3 | type: single 4 | 5 | form: 6 | fields: 7 | 8 | enabled: 9 | type: input.checkbox 10 | label: Display Title 11 | description: Display post title. 12 | default: 1 13 | 14 | link: 15 | type: input.checkbox 16 | label: Link Title 17 | description: Link title to the post. 18 | default: 0 19 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/install/outlines.yaml: -------------------------------------------------------------------------------- 1 | default: 2 | title: Default 3 | preset: default 4 | 5 | home: 6 | title: Home 7 | preset: home 8 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/install/outlines/home/assignments.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | - 3 | is_front_page: true 4 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/install/outlines/home/index.yaml: -------------------------------------------------------------------------------- 1 | name: home 2 | timestamp: 1443033928 3 | preset: 4 | image: 'gantry-admin://images/layouts/home.png' 5 | name: home 6 | timestamp: 1442506624 7 | positions: { } 8 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/hydrogen/wordpress/screenshot.png -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/scss/hydrogen-wordpress/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | .pagination, .page-links { 3 | @include breakpoint(mobile-only) { 4 | .pagination-list-item { 5 | margin-bottom: 0.8rem; 6 | } 7 | } 8 | 9 | .page-numbers, .prev, .next { 10 | padding: 0.3rem 1rem; 11 | background: #fafafa; 12 | border: 1px solid $base-border-color; 13 | border-radius: $core-border-radius; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/sidebar.php: -------------------------------------------------------------------------------- 1 | {{ __('404 Page not found', textdomain) }} 8 | 9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/views/bbpress.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'bbpress.html.twig' %} 3 | {% set scope = 'bbpress' %} 4 | 5 | {% block content %} 6 | 7 |
8 |
9 | 10 |
11 | {{ content|raw }} 12 |
13 | 14 |
15 |
16 | 17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/views/buddypress.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'buddypress.html.twig' %} 3 | {% set scope = 'buddypress' %} 4 | 5 | {% block content %} 6 | 7 |
8 |
9 | 10 |
11 | {{ content|raw }} 12 |
13 | 14 |
15 |
16 | 17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/views/offline.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'offline.html.twig' %} 3 | 4 | {% block content %} 5 | 6 |

{{ gantry.global.get('offline_message') }}

7 | 8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/views/page-plugin.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "partials/page.html.twig" %} 2 | {% set twigTemplate = 'page-plugin.html.twig' %} 3 | 4 | {% block content %} 5 | 6 |
7 |
8 | {{ content|raw }} 9 |
10 |
11 | 12 | {% endblock %} 13 | -------------------------------------------------------------------------------- /themes/hydrogen/wordpress/views/partials/sidebar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gantry/gantry5/d8eb2dec18ada8d98336d1c1c177f2b25521b75d/themes/hydrogen/wordpress/views/partials/sidebar.html.twig --------------------------------------------------------------------------------