<img alt="" src="https://secure.agile365enterprise.com/790157.png" style="display:none;">

Drupal 8 Theming Experience

author
By Team Srijan Mar 2, 2016
Drupal 8 Theming Experience
Drupal 8 Theming Experience
{%- set hs_blog_post_body -%} {%- set in_blog_post_body = true -%}

DrupalCon Asia was my first time at a Con, and it was a great opportunity to meet new people, learn from them and share my knowledge. I got a chance to attend the DriesNote, where he talked about Drupal 8, a roadmap for the future and the tremendous opportunities for Drupal in India. Everyone was excited about the sessions, code sprints and mentor sprints. It was great fun attending a code sprint and working on Drupal 8 UI issues. 

 

I also attended Scott Reeves session on “Drupal 8 Theming Experience”, on Day 2 of the Con. In his talk, he covered the core base theme, use of ‘without’ filters, theme registry loader and how to work with libraries. He also shared his Drupal 8 experience with the attendees.

Here’s a round-up of all that I learnt:

Set Classes in Twig templates



<article{{ attributes.addClass(classes) }}>

 

 

This is a feature introduced in Drupal 8 where we can set classes in the Twig template files. We can add different custom classes based on the conditions and call them to template file. 

Print what you want, when you want, with the ‘without’ filter

In Drupal 7, in order to hide the link or comments we used the “hide” keyword.

 




{{ content }}

{{ content.links }}






But in Drupal 8, the “without” keyword is used to hide content. Here's an example:









{{ content|without('comments', 'links') }}

{{ content.links }}

{{ content|without('comments') }}

Twig Blocks

<div{{ attributes }}>

{{ title_prefix }}

{% if label %}

<h2{{ title_attributes }}>{{ label }}</h2>

{% endif %}

{{ title_suffix }}

{% block content %}

{{ content }}

{% endblock %}

</div>
 

Drupal 8 also has an “extends” feature. This extends the properties of template by calling in your template file.

 {% extends "@stable/block/block.html.twig" %}

{% block content %}

<div class="block-content-wrapper">

{{ parent() }}

</div>

{% endblock %}
 

You can also take a look at the ‘extend’ documentation, in case you want to explore this feature in detail. 

Libraries

In drupal 8, there is the “libraries” feature where we can add new libraries, remove existing ones and override it. 

 
libraries-override:
 
# Replace an entire library

  core/drupal.collapse: mytheme/collapsed

  # Replace one particular library asset with another.

  subtheme/library/css/theme/css/layout.css: css/layout.css

  # Remove one particular asset.

  drupal/dialog/css/theme/dialog.theme.css: false

You can also take a look at Scott's presentation, to have a greater understanding of the new theming experience with Drupal 8.

{%- endset -%} {%- set hs_blog_post_summary -%}

DrupalCon Asia was my first time at a Con, and it was a great opportunity to meet new people, learn from them and share my knowledge. I got a chance to attend the DriesNote, where he talked about Drupal 8, a roadmap for the future and the tremendous opportunities for Drupal in India. Everyone was excited about the sessions, code sprints and mentor sprints. It was great fun attending a code sprint and working on Drupal 8 UI issues. 

{%- endset -%} {%- blog_post_data_wall_wrapper body={{hs_blog_post_body}}, summary={{hs_blog_post_summary}} %}

Subscribe to our newsletter