- Content (display):
{{ content.body.0 }}
- Content (value, formatted):
{{ entity.body.value|raw }}
- Content (value, unparsed HTML):
{{ entity.body.0.value }}
- Content (value, plain text):
{{ entity.body.0.value|striptags }}
- Summary:
{{ entity.body.summary }}
- drupal 8 multi-site config split - Google Search
- Config Management for Drupal Multi-site and Distributions - YouTube
- Configuration split — Acquia Product Documentation
- Using Config Split to Split Your Config Across Environments and Sites / Flyover Camp (Drupal Video)
- Using Config Split to Split Your Config Across Environments and Sites - YouTube
- [Drupal 8: Multi-Site Configuration
- Render arrays in Drupal docs
- Form Render Elements: attributes
- Form and render elements: list of
#types
Config Tools is a package of modules that help to manage your Drupal 8 configuration files. This includes two modules currently.
https://www.drupal.org/project/config_tools
From How to add classes to links in Drupal 8
$url = Url::fromUri('http://drupal.org');
$link_options = array(
'attributes' => array(
'class' => array(
'my-first-class',
'my-second-class',
),
This filter (alternatively, t
) will run the variable through the Drupal t()
function, which will return a translated string. This filter should be used for any interface strings manually placed in the template that will appear for users.