SlideShare a Scribd company logo
1 of 38
#SitecoreVDD
#SitecoreVirtualDay
Presented by:
Gert Gullentops @Gatagordo
March 17, 2021
Scriban for SXA
with
unlimited potential
© 2021 Sitecore Corporation A/S. Sitecore® and Own the Experience® are registered trademarks of Sitecore Corporation A/S.
All other brand names are the property of their respective owners.
#SitecoreVDD
#SitecoreVirtualDay
01
02
03
04
05
Rendering variants
Scriban
Context functions
Item members
Using (Sitecore) objects in Scriban
Agenda
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
Rendering variants
• The editor can change the look & feel of OOTB (or custom) components
• Change the css – e.g. color
 STYLES
• Change the html - e.g. table vs list, extra fields …
 VARIANTS
Rendering variants
let you display different appearances of the same rendering
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA variants
• Limit # to 10
• Clone component
• Use rules engine
• Provide a preview
• Think of your editors !
Best practices
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA Variants
• Try : play with the variants
• Try again (refactor)
• Read the f.. manual (docs) 
• Google  blogs
• Sitecore Slack & Sitecore StackExchange
How to learn?
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
Scriban
• Fast, powerful and lightweight text
templating engine
• Well documented
https://github.com/lunet-io/scriban
• SXA extensions available
https://doc.sitecore.com/developers/sxa/100/sitecore-experience-
accelerator/en/scriban-templates.html
Scriban
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
Scriban
• Introduced in v9.3
• Rendering variant child
• Can be used in combination with other types
• (More than) replacing Nvelocity
SXA & Scriban
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
• Items / Objects
• Functions
• Extensions on items and fields
• Own customizations possible
Scriban Extensions in SXA
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
• i_item i_page i_datasource …
• o_language o_context o_pagemode …
• o_model (external data)
Items / Objects
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
• sc_field sc_raw sc_link
• sc_follow sc_followmany sc_query
• sc_parameter (get a rendering parameter)
• …
• sc_execute (executes a rendering variant field located beneath the Scriban template – e.g. Responsive Image)
• sc_translate (gets translation from the SXA dictionary – new in 9.3)
Functions
<h2>{{ sc_follow i_item “Link” | sc_field “Title” }}</h2>
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
i_item.
• name display_name language …
• template_name …
• children parent …
• has_layout …
• url
• FieldName (sc_field)
Item extensions
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
i_item.Field.
• raw
• target(s) (sc_follow)
Field extensions
<h2>{{ i_item.Link.Title }}<h2>
<p>{{ i_item.Color.Title.raw }}</p>
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
• More control over the output
• Compatible with other variant children
Very flexibel
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
• Fast
• Lots of features with the SXA extensions
Very powerful
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
• Don’t drown yourself
• 1 page ≠ single Scriban template
• Maintainability
• KEEP IT SIMPLE
BUT …
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban
• Add our own functions
• Add our own item members
• Add our own objects
One step beyond…
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban - Context function
• IGenerateScribanContextProcessor
• <generateScribanContext> pipeline
https://ggullentops.blogspot.com/2019/11/custom-sxa-scriban-extensions.html
Context Function
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban - Context function
{{ sc_meow “Key” }}
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Item member
• GetScribanItemMember
• <getScribanItemMembers> pipeline
https://ggullentops.blogspot.com/2019/11/custom-sxa-scriban-extensions.html
Item member
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Item member
{{ i_item.updated }}
{{ i_page.updated }}
…
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects
• What if.. we want to show
“Hello {firstname} {lastname}” ?
• Add the User object to Scriban
(as SXA did with the Item object)
Thx @Dawid Rutkowski & Sitecore StackExchange 
https://ggullentops.blogspot.com/2020/03/extending-sitecore-scriban-user-object.html
Adding objects
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects
Scriban.Runtime.IObjectAccessor
• GetMembers
• TryGetValue
• ToString
1. Object Accessor
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects
• Return the names of all properties you want to expose 
all value typed properties of a users profile.
GetMembers
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects - Object Accessor
• Try to get the value for the given member from the object.
• The bool return value indicates whether the value was found or not
public bool TryGetValue(TemplateContext context, SourceSpan span, object target, string member, out object value)
TryGetValue
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects - Object Accessor
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects - Object Accessor
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects
• Register all accessors
• SitecoreTemplateContext
Sitecore.XA.Foundation.Scriban.ContextExtensions
2. Template Context
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects – Template Context
• Override SitecoreTemplateContext
• Constructor: initialize the Object Accessors
• GetMemberAccessorImpl: decide which Accessor to use (based on target type)
• ToString: decide which ToString method to use (based on target type)
Template Context
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects – Template Context
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects
• Processor to set template context
• generateScribanContext pipeline
• IGenerateScribanContextProcessor
Sitecore.XA.Foundation.Scriban.Pipelines.GenerateScribanContext
3. InitializeScriban Context
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects – InitializeScribanContext
InitializeScribanContext
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects – InitializeScribanContext
InitializeScribanContext
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
SXA & Scriban – Objects
Scriban template:
Usage
<div>
<ul>
{{for i_user in (sc_getusers)}}
<li>{{i_user}} - {{i_user.Email}} - {{i_user.Portrait}}</li>
{{end}}
</ul>
</div>
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
What did we learn today?
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
What did we learn
Variants are a powerful feature in SXA
Use variants to make the life of your editors easier
Use variants to make the life of your developers easier
Scriban adds even more flexibility and possibilities
Use Scriban – wisely
Write own Scriban extensions if needed
© 2021 Sitecore Corporation A/S.
#SitecoreVDD
#SitecoreVirtualDay
What did we learn about Scriban
Custom logic needed  create a Context Function
Access to extra (Sitecore) object needed  add an Object Accessor
Extra Item property needed  create an Item Member
Enjoy unlimited potential !
Keep it simple
#SitecoreVDD
#SitecoreVirtualDay
Today’s speaker
• Sitecore certified since 2006
• Sitecore MVP 2017-2021
Gert Gullentops
.NET developer – The Reference (Belgium)
ggullentops@reference.be
@Gatagordo
https://ggullentops.blogspot.com
FOR DISCUSSION PURPOSES ONLY.
Sitecore Confidential and Proprietary. ©2021 Sitecore
Corporation A/S. Sitecore® and Own the Experience® are
registered trademarks of Sitecore Corporation A/S. All other
brand names are the property of their respective owners.
#SitecoreVDD
#SitecoreVirtualDay

More Related Content

What's hot

Change Readiness Assessment Powerpoint Presentation Slides
Change Readiness Assessment Powerpoint Presentation SlidesChange Readiness Assessment Powerpoint Presentation Slides
Change Readiness Assessment Powerpoint Presentation Slides
SlideTeam
 
Bitkilərin havadan qidalanması. Fotosintez
Bitkilərin havadan qidalanması. FotosintezBitkilərin havadan qidalanması. Fotosintez
Bitkilərin havadan qidalanması. Fotosintez
mimio_azerbaijan
 
3D Sexy Girls Hq Wallpapers
3D Sexy Girls Hq Wallpapers3D Sexy Girls Hq Wallpapers
3D Sexy Girls Hq Wallpapers
fondas vakalis
 

What's hot (19)

Reporting with Oracle Application Express (APEX)
Reporting with Oracle Application Express (APEX)Reporting with Oracle Application Express (APEX)
Reporting with Oracle Application Express (APEX)
 
مصحف معلم التجويد
مصحف معلم التجويدمصحف معلم التجويد
مصحف معلم التجويد
 
Sharing and setting in salesforce
Sharing and setting in salesforceSharing and setting in salesforce
Sharing and setting in salesforce
 
Ee.tt. 07.50.36 Tablero de mando centralizado para control de encendido de ...
Ee.tt. 07.50.36   Tablero de mando centralizado para control de encendido de ...Ee.tt. 07.50.36   Tablero de mando centralizado para control de encendido de ...
Ee.tt. 07.50.36 Tablero de mando centralizado para control de encendido de ...
 
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
 
Change Readiness Assessment Powerpoint Presentation Slides
Change Readiness Assessment Powerpoint Presentation SlidesChange Readiness Assessment Powerpoint Presentation Slides
Change Readiness Assessment Powerpoint Presentation Slides
 
Bitkilərin havadan qidalanması. Fotosintez
Bitkilərin havadan qidalanması. FotosintezBitkilərin havadan qidalanması. Fotosintez
Bitkilərin havadan qidalanması. Fotosintez
 
شرح منحة مولي البر للشيخ الأبياري فيما زاده النشر على الشاطبية والدرة للشيخ ...
شرح منحة مولي البر  للشيخ الأبياري فيما زاده النشر على الشاطبية والدرة للشيخ ...شرح منحة مولي البر  للشيخ الأبياري فيما زاده النشر على الشاطبية والدرة للشيخ ...
شرح منحة مولي البر للشيخ الأبياري فيما زاده النشر على الشاطبية والدرة للشيخ ...
 
Zoho desk vs Team support
Zoho desk vs Team supportZoho desk vs Team support
Zoho desk vs Team support
 
Data Migration Made Easy
Data Migration Made EasyData Migration Made Easy
Data Migration Made Easy
 
Presentation Octopus 2.0
Presentation Octopus 2.0Presentation Octopus 2.0
Presentation Octopus 2.0
 
نموذج تحليل البيئة الداخلية - الخطة الاستراتيجية
نموذج تحليل البيئة الداخلية - الخطة الاستراتيجية نموذج تحليل البيئة الداخلية - الخطة الاستراتيجية
نموذج تحليل البيئة الداخلية - الخطة الاستراتيجية
 
SLSA - An End-to-End Framework for Supply Chain Integrity
SLSA - An End-to-End Framework for Supply Chain IntegritySLSA - An End-to-End Framework for Supply Chain Integrity
SLSA - An End-to-End Framework for Supply Chain Integrity
 
Migration From Oracle to PostgreSQL
Migration From Oracle to PostgreSQLMigration From Oracle to PostgreSQL
Migration From Oracle to PostgreSQL
 
A comprehensive guide to Salesforce Org Strategy
A comprehensive guide to Salesforce Org StrategyA comprehensive guide to Salesforce Org Strategy
A comprehensive guide to Salesforce Org Strategy
 
Integrating SIS’s with Salesforce: An Accidental Integrator’s Guide
Integrating SIS’s with Salesforce: An Accidental Integrator’s GuideIntegrating SIS’s with Salesforce: An Accidental Integrator’s Guide
Integrating SIS’s with Salesforce: An Accidental Integrator’s Guide
 
Introduction to A.I in Sales Cloud and Sales Cloud Einstein (April 27, 2017)
Introduction to A.I in Sales Cloud and Sales Cloud Einstein (April 27, 2017)Introduction to A.I in Sales Cloud and Sales Cloud Einstein (April 27, 2017)
Introduction to A.I in Sales Cloud and Sales Cloud Einstein (April 27, 2017)
 
Rofayda Health Park
Rofayda Health Park Rofayda Health Park
Rofayda Health Park
 
3D Sexy Girls Hq Wallpapers
3D Sexy Girls Hq Wallpapers3D Sexy Girls Hq Wallpapers
3D Sexy Girls Hq Wallpapers
 

Similar to Scriban for SXA with unlimited potential

Similar to Scriban for SXA with unlimited potential (20)

Sitecore User Group - JSS & GraphQL
Sitecore User Group - JSS & GraphQLSitecore User Group - JSS & GraphQL
Sitecore User Group - JSS & GraphQL
 
SUGCON ANZ 2022 Sitecore Personalize Technical.pptx
SUGCON ANZ 2022 Sitecore Personalize Technical.pptxSUGCON ANZ 2022 Sitecore Personalize Technical.pptx
SUGCON ANZ 2022 Sitecore Personalize Technical.pptx
 
JAMStack
JAMStackJAMStack
JAMStack
 
Verndale - Sitecore User Group Los Angeles Presentation
Verndale - Sitecore User Group Los Angeles PresentationVerndale - Sitecore User Group Los Angeles Presentation
Verndale - Sitecore User Group Los Angeles Presentation
 
Blazing fast web experience at your fingertips with Experience Edge, JSS for ...
Blazing fast web experience at your fingertips with Experience Edge, JSS for ...Blazing fast web experience at your fingertips with Experience Edge, JSS for ...
Blazing fast web experience at your fingertips with Experience Edge, JSS for ...
 
20180605 sso with apex and adfs the weblogic way
20180605 sso with apex and adfs the weblogic way20180605 sso with apex and adfs the weblogic way
20180605 sso with apex and adfs the weblogic way
 
Professional Services Insights into Improving Sitecore XP
Professional Services Insights into Improving Sitecore XPProfessional Services Insights into Improving Sitecore XP
Professional Services Insights into Improving Sitecore XP
 
SUGCON-NA-Unleashing the full potential of XM Cloud personalization with Site...
SUGCON-NA-Unleashing the full potential of XM Cloud personalization with Site...SUGCON-NA-Unleashing the full potential of XM Cloud personalization with Site...
SUGCON-NA-Unleashing the full potential of XM Cloud personalization with Site...
 
Multilayered Personalization in Sitecore
Multilayered Personalization in SitecoreMultilayered Personalization in Sitecore
Multilayered Personalization in Sitecore
 
Are Frameworks Evil? Should you care about Sitecore SXA and JSS?
Are Frameworks Evil? Should you care about Sitecore SXA and JSS?Are Frameworks Evil? Should you care about Sitecore SXA and JSS?
Are Frameworks Evil? Should you care about Sitecore SXA and JSS?
 
world's fastest delivery pipeline for Sitecore on Azure
world's fastest delivery pipeline for Sitecore on Azureworld's fastest delivery pipeline for Sitecore on Azure
world's fastest delivery pipeline for Sitecore on Azure
 
Are Frameworks Evil? Should you care about Sitecore SXA and JSS?
Are Frameworks Evil? Should you care about Sitecore SXA and JSS?Are Frameworks Evil? Should you care about Sitecore SXA and JSS?
Are Frameworks Evil? Should you care about Sitecore SXA and JSS?
 
Sug bangalore - headless jss
Sug bangalore - headless jssSug bangalore - headless jss
Sug bangalore - headless jss
 
Sitecore loves containers
Sitecore loves containersSitecore loves containers
Sitecore loves containers
 
Oracle APEX Nitro
Oracle APEX NitroOracle APEX Nitro
Oracle APEX Nitro
 
Salesforce Lightning Web Components Overview
Salesforce Lightning Web Components OverviewSalesforce Lightning Web Components Overview
Salesforce Lightning Web Components Overview
 
Bhadale Group of Companies - digital projects
Bhadale Group of Companies - digital projectsBhadale Group of Companies - digital projects
Bhadale Group of Companies - digital projects
 
Search - Sugcon 2023.pptx
Search - Sugcon 2023.pptxSearch - Sugcon 2023.pptx
Search - Sugcon 2023.pptx
 
Experience Edge at Scale: Implementing the Sitecore Composable Stack
Experience Edge at Scale: Implementing the Sitecore Composable StackExperience Edge at Scale: Implementing the Sitecore Composable Stack
Experience Edge at Scale: Implementing the Sitecore Composable Stack
 
Sitecore sxa best practices and secrets 29th june 2021
Sitecore sxa best practices and secrets   29th june 2021Sitecore sxa best practices and secrets   29th june 2021
Sitecore sxa best practices and secrets 29th june 2021
 

Recently uploaded

Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Chandigarh Call girls 9053900678 Call girls in Chandigarh
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
nilamkumrai
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
nirzagarg
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
nirzagarg
 

Recently uploaded (20)

𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
 

Scriban for SXA with unlimited potential

  • 1. #SitecoreVDD #SitecoreVirtualDay Presented by: Gert Gullentops @Gatagordo March 17, 2021 Scriban for SXA with unlimited potential
  • 2. © 2021 Sitecore Corporation A/S. Sitecore® and Own the Experience® are registered trademarks of Sitecore Corporation A/S. All other brand names are the property of their respective owners. #SitecoreVDD #SitecoreVirtualDay 01 02 03 04 05 Rendering variants Scriban Context functions Item members Using (Sitecore) objects in Scriban Agenda
  • 3. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay Rendering variants • The editor can change the look & feel of OOTB (or custom) components • Change the css – e.g. color  STYLES • Change the html - e.g. table vs list, extra fields …  VARIANTS Rendering variants let you display different appearances of the same rendering
  • 4. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA variants • Limit # to 10 • Clone component • Use rules engine • Provide a preview • Think of your editors ! Best practices
  • 5. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA Variants • Try : play with the variants • Try again (refactor) • Read the f.. manual (docs)  • Google  blogs • Sitecore Slack & Sitecore StackExchange How to learn?
  • 6. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay Scriban • Fast, powerful and lightweight text templating engine • Well documented https://github.com/lunet-io/scriban • SXA extensions available https://doc.sitecore.com/developers/sxa/100/sitecore-experience- accelerator/en/scriban-templates.html Scriban
  • 7. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay Scriban • Introduced in v9.3 • Rendering variant child • Can be used in combination with other types • (More than) replacing Nvelocity SXA & Scriban
  • 8. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban • Items / Objects • Functions • Extensions on items and fields • Own customizations possible Scriban Extensions in SXA
  • 9. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban • i_item i_page i_datasource … • o_language o_context o_pagemode … • o_model (external data) Items / Objects
  • 10. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban • sc_field sc_raw sc_link • sc_follow sc_followmany sc_query • sc_parameter (get a rendering parameter) • … • sc_execute (executes a rendering variant field located beneath the Scriban template – e.g. Responsive Image) • sc_translate (gets translation from the SXA dictionary – new in 9.3) Functions <h2>{{ sc_follow i_item “Link” | sc_field “Title” }}</h2>
  • 11. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban i_item. • name display_name language … • template_name … • children parent … • has_layout … • url • FieldName (sc_field) Item extensions
  • 12. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban i_item.Field. • raw • target(s) (sc_follow) Field extensions <h2>{{ i_item.Link.Title }}<h2> <p>{{ i_item.Color.Title.raw }}</p>
  • 13. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban • More control over the output • Compatible with other variant children Very flexibel
  • 14. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban • Fast • Lots of features with the SXA extensions Very powerful
  • 15. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban • Don’t drown yourself • 1 page ≠ single Scriban template • Maintainability • KEEP IT SIMPLE BUT …
  • 16. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban • Add our own functions • Add our own item members • Add our own objects One step beyond…
  • 17. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban - Context function • IGenerateScribanContextProcessor • <generateScribanContext> pipeline https://ggullentops.blogspot.com/2019/11/custom-sxa-scriban-extensions.html Context Function
  • 18. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban - Context function {{ sc_meow “Key” }}
  • 19. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Item member • GetScribanItemMember • <getScribanItemMembers> pipeline https://ggullentops.blogspot.com/2019/11/custom-sxa-scriban-extensions.html Item member
  • 20. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Item member {{ i_item.updated }} {{ i_page.updated }} …
  • 21. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects • What if.. we want to show “Hello {firstname} {lastname}” ? • Add the User object to Scriban (as SXA did with the Item object) Thx @Dawid Rutkowski & Sitecore StackExchange  https://ggullentops.blogspot.com/2020/03/extending-sitecore-scriban-user-object.html Adding objects
  • 22. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects Scriban.Runtime.IObjectAccessor • GetMembers • TryGetValue • ToString 1. Object Accessor
  • 23. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects • Return the names of all properties you want to expose  all value typed properties of a users profile. GetMembers
  • 24. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects - Object Accessor • Try to get the value for the given member from the object. • The bool return value indicates whether the value was found or not public bool TryGetValue(TemplateContext context, SourceSpan span, object target, string member, out object value) TryGetValue
  • 25. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects - Object Accessor
  • 26. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects - Object Accessor
  • 27. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects • Register all accessors • SitecoreTemplateContext Sitecore.XA.Foundation.Scriban.ContextExtensions 2. Template Context
  • 28. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects – Template Context • Override SitecoreTemplateContext • Constructor: initialize the Object Accessors • GetMemberAccessorImpl: decide which Accessor to use (based on target type) • ToString: decide which ToString method to use (based on target type) Template Context
  • 29. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects – Template Context
  • 30. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects • Processor to set template context • generateScribanContext pipeline • IGenerateScribanContextProcessor Sitecore.XA.Foundation.Scriban.Pipelines.GenerateScribanContext 3. InitializeScriban Context
  • 31. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects – InitializeScribanContext InitializeScribanContext
  • 32. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects – InitializeScribanContext InitializeScribanContext
  • 33. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay SXA & Scriban – Objects Scriban template: Usage <div> <ul> {{for i_user in (sc_getusers)}} <li>{{i_user}} - {{i_user.Email}} - {{i_user.Portrait}}</li> {{end}} </ul> </div>
  • 34. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay What did we learn today?
  • 35. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay What did we learn Variants are a powerful feature in SXA Use variants to make the life of your editors easier Use variants to make the life of your developers easier Scriban adds even more flexibility and possibilities Use Scriban – wisely Write own Scriban extensions if needed
  • 36. © 2021 Sitecore Corporation A/S. #SitecoreVDD #SitecoreVirtualDay What did we learn about Scriban Custom logic needed  create a Context Function Access to extra (Sitecore) object needed  add an Object Accessor Extra Item property needed  create an Item Member Enjoy unlimited potential ! Keep it simple
  • 37. #SitecoreVDD #SitecoreVirtualDay Today’s speaker • Sitecore certified since 2006 • Sitecore MVP 2017-2021 Gert Gullentops .NET developer – The Reference (Belgium) ggullentops@reference.be @Gatagordo https://ggullentops.blogspot.com
  • 38. FOR DISCUSSION PURPOSES ONLY. Sitecore Confidential and Proprietary. ©2021 Sitecore Corporation A/S. Sitecore® and Own the Experience® are registered trademarks of Sitecore Corporation A/S. All other brand names are the property of their respective owners. #SitecoreVDD #SitecoreVirtualDay

Editor's Notes

  1. Sc_field needed when space in the fieldname
  2. Think about your team members (and yourself)
  3. Inject Sitecore context – if needed Process  delegate : our custom logic  “sc_meow” (use Func instead of delegate) Config : resolve = true
  4. Item member = extension method on “item” Inject Sitecore context – if needed - Membername - Resolve function
  5. Scriban objects – not related to Sitecore yet
  6. Check is target is User Get properties and return name..
  7. Verify target. Get the property named "member" from the UserProfile type. Property is case sensitive! Get the value of that property from the given object (User) - in our case it's the user.Profile and not the user itself.
  8. This is SXA namespace
  9. This is SXA namespace
  10. sc_getusers = function to get users (or could be simple function to get the current User)  return User object from that function
  11. In order of likeliness to use them Keep your templates simple !!!