Skip to content
Snippets Groups Projects
Commit 31b7e887 authored by zymphonies-dev's avatar zymphonies-dev
Browse files

theme files

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 839 additions and 0 deletions
charity_zymphonies_theme.screen-sm-min:
label: screen-sm-min
mediaQuery: 'all and (min-width: 768px)'
weight: 1
multipliers:
- 1x
charity_zymphonies_theme.screen-md-min:
label: screen-md-min
mediaQuery: 'all and (min-width: 992px)'
weight: 1
multipliers:
- 1x
charity_zymphonies_theme.screen-lg-min:
label: screen-lg-min
mediaQuery: 'all and (min-width: 1200px)'
weight: 1
multipliers:
- 1x
name: Charity Zymphonies Theme
type: theme
description: 'Designed & Developed by <a href=http://www.zymphonies.com>Zymphonies</a><br/>Contact us for any kind of Drupal services <a href=mailto:info@zymphonies.com>info@zymphonies.com</a>'
package: core
core: 8.x
#libraries
libraries:
- charity_zymphonies_theme/bootstrap
- charity_zymphonies_theme/flexslider
- charity_zymphonies_theme/fontawesome
- charity_zymphonies_theme/smartmenus
- charity_zymphonies_theme/owl
- charity_zymphonies_theme/global-components
#Regions
regions:
#Header
header: 'Header'
primary_menu: 'Primary menu'
search: 'Search'
#Top widgets
topwidget_title: 'Top widget title'
topwidget_first: 'Top first widget'
topwidget_second: 'Top second widget'
topwidget_third: 'Top third widget'
#Top message widgets
topmessage: 'Top Message'
#Global region
highlighted: 'Highlighted'
page_title: 'Page title'
breadcrumb: 'Breadcrumb'
content: 'Content'
sidebar_first: 'Left sidebar'
sidebar_second: 'Right sidebar'
#Clients widgets
clients_title: 'Clients title'
clients: 'Clients'
#Features widgets
features_title: 'Features title'
features_first: 'Features first widget'
features_second: 'Features second widget'
features_third: 'Features third widget'
#Services widgets
services_title: 'Services title'
services_first: 'Services first widget'
services_second: 'Services second widget'
services_third: 'Services third widget'
services_forth: 'Services forth widget'
#Bottom widgets
bottom_title: 'Bottom title'
bottom_first: 'Bottom first widget'
bottom_second: 'Bottom second widget'
bottom_third: 'Bottom third widget'
bottom_forth: 'Bottom forth widget'
#Updates widgets
updates_title: 'Updates title'
updates_first: 'Updates first widget'
updates_second: 'Updates second widget'
updates_third: 'Updates third widget'
updates_forth: 'Updates forth widget'
#Footer widgets
footer_title: 'Footer title'
footer_first: 'Footer first widget'
footer_second: 'Footer second widget'
footer_third: 'Footer third widget'
#Auto hidden
auto_hidden_block: 'Auto hidden blocks'
# Bootstrap
bootstrap:
version: 1.x
css:
theme:
includes/bootstrap/css/bootstrap.min.css: {}
includes/bootstrap/css/docs.min.css: {}
js:
includes/bootstrap/js/popper.min.js: {}
includes/bootstrap/js/bootstrap.min.js: {}
dependencies:
- core/jquery
- core/drupal.ajax
- core/drupal
- core/drupalSettings
# global components
global-components:
Version: 1.x
css:
theme:
css/global.css: {}
css/media.css: {}
js:
js/custom.js: {}
dependencies:
- core/jquery
- core/drupal.ajax
- core/drupal
- core/drupalSettings
- core/jquery.once
# Flexslider
flexslider:
version: 1.x
css:
theme:
includes/flexslider/css/flexslider.css: {}
js:
includes/flexslider/js/jquery.flexslider-min.js: {}
dependencies:
- core/jquery
# Font awesome
fontawesome:
version: 1.x
css:
theme:
includes/fontawesome/css/fontawesome-all.css: {}
# Smart menus
smartmenus:
version: 1.x
css:
theme:
includes/smartmenus/sm-core-css.css: {}
js:
includes/smartmenus/jquery.smartmenus.min.js: {}
dependencies:
- core/jquery
# OWL
owl:
version: 1.x
css:
theme:
includes/owl/assets/owl.carousel.css: {}
includes/owl/assets/owl.theme.default.min.css: {}
js:
includes/owl/owl.carousel.min.js: {}
dependencies:
- core/jquery
<?php
/**
* @file
* Contains theme override functions and preprocess functions
*/
use Drupal\Core\Template\RenderWrapper;
use Drupal\Core\Template\Attribute;
use Drupal\search\Form\SearchBlockForm;
use Drupal\Component\Utility\SafeMarkup;
use Drupal\Core\Form\FormStateInterface;
use Drupal\system\Form\ThemeSettingsForm;
use Drupal\file\Entity\File;
use Drupal\Core\Url;
use Drupal\file\Plugin\Core\Entity\FileInterface;
/**
* Implements hook_preprocess_page() for block templates.
*/
function charity_zymphonies_theme_preprocess_page(&$variables) {
// Add responsive class for top widget.
if (!empty($variables['page']['topwidget_first']) && !empty($variables['page']['topwidget_second']) && !empty($variables['page']['topwidget_third'])) {
$variables['topwidget_class'] = 'col-md-4';
}
elseif((!empty($variables['page']['topwidget_first']) && !empty($variables['page']['topwidget_second'])) or (!empty($variables['page']['topwidget_first']) && !empty($variables['page']['topwidget_third'])) or (!empty($variables['page']['topwidget_third']) && !empty($variables['page']['topwidget_second']))) {
$variables['topwidget_class'] = 'col-md-6';
}
else {
$variables['topwidget_class'] = 'col-md-12';
}
// Add responsive class for bottom widget.
if (!empty($variables['page']['bottom_first']) && !empty($variables['page']['bottom_second']) && !empty($variables['page']['bottom_third']) && !empty($variables['page']['bottom_forth'])) {
$variables['bottom_class'] = 'col-md-3';
}
else if (!empty($variables['page']['bottom_first']) && !empty($variables['page']['bottom_second']) && !empty($variables['page']['bottom_third'])) {
$variables['bottom_class'] = 'col-md-4';
}
else if((!empty($variables['page']['bottom_first']) && !empty($variables['page']['bottom_second'])) or (!empty($variables['page']['bottom_first']) && !empty($variables['page']['bottom_third'])) or (!empty($variables['page']['bottom_third']) && !empty($variables['page']['bottom_second']))) {
$variables['bottom_class'] = 'col-md-6';
}
else {
$variables['bottom_class'] = 'col-md-12';
}
// Add responsive class for services widget.
if (!empty($variables['page']['services_first']) && !empty($variables['page']['services_second']) && !empty($variables['page']['services_third']) && !empty($variables['page']['services_forth'])) {
$variables['services_class'] = 'col-md-3';
}
else if (!empty($variables['page']['services_first']) && !empty($variables['page']['services_second']) && !empty($variables['page']['services_third'])) {
$variables['services_class'] = 'col-md-4';
}
else if((!empty($variables['page']['services_first']) && !empty($variables['page']['services_second'])) or (!empty($variables['page']['services_first']) && !empty($variables['page']['services_third'])) or (!empty($variables['page']['services_third']) && !empty($variables['page']['services_second']))) {
$variables['services_class'] = 'col-md-6';
}
else {
$variables['services_class'] = 'col-md-12';
}
// Add responsive class for updates widget.
if (!empty($variables['page']['updates_first']) && !empty($variables['page']['updates_second']) && !empty($variables['page']['updates_third']) && !empty($variables['page']['updates_forth'])) {
$variables['updates_class'] = 'col-md-3';
}
else if (!empty($variables['page']['updates_first']) && !empty($variables['page']['updates_second']) && !empty($variables['page']['updates_third'])) {
$variables['updates_class'] = 'col-md-4';
}
else if((!empty($variables['page']['updates_first']) && !empty($variables['page']['updates_second'])) or (!empty($variables['page']['updates_first']) && !empty($variables['page']['updates_third'])) or (!empty($variables['page']['updates_third']) && !empty($variables['page']['updates_second']))) {
$variables['updates_class'] = 'col-md-6';
}
else {
$variables['updates_class'] = 'col-md-12';
}
// Add responsive class for features.
if (!empty($variables['page']['features_first']) && !empty($variables['page']['features_second']) && !empty($variables['page']['features_third'])) {
$variables['features_class'] = 'col-md-4';
$variables['features_first_class'] = 'col-md-4';
}
elseif((!empty($variables['page']['features_first']) && !empty($variables['page']['features_second'])) or (!empty($variables['page']['features_first']) && !empty($variables['page']['features_third'])) or (!empty($variables['page']['features_third']) && !empty($variables['page']['features_second']))) {
$variables['features_class'] = 'col-md-6';
$variables['features_first_class'] = 'col-md-6';
}
else {
$variables['features_class'] = 'col-md-12';
}
// Add responsive class for footer.
if (!empty($variables['page']['footer_first']) && !empty($variables['page']['footer_second']) && !empty($variables['page']['footer_third'])) {
$variables['footer_class'] = 'col-md-4';
}
elseif((!empty($variables['page']['footer_first']) && !empty($variables['page']['footer_second'])) or (!empty($variables['page']['footer_first']) && !empty($variables['page']['footer_third'])) or (!empty($variables['page']['footer_third']) && !empty($variables['page']['footer_second']))) {
$variables['footer_class'] = 'col-md-6';
}
else {
$variables['footer_class'] = 'col-md-12';
}
// Add information about the number of sidebars.
if (!empty($variables['page']['sidebar_first']) && !empty($variables['page']['sidebar_second'])) {
$variables['contentlayout'] = 'col-md-6';
$variables['sidebarfirst'] = 'col-md-3';
$variables['sidebarsecond'] = 'col-md-3';
}
elseif (!empty($variables['page']['sidebar_first'])) {
$variables['contentlayout'] = 'col-md-9 ';
$variables['sidebarfirst'] = 'col-md-3';
}
elseif (!empty($variables['page']['sidebar_second'])) {
$variables['contentlayout'] = 'col-md-9';
$variables['sidebarsecond'] = 'col-md-3';
}
else {
$variables['contentlayout'] = 'col-md-12';
}
// Social media global variable.
$variables['show_social_icon'] = theme_get_setting('show_social_icon');
$variables['facebook_url'] = theme_get_setting('facebook_url');
$variables['google_plus_url'] = theme_get_setting('google_plus_url');
$variables['twitter_url'] = theme_get_setting('twitter_url');
$variables['linkedin_url'] = theme_get_setting('linkedin_url');
$variables['pinterest_url'] = theme_get_setting('pinterest_url');
$variables['rss_url'] = theme_get_setting('rss_url');
$variables['show_credit_link'] = theme_get_setting('show_credit_link');
//To get the current URL
$current_url = \Drupal::request()->getRequestUri();
$current_path = explode("/", $current_url);
$variables['current_path'] = $current_path[2];
// Slider
// Assign Variable for slider
if ($variables['is_front']) {
if (theme_get_setting('show_slideshow','charity_zymphonies_theme') == 1) {
$variables['show_slideshow'] = 1;
$variables['slider_content'] = charity_zymphonies_theme_get_slider_content();
}
}
}
/**
* Implements hook_preprocess_menu().
*/
function charity_zymphonies_theme_preprocess_menu(&$variables, $hook) {
if ($hook == 'menu__main') { // We're doing that for main menu.
// Get the current path.
$current_path = \Drupal::request()->getRequestUri();
$items = $variables['items'];
foreach ($items as $key => $item) {
// If path is current_path, set active to li.
if ($item['url']->toString() == $current_path) {
// Add active link.
$variables['items'][$key]['attributes']['class'] = 'active';
}
}
}
}
/**
* Slider
* Implements custom function for get slider content.
*/
function charity_zymphonies_theme_get_slider_content() {
$slider_content = array();
for ($i = 1; $i <= theme_get_setting('no_of_slides'); $i++) {
$fid = theme_get_setting('slide_image_path'.$i,'charity_zymphonies_theme');
if (!empty($fid)) {
$file = file_load($fid[0]);
$uri = $file->getFileUri();
$path = file_create_url($uri);
}
else {
$path = base_path() . drupal_get_path('theme', 'charity_zymphonies_theme') . theme_get_setting('slide_image_path_' . $i, 'charity_zymphonies_theme');
}
$slider_content[$i] = '<li>
<img src="' . $path . '" alt="Slider Banner" />
<div class="slider-caption">
<h2 class="slider-title">' . theme_get_setting('slide_title_' . $i, 'charity_zymphonies_theme').'</h2>
<div class="clearfix"><p class="slider-description">' . theme_get_setting('slide_description_' . $i, 'charity_zymphonies_theme').'</p></div>
<a href=' . theme_get_setting('slide_url_' . $i, 'charity_zymphonies_theme') . ' class="more-link">Read more</a>
</div>
</li>';
}
return $slider_content;
}
/**
* Implements hook_form_system_theme_settings_alter().
*/
function charity_zymphonies_theme_form_system_theme_settings_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state) {
$form['charity_zymphonies_theme_info'] = array(
'#markup' => '<h2><br/>Advanced Theme Settings</h2><div class="messages messages--warning">Clear cache after making any changes in theme settings. <a href="../../config/development/performance">Click here to clear cache</a></div>'
);
//Social Icon Link
$form['charity_zymphonies_theme_settings']['social_icon'] = array(
'#type' => 'details',
'#title' => t('Social Media Link'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['charity_zymphonies_theme_settings']['social_icon']['show_social_icon'] = array(
'#type' => 'checkbox',
'#title' => t('Show Social Icons'),
'#default_value' => theme_get_setting('show_social_icon'),
'#description' => t("Show/Hide Social media links"),
);
$form['charity_zymphonies_theme_settings']['social_icon']['facebook_url'] = array(
'#type' => 'textfield',
'#title' => t('Facebook URL'),
'#default_value' => theme_get_setting('facebook_url'),
);
$form['charity_zymphonies_theme_settings']['social_icon']['google_plus_url'] = array(
'#type' => 'textfield',
'#title' => t('Google plus URL'),
'#default_value' => theme_get_setting('google_plus_url'),
);
$form['charity_zymphonies_theme_settings']['social_icon']['twitter_url'] = array(
'#type' => 'textfield',
'#title' => t('Twitter URL'),
'#default_value' => theme_get_setting('twitter_url'),
);
$form['charity_zymphonies_theme_settings']['social_icon']['linkedin_url'] = array(
'#type' => 'textfield',
'#title' => t('LinkedIn URL'),
'#default_value' => theme_get_setting('linkedin_url'),
);
$form['charity_zymphonies_theme_settings']['social_icon']['pinterest_url'] = array(
'#type' => 'textfield',
'#title' => t('Pinterest URL'),
'#default_value' => theme_get_setting('pinterest_url'),
);
$form['charity_zymphonies_theme_settings']['social_icon']['rss_url'] = array(
'#type' => 'textfield',
'#title' => t('RSS URL'),
'#default_value' => theme_get_setting('rss_url'),
);
//Show/Hide credit
$form['charity_zymphonies_theme_settings']['credit_link'] = array(
'#type' => 'details',
'#title' => t('Footer Credit Link'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['charity_zymphonies_theme_settings']['credit_link']['show_credit_link'] = array(
'#type' => 'checkbox',
'#title' => t("Show/Hide 'Designed by Zymphonies' credit text"),
'#default_value' => theme_get_setting('show_credit_link'),
'#description' => t("Highly recommend to display credit in footer"),
);
//Slide show configure
$form['charity_zymphonies_theme_settings']['slideshow'] = array(
'#type' => 'details',
'#title' => t('Front Page Slideshow'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['charity_zymphonies_theme_settings']['slideshow']['no_of_slides'] = array(
'#type' => 'textfield',
'#title' => t('Number of slides'),
'#default_value' => theme_get_setting('no_of_slides'),
'#description' => t("Enter the number of slides required & Save configuration"),
'#markup' => '<div class="messages messages--warning">Clear caches after making any changes in theme settings. <a href="../../config/development/performance">Click here to clear cache</a></div>',
);
$form['charity_zymphonies_theme_settings']['slideshow']['show_slideshow'] = array(
'#type' => 'checkbox',
'#title' => t('Show Slideshow'),
'#default_value' => theme_get_setting('show_slideshow'),
'#description' => t("Show/Hide Slideshow in home page"),
);
$form['charity_zymphonies_theme_settings']['slideshow']['slide'] = array(
'#markup' => t('Change the banner image, title, description and link using below fieldset'),
);
for ($i = 1; $i <= theme_get_setting('no_of_slides'); $i++) {
$form['charity_zymphonies_theme_settings']['slideshow']['slide' . $i] = array(
'#type' => 'details',
'#title' => t('Slide '.$i),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['charity_zymphonies_theme_settings']['slideshow']['slide' . $i]['slide_image_path' . $i] = array(
'#type' => 'managed_file',
'#title' => t('Slide '.$i.' Image'),
'#default_value' => theme_get_setting('slide_image_path'.$i,'charity_zymphonies_theme'),
'#upload_location' => 'public://',
);
$form['charity_zymphonies_theme_settings']['slideshow']['slide' . $i]['slide_title_' . $i] = array(
'#type' => 'textfield',
'#title' => t('Slide '.$i.' Title'),
'#default_value' => theme_get_setting('slide_title_' . $i,'charity_zymphonies_theme'),
);
$form['charity_zymphonies_theme_settings']['slideshow']['slide' . $i]['slide_description_' . $i] = array(
'#type' => 'textarea',
'#title' => t('Slide '.$i.' Description'),
'#default_value' => theme_get_setting('slide_description_' . $i,'charity_zymphonies_theme'),
);
$form['charity_zymphonies_theme_settings']['slideshow']['slide' . $i]['slide_url_' . $i] = array(
'#type' => 'textfield',
'#title' => t('Slide '.$i.' URL'),
'#default_value' => theme_get_setting('slide_url_' . $i,'charity_zymphonies_theme'),
);
// Make the uploaded images permanent.
$image = theme_get_setting('slide_image_path'.$i,'charity_zymphonies_theme');
if(!empty($image)){
$file = File::load($image[0]);
$file->status = FILE_STATUS_PERMANENT;
$file->save();
$file_usage = \Drupal::service('file.usage');
$file_usage_check = $file_usage->listUsage($file);
if (empty($file_usage_check)) {
$file_usage->add($file, 'charity_zymphonies_theme', 'theme', $image[0]);
}
}
}
}
\ No newline at end of file
# Require any additional compass plugins here.
# Set this to the root of your project when deployed:
http_images_path = "../images"
http_path = "/"
css_dir = "css"
sass_dir = "sass"
javascripts_dir = "javascripts"
line_comments = false
output_style = :nested
cache = false
# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed
# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true
# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false
# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
# preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
# Default settings are not located here. Theme settings in general are handled
# strictly by this base theme via the @BootstrapSetting annotation discovery
# process. This is to help sub-theme's inherit its settings properly and
# determine when a setting should be saved to config as "overridden".
#
# @see \Drupal\bootstrap\Plugin\SettingBase
# @see \Drupal\bootstrap\Plugin\SettingInterface
# @see \Drupal\bootstrap\Plugin\SettingManager
# @see \Drupal\bootstrap\Plugin\Form\SystemThemeSettings
# Default features.
features:
comment_user_picture: true
comment_user_verification: true
favicon: true
logo: true
name: true
node_user_picture: true
slogan: true
facebook_url: 'https://www.facebook.com/zymphonies'
twitter_url: 'https://twitter.com/zymphonies'
google_plus_url: 'https://plus.google.com/+ZymphoniesTechnologies'
linkedin_url: 'http://www.linkedin.com/company/zymphonies'
pinterest_url: 'https://www.pinterest.com/zymphonies/'
rss_url: 'rss.xml'
# Toggle Social Media, Credit Link and Slideshow
show_social_icon: 1
show_credit_link: 1
show_slideshow: 1
#Slider Default Values
no_of_slides: 2
#Slider Default Images & Description
slide_title_1: 'The Easiest Way to Get suitable Property'
slide_description_1: 'Find Flats, Apartments & Real Estate'
slide_url_1: '#'
slide_image_path_1: '/images/slider/slide_01.jpg'
slide_title_2: 'Make a Difference in Your Career Track'
slide_description_2: 'Find Jobs, Employment & Career Opportunities'
slide_url_2: '#'
slide_image_path_2: '/images/slider/slide_02.jpg'
\ No newline at end of file
langcode: en
status: true
dependencies:
config:
- system.menu.account
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_account_menu
theme: charity_zymphonies_theme
region: top_menu
weight: 11
provider: null
plugin: 'system_menu_block:account'
settings:
id: 'system_menu_block:account'
label: 'User account menu'
provider: system
label_display: '0'
level: 1
depth: 2
visibility: { }
langcode: en
status: true
dependencies:
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_branding
theme: charity_zymphonies_theme
region: header
weight: 0
provider: null
plugin: system_branding_block
settings:
id: system_branding_block
label: 'Site branding'
provider: system
label_display: '0'
use_site_logo: true
use_site_name: true
use_site_slogan: false
visibility: { }
langcode: en
status: true
dependencies:
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_breadcrumbs
theme: charity_zymphonies_theme
region: breadcrumb
weight: -100
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: Breadcrumbs
provider: system
label_display: '0'
visibility: { }
langcode: en
status: true
dependencies:
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_content
theme: charity_zymphonies_theme
region: content
weight: 1
provider: null
plugin: system_main_block
settings:
id: system_main_block
label: 'Main page content'
provider: system
label_display: '0'
visibility: { }
langcode: en
status: true
dependencies:
config:
- system.menu.footer
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_footer
theme: charity_zymphonies_theme
region: auto_hidden_block
weight: 0
provider: null
plugin: 'system_menu_block:footer'
settings:
id: 'system_menu_block:footer'
label: 'Footer menu'
provider: system
label_display: '0'
level: 1
depth: 0
visibility: { }
langcode: en
status: true
dependencies:
module:
- help
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_help
theme: charity_zymphonies_theme
region: highlighted
weight: -30
provider: null
plugin: help_block
settings:
id: help_block
label: Help
provider: help
label_display: '0'
visibility: { }
langcode: en
status: true
dependencies:
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_local_actions
theme: charity_zymphonies_theme
region: auto_hidden_block
weight: 20
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 'Primary admin actions'
provider: core
label_display: '0'
visibility: { }
langcode: en
status: true
dependencies:
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_local_tasks
theme: charity_zymphonies_theme
region: content
weight: 0
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: Tabs
provider: core
label_display: '0'
primary: true
secondary: true
visibility: { }
langcode: en
status: true
dependencies:
config:
- system.menu.main
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_main_menu
theme: charity_zymphonies_theme
region: primary_menu
weight: 10
provider: null
plugin: 'system_menu_block:main'
settings:
id: 'system_menu_block:main'
label: 'Main navigation'
provider: system
label_display: '0'
level: 1
depth: 2
visibility: { }
langcode: en
status: true
dependencies:
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_messages
theme: charity_zymphonies_theme
region: highlighted
weight: -50
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 'Status messages'
provider: system
label_display: '0'
visibility: { }
langcode: en
status: true
dependencies:
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_page_title
theme: charity_zymphonies_theme
region: page_title
weight: 0
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Page title'
provider: core
label_display: '0'
visibility: { }
\ No newline at end of file
langcode: en
status: true
dependencies:
module:
- system
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_powered
theme: charity_zymphonies_theme
region: auto_hidden_block
weight: -10
provider: null
plugin: system_powered_by_block
settings:
id: system_powered_by_block
label: 'Powered by Drupal'
provider: system
label_display: '0'
visibility: { }
langcode: en
status: true
dependencies:
module:
- search
theme:
- charity_zymphonies_theme
id: charity_zymphonies_theme_search
theme: charity_zymphonies_theme
region: search
weight: -1
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: Search
provider: search
label_display: visible
visibility: { }
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment