SlideShare a Scribd company logo
1 of 33
Developing
BrandingSolutions
for 2013
Presented byThomas Daly
About Me
ï‚– SharePoint Consultant
ï‚– Developer
ï‚– Branding
ï‚– Focused on the UI side of things
ï‚– Community Involvement
ï‚– Speaker
ï‚– NJ SharePoint User Group
ï‚– SharePoint Saturday NYC Organizer
ï‚– SharePoint Saturday NJ Organizer
ï‚– My SharePoint Blog
ï‚– MSDN forums
Topics for
Discussion
ï‚– Branding Assets
ï‚– Creating Branding Based Projects inVisual Studio
2013
ï‚– Deploying Assets for On-Prem / O365
ï‚– Themes
ï‚– CSS, Images & JavaScript
ï‚– Master Pages
ï‚– Composed Looks
ï‚– Additional Page Head
ï‚– Feature Receivers
ï‚– CSSRegistration, ScriptLink, Cache Busting
ï‚– Tools for improved development
What are
Branding
Assets?
Master
Page
CSS
Composed
Look
Images
Web Fonts JavaScript
Special
Considerations
ï‚– Are you On-Prem / O365?
ï‚– Will it be a Sandbox or Farm level solution?
ï‚– Will it be Site orWeb based scoping?
ï‚– Aka (SPSite, SPWeb)
ï‚– Aka (Site Collection, Site)
ï‚– Will you be auto applying master pages, themes or
composed looks?
ï‚– Will you be pushing branding down to sub sites?
ï‚– Do you have Single Site Collection or Multiple?
ï‚– Will you need any additional scripts to
programmatically apply / un-apply?
Example 1
Deploying Master Pages, Images, CSS &
JavaScript
Example 1
Deploying
Master Page,
Images,CSS,
&Javascript
ï‚– Mapped Images Folder
ï‚– Feature Image
ï‚– Mapped Layouts Folder / Style Library
ï‚– CSS Files
ï‚– Images
ï‚– JS Files
ï‚– Modules
ï‚– Master Pages
Example 1
Review
ï‚– Created Module to deploy .master file
ï‚– Created Mapped folder for CSS, images &
JavaScript
ï‚– Create Module for Style Library
Example 1
KeyConcepts
Modules &
Elements
ï‚– There may be times when you may want to deploy
files to the SharePoint server regardless of their file
type, such as new master pages.
ï‚– To do this, you can use Modules (not to be confused
withVisual Basic code modules).
ï‚– Modules are containers for files in a SharePoint
solution.When the solution is deployed, the files in
the module are copied to the specified folders on
the SharePoint server.
ï‚– An Element is an atomic unit within a Feature.
ï‚– There are several types of elements that can be
included in a Feature.
ï‚– More info on Module Items and Elements
ï‚– More info on ElementTypes
Example 1
KeyConcepts
Module –
Master Page
ï‚– Module
 Path – Location in the Project
 Url – Location on the Server
ï‚– File
 Type – GhostableInLibrary, can edit with Designer
 Level – Published so it’s auto approved
 ReplaceContent –True so future packages will overwrite
ï‚– Properties
 UIVersion – the targeted version of SP
 ContentTypeId – value for Master Page content type
 Title –Title of the master page
Example 1
KeyConcepts
Module –
Style Library
ï‚– Module
 Path – Location in the Project
 Url – Location on the Server
ï‚– File
 Type – GhostableInLibrary, can edit with Designer
 Level – Published so it’s auto approved
 ReplaceContent –True so future packages will overwrite
Example 2
Deploying a Composed Look
Composed
Looks
(Theming)
ï‚– Theming provides a quick and easy way to apply
lightweight branding to a SharePoint 2013 site
ï‚– A composed look, or design, is the color palette,
font scheme, background image, and master page
that determine the look and feel of a site.
Example 2
Deploying a
Composed
Look
ï‚– Components
ï‚– Master Page
ï‚– Theme Palette
ï‚– Background Image [optional]
ï‚– Font Scheme [optional]
ï‚– Options
 Declarative [Code – On-Prem]
ï‚– Imperative [XML - Sandbox / O365]
Deploying a custom Composed Look in SP2013
• Part 1
• Part 2
Example 2
Review
ï‚– Create Module for .spcolor file (theme)
ï‚– Create Element for Composed Look definition
ï‚– Create Module for custom Master Page
ï‚– Add and supporting images / fonts
Example 2
KeyConcepts
Module -
Theme
ï‚– Module
 Path – Location in the Project
 Url – Location on the Server
ï‚– File
 Type – GhostableInLibrary, can edit with Designer
 Level – Published so it’s auto approved
 ReplaceContent –True so future packages will overwrite
Example 2
KeyConcepts
Elements –
Composed
Look
ï‚– The Definition of the Composed Look
 Title & Name – Name of the Composed Look
 MasterPageUrl – url of the master page
 ThemeUrl – url of the .spcolor file
 ImageUrl – url of background image
 FontSchemeUrl –url of .spfont file
 DisplayOrder – Order in which is will appear in the list
Example 3
Additional Page Head
Example 3
Additional
Page Head
ï‚– Additional Page Head is a delegate control located
in the <HEAD> of SharePoint master pages. Can be
used to load multiple controls via code without
touching the master page directly.
ï‚– What could is be used for?
 Scenario 1 – Need a master page that is full width & one that is
fixed width.
 Scenario 2 – Need two create two distinct site brands and
master page layout is the same or similar
 Scenario 3 – Need to apply different style sheet on sub site to
change fonts or colors
ï‚– Additional Page Head can attach different style sheets to the
same master page.
ï‚– Minimize overhead of maintaining multiple master pages
Example 3
Review
ï‚– Add Style Sheet / JavaScript
ï‚– Create User Control
ï‚– Link User Control to CSS / JS
ï‚– Create Elements linked to User Control
Example 3
KeyConcepts
UserControl
[On-Prem] ï‚– Links to our additional style sheet or JavaScript
ï‚– User Controls supported in On-Prem only
Example 3
KeyConcepts
Elements
ï‚– Contains the point to the User Control
 Id – where the control will be loaded
 ControlSrc – path to the User Control
 Sequence – Order in which is appears [if multiple]
ï‚– For Sandbox / o365
ï‚– Link directly to the CSS in the elements
ï‚– Use JavaScript to write the link to theCSS [Hacky]
<CustomAction Id="SiteCSS" Location="ScriptLink"
ScriptBlock="document.write('&lt;link
rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
href=&quot;/_layouts/15/SPS.SP2013.Branding/example3/css/examp
le3.cssquot;&gt;&lt;/' + 'link&gt;');"
Sequence="203" />
Example 4
Feature Receivers
Example 4
Feature
Receivers
ï‚– Feature event receivers are methods that execute when
one of the following feature-related events occurs in
SharePoint:
ï‚– A feature is installed.
ï‚– A feature is activated.
ï‚– A feature is deactivated.
ï‚– A feature is removed.
ï‚– Feature Receivers in branding can be used for:
ï‚– Apply Composed Look
ï‚– Apply Master Page
ï‚– Apply Site Logo
ï‚– Apply branding to all sub sites
ï‚– Auto Apply Parent Branding on New Site Creation
ï‚– Feature Receivers are code so best for on-prem only.
 At the moment Sandbox can run code but it’s depreciated
in the next release.
ï‚– Sandbox has a hard limit to how long a sandboxed
solution can take to be completed.
ï‚– By default, this is 30 seconds
Example 4
Review
Feature
Receiver –
Activated &
Deactivating
ï‚– Add Master Page, CSS, Images & JavaScript like
previous examples
ï‚– Add Feature Receiver
ï‚– Add code to enable specific branding features
ï‚– Introduced public class to hold constants
ï‚– Introduced helper class w/ common branding
functions
ï‚– Branding & Provisioning for SharePoint Online &
Office 365
Example 4
Review
Web
Provisioned
Event Receiver
ï‚– By default, (Non-Publishing) SharePoint does not
trickle down applied themes, master page & css
ï‚– By creating Site Provisioned Event Handler we can
make the new children sites have the same
branding as their parent.
ï‚– Common things to set are:
ï‚– Apply Master Page (Site & System)
ï‚– Apply Site Logo
ï‚– Apply Alternative CSS
ï‚– Apply Parent Navigation
ï‚– Apply Composed Look
ï‚– Added the Synchronous property to theWeb
Provisioned Event Receiver will ensure Composed
Look is applied before the site is display after it’s
initial creation.
Example 5
CSSRegistration, ScriptLink,Cache Busting
Example 5
CSS
Registration
ï‚– SharePoint:CSSRegistration
ï‚– Used to register CSS files with SharePoint
ï‚– Prevents loading file multiple times
ï‚– Can control what file it will load after
ï‚– Using with files in _layouts will produce Cache
Busting effect
ï‚– Supports Dynamic Urls for Site Collection / Site
ï‚– Supports Conditional CSS
ï‚– Good to use inWeb Parts
ï‚– More details on CSSRegistration
Example 5
ScriptLink
ï‚– SharePoint:ScriptLink
ï‚– Used to register JS files with SharePoint
ï‚– Prevents loading file multiple times
ï‚– Can control what file it will load after
ï‚– Using with files in _layouts will produce Cache
Busting effect
ï‚– Supports Dynamic Urls for Site Collection / Site
ï‚– Good to use inWeb Parts
Example 5
Cache
Busting
ï‚– Using CSSRegistration & ScriptLink auto adds
?rev={hd5 hash}
ï‚– Files must also be stored in the _layouts, using the
Style Library or another folder will not generate a
hash
ï‚– This changes whenever the file is updated making
the browser think that it doesn’t have it and forces
a re-download
 Cache Busting can be done manually – when you
update css or javascript append a ?ver=x.x.x or
anything different on the end of the url
ï‚– This does not always update automatically.
Sometimes it needs a IISRESET
Tools for improved
development
Tools
ï‚– CKS: DeveloperTools - http://cksdev.codeplex.com/
ï‚– Must have for Quick Deploy alone
ï‚– MindscapeWeb Work Bench -
https://visualstudiogallery.msdn.microsoft.com/2b
96d16a-c986-4501-8f97-8008f9db141a
ï‚– Sass / Less Support
ï‚– Bundle
ï‚– Minify
Questions?
ï‚– Contact Info
ï‚– Thomas M Daly
 Website – http://thomasdaly.net
ï‚– Twitter - _tomdaly_
ï‚– Email
ï‚– TDaly@BandRSolutions.com [work]
ï‚– Tom.M.Daly@gmail.com [personal]
ï‚– LinkedIn

More Related Content

What's hot

Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developersSingsys Pte Ltd
 
Putting on Your Design Bootstraps: Intro to Responsive Design and SharePoint
Putting on Your Design Bootstraps: Intro to Responsive Design and SharePointPutting on Your Design Bootstraps: Intro to Responsive Design and SharePoint
Putting on Your Design Bootstraps: Intro to Responsive Design and SharePointAvePoint
 
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution Model
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution ModelInternet Sites in Microsoft Azure Using SharePoint 2013 - Solution Model
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution ModelDavid J Rosenthal
 
Tips for share point branding
Tips for share point brandingTips for share point branding
Tips for share point brandingVinod Dangudubiyyapu
 
Style guide for share point 2013 branding
Style guide for share point 2013 brandingStyle guide for share point 2013 branding
Style guide for share point 2013 brandingVinod Dangudubiyyapu
 
Practical management of development & QA environments for SharePoint 2013
Practical management of development & QA environments for SharePoint 2013Practical management of development & QA environments for SharePoint 2013
Practical management of development & QA environments for SharePoint 2013SharePointRadi
 
Gabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File ExampleGabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File Examplelinkedinsys
 
Blooming SharePoint Design
Blooming SharePoint DesignBlooming SharePoint Design
Blooming SharePoint DesignKathy Hughes
 
Branding SharePoint from Prototype to Deployment - Workshop
Branding SharePoint from Prototype to Deployment - WorkshopBranding SharePoint from Prototype to Deployment - Workshop
Branding SharePoint from Prototype to Deployment - WorkshopEric Overfield
 
Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...
Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...
Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...Kanwal Khipple
 
ASP.NET Lecture 3
ASP.NET Lecture 3ASP.NET Lecture 3
ASP.NET Lecture 3Julie Iskander
 
Optimizing SharePoint 2010 for Internet sites
Optimizing SharePoint 2010 for Internet sitesOptimizing SharePoint 2010 for Internet sites
Optimizing SharePoint 2010 for Internet sitesKanwal Khipple
 
AEM GEMS Session Template Editor Sept 14 2016
AEM GEMS Session Template Editor Sept 14 2016AEM GEMS Session Template Editor Sept 14 2016
AEM GEMS Session Template Editor Sept 14 2016AdobeMarketingCloud
 
Managing Omnichannel Experiences with Adobe Experience Manager (AEM)
Managing Omnichannel Experiences with Adobe Experience Manager (AEM)Managing Omnichannel Experiences with Adobe Experience Manager (AEM)
Managing Omnichannel Experiences with Adobe Experience Manager (AEM)Gabriel Walt
 
Spunite17 Converting your CEWP Customisations
Spunite17 Converting your CEWP CustomisationsSpunite17 Converting your CEWP Customisations
Spunite17 Converting your CEWP CustomisationsNCCOMMS
 
Customizing the SharePoint 2013 user interface with JavaScript - Chris OBrien
Customizing the SharePoint 2013 user interface with JavaScript - Chris OBrienCustomizing the SharePoint 2013 user interface with JavaScript - Chris OBrien
Customizing the SharePoint 2013 user interface with JavaScript - Chris OBrienChris O'Brien
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 Evan Mullins
 
.NET Foundation website suggestions for improvement
.NET Foundation website suggestions for improvement.NET Foundation website suggestions for improvement
.NET Foundation website suggestions for improvementLee Englestone
 
SharePoint 2013 Client-Side Rendering (CSR) & JSLink Templates
SharePoint 2013 Client-Side Rendering (CSR) & JSLink TemplatesSharePoint 2013 Client-Side Rendering (CSR) & JSLink Templates
SharePoint 2013 Client-Side Rendering (CSR) & JSLink TemplatesMuawiyah Shannak
 
Drupal SEO
Drupal SEODrupal SEO
Drupal SEODigitaria
 

What's hot (20)

Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developers
 
Putting on Your Design Bootstraps: Intro to Responsive Design and SharePoint
Putting on Your Design Bootstraps: Intro to Responsive Design and SharePointPutting on Your Design Bootstraps: Intro to Responsive Design and SharePoint
Putting on Your Design Bootstraps: Intro to Responsive Design and SharePoint
 
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution Model
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution ModelInternet Sites in Microsoft Azure Using SharePoint 2013 - Solution Model
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution Model
 
Tips for share point branding
Tips for share point brandingTips for share point branding
Tips for share point branding
 
Style guide for share point 2013 branding
Style guide for share point 2013 brandingStyle guide for share point 2013 branding
Style guide for share point 2013 branding
 
Practical management of development & QA environments for SharePoint 2013
Practical management of development & QA environments for SharePoint 2013Practical management of development & QA environments for SharePoint 2013
Practical management of development & QA environments for SharePoint 2013
 
Gabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File ExampleGabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File Example
 
Blooming SharePoint Design
Blooming SharePoint DesignBlooming SharePoint Design
Blooming SharePoint Design
 
Branding SharePoint from Prototype to Deployment - Workshop
Branding SharePoint from Prototype to Deployment - WorkshopBranding SharePoint from Prototype to Deployment - Workshop
Branding SharePoint from Prototype to Deployment - Workshop
 
Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...
Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...
Top 10 Performance Tips for making Your Public Facing SharePoint 2010 Site Fa...
 
ASP.NET Lecture 3
ASP.NET Lecture 3ASP.NET Lecture 3
ASP.NET Lecture 3
 
Optimizing SharePoint 2010 for Internet sites
Optimizing SharePoint 2010 for Internet sitesOptimizing SharePoint 2010 for Internet sites
Optimizing SharePoint 2010 for Internet sites
 
AEM GEMS Session Template Editor Sept 14 2016
AEM GEMS Session Template Editor Sept 14 2016AEM GEMS Session Template Editor Sept 14 2016
AEM GEMS Session Template Editor Sept 14 2016
 
Managing Omnichannel Experiences with Adobe Experience Manager (AEM)
Managing Omnichannel Experiences with Adobe Experience Manager (AEM)Managing Omnichannel Experiences with Adobe Experience Manager (AEM)
Managing Omnichannel Experiences with Adobe Experience Manager (AEM)
 
Spunite17 Converting your CEWP Customisations
Spunite17 Converting your CEWP CustomisationsSpunite17 Converting your CEWP Customisations
Spunite17 Converting your CEWP Customisations
 
Customizing the SharePoint 2013 user interface with JavaScript - Chris OBrien
Customizing the SharePoint 2013 user interface with JavaScript - Chris OBrienCustomizing the SharePoint 2013 user interface with JavaScript - Chris OBrien
Customizing the SharePoint 2013 user interface with JavaScript - Chris OBrien
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
 
.NET Foundation website suggestions for improvement
.NET Foundation website suggestions for improvement.NET Foundation website suggestions for improvement
.NET Foundation website suggestions for improvement
 
SharePoint 2013 Client-Side Rendering (CSR) & JSLink Templates
SharePoint 2013 Client-Side Rendering (CSR) & JSLink TemplatesSharePoint 2013 Client-Side Rendering (CSR) & JSLink Templates
SharePoint 2013 Client-Side Rendering (CSR) & JSLink Templates
 
Drupal SEO
Drupal SEODrupal SEO
Drupal SEO
 

Viewers also liked

SharePoint Saturday Philly - Intro to SharePoint 2010 Branding
SharePoint Saturday Philly - Intro to SharePoint 2010 BrandingSharePoint Saturday Philly - Intro to SharePoint 2010 Branding
SharePoint Saturday Philly - Intro to SharePoint 2010 BrandingThomas Daly
 
Getting Started with SharePoint Branding
Getting Started with SharePoint BrandingGetting Started with SharePoint Branding
Getting Started with SharePoint BrandingThomas Daly
 
Webinar2
Webinar2Webinar2
Webinar2schizo75
 
Anger Management
Anger Management Anger Management
Anger Management Chakrammba
 
SPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point brandingSPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point brandingThomas Daly
 
Sps philly 2012 disectting custom share-point sites
Sps philly 2012   disectting custom share-point sitesSps philly 2012   disectting custom share-point sites
Sps philly 2012 disectting custom share-point sitesThomas Daly
 

Viewers also liked (6)

SharePoint Saturday Philly - Intro to SharePoint 2010 Branding
SharePoint Saturday Philly - Intro to SharePoint 2010 BrandingSharePoint Saturday Philly - Intro to SharePoint 2010 Branding
SharePoint Saturday Philly - Intro to SharePoint 2010 Branding
 
Getting Started with SharePoint Branding
Getting Started with SharePoint BrandingGetting Started with SharePoint Branding
Getting Started with SharePoint Branding
 
Webinar2
Webinar2Webinar2
Webinar2
 
Anger Management
Anger Management Anger Management
Anger Management
 
SPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point brandingSPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point branding
 
Sps philly 2012 disectting custom share-point sites
Sps philly 2012   disectting custom share-point sitesSps philly 2012   disectting custom share-point sites
Sps philly 2012 disectting custom share-point sites
 

Similar to Developing Branding Solutions for 2013

Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013Thomas Daly
 
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewMake SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewCathy Dew
 
Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013Thomas Daly
 
Developing branding solutions
Developing branding solutionsDeveloping branding solutions
Developing branding solutionsThomas Daly
 
Schaeflein Dev409 Enterprise Branding Using Site Definitions
Schaeflein Dev409 Enterprise Branding Using Site DefinitionsSchaeflein Dev409 Enterprise Branding Using Site Definitions
Schaeflein Dev409 Enterprise Branding Using Site Definitionsmferraz
 
CMS Lessons Learned at Vassar by Megg Brown
CMS Lessons Learned at Vassar by Megg BrownCMS Lessons Learned at Vassar by Megg Brown
CMS Lessons Learned at Vassar by Megg Brownhannonhill
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!Evan Mullins
 
Adobe Experience Manager Core Components
Adobe Experience Manager Core ComponentsAdobe Experience Manager Core Components
Adobe Experience Manager Core ComponentsGabriel Walt
 
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateBlog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateSean Burgess
 
Developing and Deploying Custom Branding Solutions in SharePoint 2010
Developing and Deploying Custom Branding Solutions in SharePoint 2010Developing and Deploying Custom Branding Solutions in SharePoint 2010
Developing and Deploying Custom Branding Solutions in SharePoint 2010jhendrix88
 
MOSS Content Deployment 12.18.2008 Final
MOSS Content Deployment 12.18.2008 FinalMOSS Content Deployment 12.18.2008 Final
MOSS Content Deployment 12.18.2008 FinalShadeed Eleazer
 
Raybiztech Content Management Approach
Raybiztech Content Management ApproachRaybiztech Content Management Approach
Raybiztech Content Management Approachray biztech
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentEvan Mullins
 
So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015
So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015
So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015Ryan Schouten
 
Web technologies part-2
Web technologies part-2Web technologies part-2
Web technologies part-2Michael Anthony
 
Building fast track external facing sharepoint site
Building fast track external facing sharepoint siteBuilding fast track external facing sharepoint site
Building fast track external facing sharepoint siteManish Rawat
 
Beginner's guide to drupal
Beginner's guide to drupalBeginner's guide to drupal
Beginner's guide to drupalmayank.grd
 
Step into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniquesStep into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniquesBenjamin Niaulin
 
Designing SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessDesigning SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessKanwal Khipple
 

Similar to Developing Branding Solutions for 2013 (20)

Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013
 
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewMake SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
 
Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013
 
Developing branding solutions
Developing branding solutionsDeveloping branding solutions
Developing branding solutions
 
Schaeflein Dev409 Enterprise Branding Using Site Definitions
Schaeflein Dev409 Enterprise Branding Using Site DefinitionsSchaeflein Dev409 Enterprise Branding Using Site Definitions
Schaeflein Dev409 Enterprise Branding Using Site Definitions
 
CMS Lessons Learned at Vassar by Megg Brown
CMS Lessons Learned at Vassar by Megg BrownCMS Lessons Learned at Vassar by Megg Brown
CMS Lessons Learned at Vassar by Megg Brown
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
 
Adobe Experience Manager Core Components
Adobe Experience Manager Core ComponentsAdobe Experience Manager Core Components
Adobe Experience Manager Core Components
 
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateBlog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
 
Developing and Deploying Custom Branding Solutions in SharePoint 2010
Developing and Deploying Custom Branding Solutions in SharePoint 2010Developing and Deploying Custom Branding Solutions in SharePoint 2010
Developing and Deploying Custom Branding Solutions in SharePoint 2010
 
MOSS Content Deployment 12.18.2008 Final
MOSS Content Deployment 12.18.2008 FinalMOSS Content Deployment 12.18.2008 Final
MOSS Content Deployment 12.18.2008 Final
 
MANAGE STATIC RESOURCES IN SITECORE IN HELIX WAY
MANAGE STATIC RESOURCES IN SITECORE IN HELIX WAYMANAGE STATIC RESOURCES IN SITECORE IN HELIX WAY
MANAGE STATIC RESOURCES IN SITECORE IN HELIX WAY
 
Raybiztech Content Management Approach
Raybiztech Content Management ApproachRaybiztech Content Management Approach
Raybiztech Content Management Approach
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
 
So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015
So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015
So You Want To Be A SharePoint Developer-SPS Silicon Valley 2015
 
Web technologies part-2
Web technologies part-2Web technologies part-2
Web technologies part-2
 
Building fast track external facing sharepoint site
Building fast track external facing sharepoint siteBuilding fast track external facing sharepoint site
Building fast track external facing sharepoint site
 
Beginner's guide to drupal
Beginner's guide to drupalBeginner's guide to drupal
Beginner's guide to drupal
 
Step into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniquesStep into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniques
 
Designing SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessDesigning SharePoint 2010 for Business
Designing SharePoint 2010 for Business
 

More from Thomas Daly

Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...
Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...
Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...Thomas Daly
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionThomas Daly
 
M365 global developer bootcamp 2019 PA
M365 global developer bootcamp 2019  PAM365 global developer bootcamp 2019  PA
M365 global developer bootcamp 2019 PAThomas Daly
 
M365 global developer bootcamp 2019
M365 global developer bootcamp 2019M365 global developer bootcamp 2019
M365 global developer bootcamp 2019Thomas Daly
 
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UI
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UICross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UI
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UIThomas Daly
 
New Jersey Azure Bootcamp 2019
New Jersey Azure Bootcamp 2019New Jersey Azure Bootcamp 2019
New Jersey Azure Bootcamp 2019Thomas Daly
 
Cross Site Collection Navigation
Cross Site Collection NavigationCross Site Collection Navigation
Cross Site Collection NavigationThomas Daly
 
Learn from my Mistakes - Building Better Solutions in SPFx
Learn from my  Mistakes - Building Better Solutions in SPFxLearn from my  Mistakes - Building Better Solutions in SPFx
Learn from my Mistakes - Building Better Solutions in SPFxThomas Daly
 
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JS
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JSCross Site Collection Navigation using SPFx, Powershell PnP & PnP-JS
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JSThomas Daly
 
O365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - MaterialO365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - MaterialThomas Daly
 
Things you can do
Things you can doThings you can do
Things you can doThomas Daly
 
Global o365 developer bootcamp nj - slides
Global o365 developer bootcamp   nj - slidesGlobal o365 developer bootcamp   nj - slides
Global o365 developer bootcamp nj - slidesThomas Daly
 
Branding Office 365 w/ Front End Tools + SharePoint PnP
Branding Office 365 w/ Front End Tools + SharePoint PnPBranding Office 365 w/ Front End Tools + SharePoint PnP
Branding Office 365 w/ Front End Tools + SharePoint PnPThomas Daly
 
Global Office 365 Developer Bootcamp - Closing Remarks
Global Office 365 Developer Bootcamp - Closing RemarksGlobal Office 365 Developer Bootcamp - Closing Remarks
Global Office 365 Developer Bootcamp - Closing RemarksThomas Daly
 
Introduction to SharePoint Patterns and Practices (PnP)
Introduction to SharePoint Patterns and Practices (PnP)Introduction to SharePoint Patterns and Practices (PnP)
Introduction to SharePoint Patterns and Practices (PnP)Thomas Daly
 
Intro to the Office UI Fabric
Intro to the Office UI FabricIntro to the Office UI Fabric
Intro to the Office UI FabricThomas Daly
 
Branding office 365 with front end tooling
Branding office 365 with front end toolingBranding office 365 with front end tooling
Branding office 365 with front end toolingThomas Daly
 
Things you can do to brand Office 365 now
Things you can do to brand Office 365 nowThings you can do to brand Office 365 now
Things you can do to brand Office 365 nowThomas Daly
 
Gab2017 science-lab
Gab2017 science-labGab2017 science-lab
Gab2017 science-labThomas Daly
 
NJ Office 365 User Group March 2017 - Intro
NJ Office 365 User Group March 2017 - IntroNJ Office 365 User Group March 2017 - Intro
NJ Office 365 User Group March 2017 - IntroThomas Daly
 

More from Thomas Daly (20)

Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...
Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...
Building a Microsoft Teams Provisioning Process using Power Apps & Power Auto...
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx Version
 
M365 global developer bootcamp 2019 PA
M365 global developer bootcamp 2019  PAM365 global developer bootcamp 2019  PA
M365 global developer bootcamp 2019 PA
 
M365 global developer bootcamp 2019
M365 global developer bootcamp 2019M365 global developer bootcamp 2019
M365 global developer bootcamp 2019
 
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UI
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UICross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UI
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UI
 
New Jersey Azure Bootcamp 2019
New Jersey Azure Bootcamp 2019New Jersey Azure Bootcamp 2019
New Jersey Azure Bootcamp 2019
 
Cross Site Collection Navigation
Cross Site Collection NavigationCross Site Collection Navigation
Cross Site Collection Navigation
 
Learn from my Mistakes - Building Better Solutions in SPFx
Learn from my  Mistakes - Building Better Solutions in SPFxLearn from my  Mistakes - Building Better Solutions in SPFx
Learn from my Mistakes - Building Better Solutions in SPFx
 
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JS
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JSCross Site Collection Navigation using SPFx, Powershell PnP & PnP-JS
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JS
 
O365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - MaterialO365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - Material
 
Things you can do
Things you can doThings you can do
Things you can do
 
Global o365 developer bootcamp nj - slides
Global o365 developer bootcamp   nj - slidesGlobal o365 developer bootcamp   nj - slides
Global o365 developer bootcamp nj - slides
 
Branding Office 365 w/ Front End Tools + SharePoint PnP
Branding Office 365 w/ Front End Tools + SharePoint PnPBranding Office 365 w/ Front End Tools + SharePoint PnP
Branding Office 365 w/ Front End Tools + SharePoint PnP
 
Global Office 365 Developer Bootcamp - Closing Remarks
Global Office 365 Developer Bootcamp - Closing RemarksGlobal Office 365 Developer Bootcamp - Closing Remarks
Global Office 365 Developer Bootcamp - Closing Remarks
 
Introduction to SharePoint Patterns and Practices (PnP)
Introduction to SharePoint Patterns and Practices (PnP)Introduction to SharePoint Patterns and Practices (PnP)
Introduction to SharePoint Patterns and Practices (PnP)
 
Intro to the Office UI Fabric
Intro to the Office UI FabricIntro to the Office UI Fabric
Intro to the Office UI Fabric
 
Branding office 365 with front end tooling
Branding office 365 with front end toolingBranding office 365 with front end tooling
Branding office 365 with front end tooling
 
Things you can do to brand Office 365 now
Things you can do to brand Office 365 nowThings you can do to brand Office 365 now
Things you can do to brand Office 365 now
 
Gab2017 science-lab
Gab2017 science-labGab2017 science-lab
Gab2017 science-lab
 
NJ Office 365 User Group March 2017 - Intro
NJ Office 365 User Group March 2017 - IntroNJ Office 365 User Group March 2017 - Intro
NJ Office 365 User Group March 2017 - Intro
 

Recently uploaded

Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 

Developing Branding Solutions for 2013

  • 2. About Me ï‚– SharePoint Consultant ï‚– Developer ï‚– Branding ï‚– Focused on the UI side of things ï‚– Community Involvement ï‚– Speaker ï‚– NJ SharePoint User Group ï‚– SharePoint Saturday NYC Organizer ï‚– SharePoint Saturday NJ Organizer ï‚– My SharePoint Blog ï‚– MSDN forums
  • 3. Topics for Discussion ï‚– Branding Assets ï‚– Creating Branding Based Projects inVisual Studio 2013 ï‚– Deploying Assets for On-Prem / O365 ï‚– Themes ï‚– CSS, Images & JavaScript ï‚– Master Pages ï‚– Composed Looks ï‚– Additional Page Head ï‚– Feature Receivers ï‚– CSSRegistration, ScriptLink, Cache Busting ï‚– Tools for improved development
  • 5. Special Considerations ï‚– Are you On-Prem / O365? ï‚– Will it be a Sandbox or Farm level solution? ï‚– Will it be Site orWeb based scoping? ï‚– Aka (SPSite, SPWeb) ï‚– Aka (Site Collection, Site) ï‚– Will you be auto applying master pages, themes or composed looks? ï‚– Will you be pushing branding down to sub sites? ï‚– Do you have Single Site Collection or Multiple? ï‚– Will you need any additional scripts to programmatically apply / un-apply?
  • 6. Example 1 Deploying Master Pages, Images, CSS & JavaScript
  • 7. Example 1 Deploying Master Page, Images,CSS, &Javascript ï‚– Mapped Images Folder ï‚– Feature Image ï‚– Mapped Layouts Folder / Style Library ï‚– CSS Files ï‚– Images ï‚– JS Files ï‚– Modules ï‚– Master Pages
  • 8. Example 1 Review ï‚– Created Module to deploy .master file ï‚– Created Mapped folder for CSS, images & JavaScript ï‚– Create Module for Style Library
  • 9. Example 1 KeyConcepts Modules & Elements ï‚– There may be times when you may want to deploy files to the SharePoint server regardless of their file type, such as new master pages. ï‚– To do this, you can use Modules (not to be confused withVisual Basic code modules). ï‚– Modules are containers for files in a SharePoint solution.When the solution is deployed, the files in the module are copied to the specified folders on the SharePoint server. ï‚– An Element is an atomic unit within a Feature. ï‚– There are several types of elements that can be included in a Feature. ï‚– More info on Module Items and Elements ï‚– More info on ElementTypes
  • 10. Example 1 KeyConcepts Module – Master Page ï‚– Module ï‚– Path – Location in the Project ï‚– Url – Location on the Server ï‚– File ï‚– Type – GhostableInLibrary, can edit with Designer ï‚– Level – Published so it’s auto approved ï‚– ReplaceContent –True so future packages will overwrite ï‚– Properties ï‚– UIVersion – the targeted version of SP ï‚– ContentTypeId – value for Master Page content type ï‚– Title –Title of the master page
  • 11. Example 1 KeyConcepts Module – Style Library ï‚– Module ï‚– Path – Location in the Project ï‚– Url – Location on the Server ï‚– File ï‚– Type – GhostableInLibrary, can edit with Designer ï‚– Level – Published so it’s auto approved ï‚– ReplaceContent –True so future packages will overwrite
  • 12. Example 2 Deploying a Composed Look
  • 13. Composed Looks (Theming) ï‚– Theming provides a quick and easy way to apply lightweight branding to a SharePoint 2013 site ï‚– A composed look, or design, is the color palette, font scheme, background image, and master page that determine the look and feel of a site.
  • 14. Example 2 Deploying a Composed Look ï‚– Components ï‚– Master Page ï‚– Theme Palette ï‚– Background Image [optional] ï‚– Font Scheme [optional] ï‚– Options ï‚– Declarative [Code – On-Prem] ï‚– Imperative [XML - Sandbox / O365] Deploying a custom Composed Look in SP2013 • Part 1 • Part 2
  • 15. Example 2 Review ï‚– Create Module for .spcolor file (theme) ï‚– Create Element for Composed Look definition ï‚– Create Module for custom Master Page ï‚– Add and supporting images / fonts
  • 16. Example 2 KeyConcepts Module - Theme ï‚– Module ï‚– Path – Location in the Project ï‚– Url – Location on the Server ï‚– File ï‚– Type – GhostableInLibrary, can edit with Designer ï‚– Level – Published so it’s auto approved ï‚– ReplaceContent –True so future packages will overwrite
  • 17. Example 2 KeyConcepts Elements – Composed Look ï‚– The Definition of the Composed Look ï‚– Title & Name – Name of the Composed Look ï‚– MasterPageUrl – url of the master page ï‚– ThemeUrl – url of the .spcolor file ï‚– ImageUrl – url of background image ï‚– FontSchemeUrl –url of .spfont file ï‚– DisplayOrder – Order in which is will appear in the list
  • 19. Example 3 Additional Page Head ï‚– Additional Page Head is a delegate control located in the <HEAD> of SharePoint master pages. Can be used to load multiple controls via code without touching the master page directly. ï‚– What could is be used for? ï‚– Scenario 1 – Need a master page that is full width & one that is fixed width. ï‚– Scenario 2 – Need two create two distinct site brands and master page layout is the same or similar ï‚– Scenario 3 – Need to apply different style sheet on sub site to change fonts or colors ï‚– Additional Page Head can attach different style sheets to the same master page. ï‚– Minimize overhead of maintaining multiple master pages
  • 20. Example 3 Review ï‚– Add Style Sheet / JavaScript ï‚– Create User Control ï‚– Link User Control to CSS / JS ï‚– Create Elements linked to User Control
  • 21. Example 3 KeyConcepts UserControl [On-Prem] ï‚– Links to our additional style sheet or JavaScript ï‚– User Controls supported in On-Prem only
  • 22. Example 3 KeyConcepts Elements ï‚– Contains the point to the User Control ï‚– Id – where the control will be loaded ï‚– ControlSrc – path to the User Control ï‚– Sequence – Order in which is appears [if multiple] ï‚– For Sandbox / o365 ï‚– Link directly to the CSS in the elements ï‚– Use JavaScript to write the link to theCSS [Hacky] <CustomAction Id="SiteCSS" Location="ScriptLink" ScriptBlock="document.write('&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/_layouts/15/SPS.SP2013.Branding/example3/css/examp le3.cssquot;&gt;&lt;/' + 'link&gt;');" Sequence="203" />
  • 24. Example 4 Feature Receivers ï‚– Feature event receivers are methods that execute when one of the following feature-related events occurs in SharePoint: ï‚– A feature is installed. ï‚– A feature is activated. ï‚– A feature is deactivated. ï‚– A feature is removed. ï‚– Feature Receivers in branding can be used for: ï‚– Apply Composed Look ï‚– Apply Master Page ï‚– Apply Site Logo ï‚– Apply branding to all sub sites ï‚– Auto Apply Parent Branding on New Site Creation ï‚– Feature Receivers are code so best for on-prem only. ï‚– At the moment Sandbox can run code but it’s depreciated in the next release. ï‚– Sandbox has a hard limit to how long a sandboxed solution can take to be completed. ï‚– By default, this is 30 seconds
  • 25. Example 4 Review Feature Receiver – Activated & Deactivating ï‚– Add Master Page, CSS, Images & JavaScript like previous examples ï‚– Add Feature Receiver ï‚– Add code to enable specific branding features ï‚– Introduced public class to hold constants ï‚– Introduced helper class w/ common branding functions ï‚– Branding & Provisioning for SharePoint Online & Office 365
  • 26. Example 4 Review Web Provisioned Event Receiver ï‚– By default, (Non-Publishing) SharePoint does not trickle down applied themes, master page & css ï‚– By creating Site Provisioned Event Handler we can make the new children sites have the same branding as their parent. ï‚– Common things to set are: ï‚– Apply Master Page (Site & System) ï‚– Apply Site Logo ï‚– Apply Alternative CSS ï‚– Apply Parent Navigation ï‚– Apply Composed Look ï‚– Added the Synchronous property to theWeb Provisioned Event Receiver will ensure Composed Look is applied before the site is display after it’s initial creation.
  • 28. Example 5 CSS Registration ï‚– SharePoint:CSSRegistration ï‚– Used to register CSS files with SharePoint ï‚– Prevents loading file multiple times ï‚– Can control what file it will load after ï‚– Using with files in _layouts will produce Cache Busting effect ï‚– Supports Dynamic Urls for Site Collection / Site ï‚– Supports Conditional CSS ï‚– Good to use inWeb Parts ï‚– More details on CSSRegistration
  • 29. Example 5 ScriptLink ï‚– SharePoint:ScriptLink ï‚– Used to register JS files with SharePoint ï‚– Prevents loading file multiple times ï‚– Can control what file it will load after ï‚– Using with files in _layouts will produce Cache Busting effect ï‚– Supports Dynamic Urls for Site Collection / Site ï‚– Good to use inWeb Parts
  • 30. Example 5 Cache Busting ï‚– Using CSSRegistration & ScriptLink auto adds ?rev={hd5 hash} ï‚– Files must also be stored in the _layouts, using the Style Library or another folder will not generate a hash ï‚– This changes whenever the file is updated making the browser think that it doesn’t have it and forces a re-download ï‚– Cache Busting can be done manually – when you update css or javascript append a ?ver=x.x.x or anything different on the end of the url ï‚– This does not always update automatically. Sometimes it needs a IISRESET
  • 32. Tools ï‚– CKS: DeveloperTools - http://cksdev.codeplex.com/ ï‚– Must have for Quick Deploy alone ï‚– MindscapeWeb Work Bench - https://visualstudiogallery.msdn.microsoft.com/2b 96d16a-c986-4501-8f97-8008f9db141a ï‚– Sass / Less Support ï‚– Bundle ï‚– Minify
  • 33. Questions? ï‚– Contact Info ï‚– Thomas M Daly ï‚– Website – http://thomasdaly.net ï‚– Twitter - _tomdaly_ ï‚– Email ï‚– TDaly@BandRSolutions.com [work] ï‚– Tom.M.Daly@gmail.com [personal] ï‚– LinkedIn