out on a twig - drupal st. louis€™s going on here? theming in drupal 8 examples of twig syntax...

51
Out on a TWIG: Custom Theme Development

Upload: hoangngoc

Post on 07-Jun-2018

226 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Out on a TWIG: Custom Theme Development

Page 2: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Who am I?

Christopher PanzaDrupaller since 2010

Currently @ Purdue University

Twitter: @aSharpZinc

D.O.: justAChris

Page 3: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

What’s going on here?

Theming in Drupal 8

Examples of TWIG Syntax in a Custom Drupal 8 Theme

Introduction or review of TWIG syntax

Page 4: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

TWIG Syntax1

Page 5: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Comments

{# Comment Here #}

{# Comment is

Here #}

{# /**

* This is a really

*

*

* Long Comment

*/

#}

Page 6: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Variables

{% set today = ‘Saturday’ %}

{% set activities = [

‘Keynote’ , ‘Sessions’ , ‘Learning Lounge’

‘Sprints’ , ‘Happy Hour’

]

%}

{% set chunk %}

<div id="special">

...

</div>

{% endset %}

Page 7: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Print & Drilling

{{ variable }}

{{ array.element }}

{{ array[‘element’] }}

{{ dump() }}

{{ dump(array) }}

Page 8: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Conditionals

{% if something %}

<div>Something Exists </div>

{% endif %}

{% if today == ‘Saturday’ %}

<div>Today is indeed Saturday </div>

{% endif %}

{% set round = True %}

{% set a =round? “The world is round” : “Wait What?” %}

Page 9: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Loops

{% for user in users %}

{{ user.username|e }}<br />

{% endfor %}

{% for i in 0..10 %}

{{ i }},

{% endfor %}

{{ loop.index }}

{{ loop.first }}

{{ loop.last }}

{{ loop.length }}

Page 11: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Theming in Drupal 8It’s just like Drupal 7, right?

2

Page 13: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Source on GitHub:https://github.com/justAChris/stltwigdemo15http://bit.ly/1exVVim

Page 14: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Additional Configuration - Taxonomy

Page 15: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Additional Configuration - Content Type

Page 16: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Additional Modules: Responsive Image, Pathauto, Devel

Page 17: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

File Structure/sites/all/themes/ -> /themes/

Internal Structure:

Page 18: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

blog_demo.info.yml

Page 19: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

blog_demo.libraries.yml

Page 20: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

html.html.twig

Page 21: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

page.html.twig

Page 22: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

styles.css

Page 23: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

styles.css

Page 24: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

script.js

Page 25: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Unstyled

Page 26: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax
Page 27: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

/sites/default/services.yml

https://www.drupal.org/node/1903374

Page 28: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax
Page 29: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Views Templates

Templates Copied from Core: /core/modules/views/templates/

Page 30: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Image Styles

1900px wide

900px wide

Page 31: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

blog_demo.breakpoints.yml

Page 32: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Responsive Image Styles

Page 33: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Updating Article (Node) Display

Page 34: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

File size is smaller for mobile

Original (Desktop):

1900 × 919 ( 352 KB )

On Mobile:

900 × 435 ( 88.4 KB )

Page 35: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Issue: Fatal "Unsupported operand types" error when using responsive images in viewshttps://www.drupal.org/node/2483357

Page 36: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Examples of TWIG syntax in themeDid you forget the syntax already?

3

Page 37: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

{{ logo }}

page.html.twig

Expects .svg

Page 38: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

blog_demo.theme

.png logo works

Page 39: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

{% set

Output:

Page 40: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Loops & Conditionals

views-view-unformatted--blog--block_1.html.twig

Page 41: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

styles.css:

Page 42: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Arrays

views-view-fields--blog--block_6.html.twig

Issue: views-view-fields.html.twig gets escapedhttps://www.drupal.org/node/2363423

Page 43: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Filters

Be Careful!

Page 44: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Filters (continued)

Be very careful

Page 45: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

One More on Filters

node.html.twig

Page 46: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

TWIG Blocks != Drupal Blocks

Page 47: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Duplicate node.html.twig?

copied and modified to node--article.html.twig

Page 48: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

OR...add two lines to node.html.twig

new node--article.html.twig

Page 49: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax
Page 51: Out on a TWIG - Drupal St. Louis€™s going on here? Theming in Drupal 8 Examples of TWIG Syntax in a Custom Drupal 8 Theme Introduction or review of TWIG syntax

Thanks!

ANY QUESTIONS?

Twitter: @aSharpZinc

D.O.: justAChris

[email protected]