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 |
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 |
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 |
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 |
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
--------------------------------------------------------------------------------