SlideShare ist ein Scribd-Unternehmen logo
1 von 44
1
EFFECTIVE SEO IN ADOBE WEM
Best Practices and Implementation Strategies
2
INTRODUCTION
Who am I?
Paul Legan
Managing Partner at 3|SHARE Corporation
• Background in Economics and Computer Science
• Past work experience in marketing and IT
• Strong interest in user experience and responsive design
• Currently reside in Washington, D.C.
3
INTRODUCTION
Let’s pick a number…
110,585
Number of Google searches I have performed
since 2007.
(In case you are wondering, that is just over 50/day.)
4
INTRODUCTION
So what?
How do I know that?
Google told me.
5
INTRODUCTION
So what?
Why is that important?
We rely heavily on search.
🐦 🍜
(and we are increasingly impatient!)
6
INTRODUCTION
Search trends tell a lot
7
INTRODUCTION
Google is a user, too
With each Google algorithm
update, we see more focus
placed on user experience
than on strict keyword
analysis.
8
INTRODUCTION
It really is good
This is good for us both as
developers and consumers.
👍
9
INTRODUCTION
There’s a lot to search
Now content needs render
quickly, be relevant, engage the
reader and follow a structure.
Less room to fool search
engines by focusing just on
keywords.
10
INTRODUCTION
So we need great content
While Adobe WEM won’t write your
copy for you, it will make it easier
than ever to create meaningful and
engaging content.
11
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
What’s the plan?
12
We WILL:
• Cover on-page optimization techniques.
• Discuss out-of-the-box component functionality.
• Investigate custom tools for content authors.
We WILL NOT:
• Go over link-building strategies (directly).
• Cover social media integration.
• Discuss content marketing strategies.
AGENDA
Setting Expectations
13
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
Currently
14
TITLES, DESCRIPTIONS, AND NAVIGATION
Creating New Pages
• Page names determine the end URL, so
give them significant attention.
• Tips:
• Use relevant keywords!
• Use hyphens to separate those keywords
• Consider page hierarchy so as not to duplicate
important keywords
15
TITLES, DESCRIPTIONS, AND NAVIGATION
De-clutter Page Properties
• By default, the Page Properties dialog
includes a lot of fields.
• As a developer, we have two options:
• Add field descriptions for content authors
• Remove fields that are unnecessary to the
application
• There is no benefit to presenting content
authors with too many options.
16
• OOTB CQ page component includes a “headlibs.jsp” – probably looks something like
this:
• A lot of the default META tags are not necessary and should probably be removed from
the base content page component.
TITLES, DESCRIPTIONS, AND NAVIGATION
Use Your <HEAD>
if(!properties.get("cq:lastModifiedBy", "").equals("")) {
%><meta name="author" content="<%=
StringEscapeUtils.escapeHtml4(properties.get("cq:lastModifiedBy", "")) %>"<%=xs%>><%
}
if(!properties.get("jcr:title", "").equals("")) {
%><meta name="title" content="<%= StringEscapeUtils.escapeHtml4(properties.get("jcr:title",
"")) %>"<%=xs%>><%
}
17
• Here are some key properties to consider for your <HEAD> section:
• Set the character set (Charset Attribute)
• Description
• Canonical URL for Dynamic Pages (hopefully you don’t have query strings)
• Google “notranslate” – disable links to translations via Google results
• Robots “noindex” – useful for page-level exclusion from indexing
TITLES, DESCRIPTIONS, AND NAVIGATION
Use Your <HEAD>
18
Navigation is important, but so is a search box – provide proper search for users who
prefer it to deep navigation menus
TITLES, DESCRIPTIONS, AND NAVIGATION
Navigation is Not Just for Google
75% of Internet users are search-dominant (vs. link-dominant).
19
Always remind the user of where they are within the site.
Why?
They will likely forget.
TITLES, DESCRIPTIONS, AND NAVIGATION
Navigation is Not Just for Google
20
• Ensure navigation works without JavaScript
• Use text/CSS, not images for navigation links
• Shallow navigation reduces bounce rates
and page load times, both suspected to
improve search engine rankings
TITLES, DESCRIPTIONS, AND NAVIGATION
Navigation is Not Just for Google
21
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
Currently
22
CONTENT STRUCTURE
Structure Your Content with Intent
• Semantic code is – and always will be – a relevant part of SEO!
• Remember, it is called a document tree for a reason.
<body>
<h1>…</h1>
<article>
<h2>…</h2>
</article>
<aside>
<h2>…</h2>
<section> <!-- or article -->
<h3>…</h3>
</section>
</aside>
<footer></footer>
</body>
23
CONTENT STRUCTURE
Body Classes as a Preventative Measure
• Many structural shortcuts are taken to accommodate multiple layouts – why not avoid
this situation from the start?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>WEM is cool!</title>
</head>
<body class="<%=currentPage.getName()%>">
</body>
</html>
24
CONTENT STRUCTURE
Remove Superfluous HTML
• CQ components generate mounds of additional HTML that may or may not be
necessary. To remove, you can use the property cq:noDeclaration=true
<%@ include file="/libs/foundation/global.jsp" %>
<%@ page contentType="text/html; charset=utf-8" import="com.day.cq.wcm.api.WCMMode" %>
<%
String classNames = componentContext.getCssClassNames();
if (WCMMode.fromRequest(request) == WCMMode.DISABLED)
classNames = classNames.replaceAll("[a-zA-Z0-9_-]+ ?", "prefix-$0");
%>
<div class="<%= classNames %>">
<%-- Component Content Goes Here --%>
</div>
25
CONTENT STRUCTURE
Enable Only Components That are Necessary
• If possible, make the one and only H1 header tag part of the page template
• Some places to check:
• RTE Editor Formatting
Dropdown
• Title Component
26
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
Currently
27
INCORPORATING ASSETS FROM THE DAM
DAM Metadata and Filenames
• Three important factors to consider:
• File size
• Use a non-destructive image optimizer such as ImageOptim to reduce the size of your
images and improve page load time
• Filename
• Keywords in filenames are important for image search as well as site credibility; image
search is a surprisingly important traffic source for retail products
• ALT text
• This is the text that search engines use to understand images, so be wise with your ALT text
content.
28
INCORPORATING ASSETS FROM THE DAM
OOTB Image Component
• Yes, the ALT text is important, but the Description/Caption is also critical!
• Again, bounce rates
play a part in determining
website importance, so a
caption is pivotal
• Many clients choose to
develop a custom Image
component, so be sure to
include a caption field or
a similar solution
29
INCORPORATING ASSETS FROM THE DAM
VIDEO Tag, Transcripts, and Accessibility
• HTML5 defines both VIDEO and TRACK tags for use when embedding videos
• The TRACK tag can include a reference to a servlet (or selector handler) that pulls
track captions from a metadata field on the asset
<video width="320" height="240">
<source type="video/mp4" src=”paul.mp4" >
<track src=” paul.TTV.mp4" label="English Captions" kind="captions”>
</video>
String assetPath = request.getParameter("asset");
if ( (assetPath != null) && (resourceResolver.adaptTo(Session.class).nodeExists(assetPath)) ) {
Asset asset = resourceResolver.getResource(assetPath).adaptTo(Asset.class);
String caption = asset.getMetadataValue("dc:trackCaptions");
return caption;
}
30
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
Currently
31
MICROFORMATS AND AUTHORSHIP
Google Rich Snippets
• If Google understands the content on a
page, it will create a rich snippet to help
users with specific queries
• Google supports rich snippets for:
• Reviews
• People & Products
• Businesses
• Recipes
• Events
• Music
http://www.google.com/webmasters/tools/richsnippets
32
MICROFORMATS AND AUTHORSHIP
Google Rich Snippets
• Full Event example (via Schema.org):
<div itemscope itemtype="http://schema.org/Event">
<a itemprop="url" href="nba-miami-philidelphia-game3.html">
NBA Eastern Conference First Round Playoff Tickets:
<span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1)
</span></a>
<meta itemprop="startDate" content="2016-04-21T20:00">
Thu, 04/21/16 8:00 p.m.
<div itemprop="location" itemscope itemtype="http://schema.org/Place">
<a itemprop="url" href="wells-fargo-center.html”>Wells Fargo Center</a>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="addressLocality">Philadelphia</span>,
<span itemprop="addressRegion">PA</span>
</div>
</div>
</div>
33
MICROFORMATS AND AUTHORSHIP
Social Application Metadata
<!-- Windows 8 -->
<meta name="application-name" content="" />
<meta name="msapplication-TileColor" content="" />
<meta name="msapplication-TileImage" content="" />
<!-- Twitter -->
<meta name="twitter:card" content="">
<meta name="twitter:site" content="">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="">
<meta name="twitter:url" content="">
<!-- Facebook -->
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
34
MICROFORMATS AND AUTHORSHIP
Why Google Authorship Matters
• Google Authorship lets you connect content with your Google+ profile
• Utilizes the rel=“author” attribute on links to content
• Authors can build a following and establish themselves as subject matter experts
• Remember, bounce rates are important!
35
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
Currently
36
DON’T FORGET THE WEB SERVER
Sitemap Generation and Robots
• Sitemap.xml and Robots.txt files should
be generated automatically by CQ
• One method is to utilize tags within the
Page Properties field to determine which
pages get added to robots.txt for
exclusion
• Be sure to remove the /content structure
if you are rewriting URLs to avoid
duplicate content penalties
// get the QueryBuilder
QueryBuilder queryBuilder = getQueryBuilder();
// do a simple predicate search
Map map = new HashMap();
map.put("path", "/content/client");
map.put("p.limit", "10000");
map.put("type", "cq:Page");
map.put("tagid", ”client:nosearch");
map.put("tagid.property", "@jcr:content/cq:tags");
// run the query
Query query = createQuery(map);
[…]
// ultimately output to the robots.txt file
<%="Disallow: " + pagePath + ".html"%>
37
DON’T FORGET THE WEB SERVER
Compression, Content Expiration and Page Speed
• Google’s search-ranking algorithm considers page speed as a signal
• Use mod_expires in Apache to adjust content expiration:
• Enable GZIP Compression:
<IfModule mod_expires.c>
<FilesMatch ".(jpe?g|png|gif|js|css)$">
ExpiresActive On
ExpiresDefault "access plus 1 week"
</FilesMatch>
</IfModule>
# Compress certain file types by extension:
<files *.html>
SetOutputFilter DEFLATE
</files>
38
DON’T FORGET THE WEB SERVER
Custom Error Pages
• Many people overlook the opportunities presented by an error page
• An error page can allow users to discover newer, more relevant content
• Worst case users will appreciate a personalized error message
In the repository, copy the scripts at /libs/sling/servlet/errorhandler/ to
/apps/sling/servlet/errorhandler/. This path will likely not exist.
Within /apps/sling/servlet/errorhandler, you can:
1. Use the existing script.
2. Create and edit a new script.
39
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
Currently
40
EMPOWERING AUTHORS WITH CUSTOM
TOOLS
Integrating Third-Party Services - Simple
• The CQ Sidekick can be extended via JavaScript in
a client library.
CQ.Ext.namespace("seo", "seo.tools");
// Custom Action for the button
seo.tools.KincaidAction = {
"text": "Check Flesch–Kincaid Score",
"context": CQ.wcm.Sidekick.PAGE,
"handler": function() {
window.open("http://www.readability-score.com/");
}
};
// add this action to the default list
CQ.wcm.Sidekick.DEFAULT_ACTIONS.push(seo.tools.KincaidActi
on);
41
EMPOWERING AUTHORS WITH CUSTOM
TOOLS
Integrating Third-Party Services - Complex
• There’s nothing stopping you from going further and
integrating third-party services into the Sidekick (except
maybe a budget or two!)
CQ.wcm.Sidekick.CONTEXTS = [
CQ.wcm.Sidekick.PAGE,
CQ.wcm.Sidekick.COMPONENTS,
CQ.wcm.Sidekick.WORKFLOW,
CQ.wcm.Sidekick.VERSIONING,
CQ.wcm.Sidekick.INFO,
CQ.wcm.Sidekick.MY_CUSTOM_CONTEXT
];
42
• Titles, Descriptions, and Navigation
• Content Structure
• Incorporating Assets from the DAM
• Microformats and Authorship
• Don’t Forget the Web Server
• Empowering Content Authors with Custom Tools
• Beyond SEO: The User Experience
AGENDA
Currently
43
BEYOND SEO: THE USER EXPERIENCE
Think Logically
1. Think about everything that frustrates you
as a software user.
2. Don’t assume anything.
3. Guide, but do not restrict the content
author.
4. Enable the creation of great
documentation.
5. Always simplify.
* Via ExpoImages
44
QUESTIONS
And Hopefully Answers
Thanks for your time!
Q&A

Weitere ähnliche Inhalte

Was ist angesagt?

UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007Chandima Kulathilake
 
Build your SharePoint Internet Presence with PowerShell
Build your SharePoint Internet Presence with PowerShellBuild your SharePoint Internet Presence with PowerShell
Build your SharePoint Internet Presence with PowerShellRyan Dennis
 
SPS Dayton Slides
SPS Dayton SlidesSPS Dayton Slides
SPS Dayton SlidesRyan Dennis
 
Introduction to Client Side Dev in SharePoint Workshop
Introduction to Client Side Dev in SharePoint WorkshopIntroduction to Client Side Dev in SharePoint Workshop
Introduction to Client Side Dev in SharePoint WorkshopMark Rackley
 
SharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday RedmondSharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday RedmondKanwal Khipple
 
Building websites and leading librarians to a new level of project engagement
Building websites and leading librarians to a new level of project engagementBuilding websites and leading librarians to a new level of project engagement
Building websites and leading librarians to a new level of project engagementMarina Georgieva
 
Sitecore enhancing content author experience
Sitecore enhancing content author experienceSitecore enhancing content author experience
Sitecore enhancing content author experienceAnindita Bhattacharya
 
ScarePoint Saturday Spookinnati Slides
ScarePoint Saturday Spookinnati SlidesScarePoint Saturday Spookinnati Slides
ScarePoint Saturday Spookinnati SlidesRyan Dennis
 
SharePoint 2016 Platform Adoption Lessons Learned and Advanced Troubleshooting
SharePoint 2016 Platform Adoption   Lessons Learned and Advanced TroubleshootingSharePoint 2016 Platform Adoption   Lessons Learned and Advanced Troubleshooting
SharePoint 2016 Platform Adoption Lessons Learned and Advanced TroubleshootingJohn Calvert
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Vishal Pawar
 
The WordPress University
The WordPress UniversityThe WordPress University
The WordPress UniversityStephanie Leary
 
Basics of SharePoint
Basics of SharePointBasics of SharePoint
Basics of SharePointsamirsangli
 
Driving End User Adoption in SharePoint 2013 & 2010 - EPC Group
Driving End User Adoption in SharePoint 2013 & 2010 - EPC GroupDriving End User Adoption in SharePoint 2013 & 2010 - EPC Group
Driving End User Adoption in SharePoint 2013 & 2010 - EPC GroupEPC Group
 
Vibe Custom Development
Vibe Custom DevelopmentVibe Custom Development
Vibe Custom DevelopmentGWAVA
 
SharePoint 2013 Content search web part - Get it all in one place and style it!
SharePoint 2013 Content search web part - Get it all in one place and style it!SharePoint 2013 Content search web part - Get it all in one place and style it!
SharePoint 2013 Content search web part - Get it all in one place and style it!Benjamin Niaulin
 
Sitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN serversSitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN serversAnindita Bhattacharya
 

Was ist angesagt? (20)

UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
 
Build your SharePoint Internet Presence with PowerShell
Build your SharePoint Internet Presence with PowerShellBuild your SharePoint Internet Presence with PowerShell
Build your SharePoint Internet Presence with PowerShell
 
SPS Dayton Slides
SPS Dayton SlidesSPS Dayton Slides
SPS Dayton Slides
 
Managed Metadata Austin SPS
Managed Metadata Austin SPSManaged Metadata Austin SPS
Managed Metadata Austin SPS
 
Drupal SEO
Drupal SEODrupal SEO
Drupal SEO
 
Sq li
Sq liSq li
Sq li
 
Introduction to Client Side Dev in SharePoint Workshop
Introduction to Client Side Dev in SharePoint WorkshopIntroduction to Client Side Dev in SharePoint Workshop
Introduction to Client Side Dev in SharePoint Workshop
 
SharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday RedmondSharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday Redmond
 
Building websites and leading librarians to a new level of project engagement
Building websites and leading librarians to a new level of project engagementBuilding websites and leading librarians to a new level of project engagement
Building websites and leading librarians to a new level of project engagement
 
Sitecore enhancing content author experience
Sitecore enhancing content author experienceSitecore enhancing content author experience
Sitecore enhancing content author experience
 
ScarePoint Saturday Spookinnati Slides
ScarePoint Saturday Spookinnati SlidesScarePoint Saturday Spookinnati Slides
ScarePoint Saturday Spookinnati Slides
 
SharePoint 2016 Platform Adoption Lessons Learned and Advanced Troubleshooting
SharePoint 2016 Platform Adoption   Lessons Learned and Advanced TroubleshootingSharePoint 2016 Platform Adoption   Lessons Learned and Advanced Troubleshooting
SharePoint 2016 Platform Adoption Lessons Learned and Advanced Troubleshooting
 
Web development
Web developmentWeb development
Web development
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013
 
The WordPress University
The WordPress UniversityThe WordPress University
The WordPress University
 
Basics of SharePoint
Basics of SharePointBasics of SharePoint
Basics of SharePoint
 
Driving End User Adoption in SharePoint 2013 & 2010 - EPC Group
Driving End User Adoption in SharePoint 2013 & 2010 - EPC GroupDriving End User Adoption in SharePoint 2013 & 2010 - EPC Group
Driving End User Adoption in SharePoint 2013 & 2010 - EPC Group
 
Vibe Custom Development
Vibe Custom DevelopmentVibe Custom Development
Vibe Custom Development
 
SharePoint 2013 Content search web part - Get it all in one place and style it!
SharePoint 2013 Content search web part - Get it all in one place and style it!SharePoint 2013 Content search web part - Get it all in one place and style it!
SharePoint 2013 Content search web part - Get it all in one place and style it!
 
Sitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN serversSitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN servers
 

Ähnlich wie EVOLVE'13 | Enhance | Effective SEO | Paul Legan

Search engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATGSearch engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATGVignesh sitaraman
 
SNOW Knowledge Management_SSP.ppt
SNOW Knowledge Management_SSP.pptSNOW Knowledge Management_SSP.ppt
SNOW Knowledge Management_SSP.pptChakrapaniGunti
 
SRC 204 - Build a SharePoint 2013 Search Driven Application!
SRC 204 - Build a SharePoint 2013 Search Driven Application!SRC 204 - Build a SharePoint 2013 Search Driven Application!
SRC 204 - Build a SharePoint 2013 Search Driven Application!Brian Culver
 
10 Technical SEO Wins to Dominate Google Search
10 Technical SEO Wins to Dominate Google Search10 Technical SEO Wins to Dominate Google Search
10 Technical SEO Wins to Dominate Google SearchJeanneTan16
 
Kickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPressKickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPressColby Dimock
 
PPT on web development & SEO
PPT on web development & SEOPPT on web development & SEO
PPT on web development & SEOPrakrati Bansal
 
SharePoint Saturday Utah 2015 - SP2013 Search Driven Sites
SharePoint Saturday Utah 2015 - SP2013 Search Driven SitesSharePoint Saturday Utah 2015 - SP2013 Search Driven Sites
SharePoint Saturday Utah 2015 - SP2013 Search Driven SitesBrian Culver
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service ManagementDrew Madelung
 
Best Practices with Sitecore
Best Practices with SitecoreBest Practices with Sitecore
Best Practices with SitecoreAnant Corporation
 
Search Engine Optimisation - Have you been crawled over?
Search Engine Optimisation - Have you been crawled over?Search Engine Optimisation - Have you been crawled over?
Search Engine Optimisation - Have you been crawled over?Marshal Yung
 
Web development services
Web development servicesWeb development services
Web development serviceswebinfomatrix3
 
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptxwww.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptxDineshSparkdigital
 
Becoming a SharePoint Design Ninja
Becoming a SharePoint Design NinjaBecoming a SharePoint Design Ninja
Becoming a SharePoint Design NinjaKanwal Khipple
 
An Unexpected Solution to Microservices UI Composition
An Unexpected Solution to Microservices UI CompositionAn Unexpected Solution to Microservices UI Composition
An Unexpected Solution to Microservices UI CompositionDr. Arif Wider
 
Understanding the Web Page Layout
Understanding the Web Page LayoutUnderstanding the Web Page Layout
Understanding the Web Page LayoutJhaun Paul Enriquez
 
SEO for Developers
SEO for DevelopersSEO for Developers
SEO for DevelopersExove
 
Oracle PIM: Phantasmal Item Descriptions in your Organization
Oracle PIM: Phantasmal Item Descriptions in your OrganizationOracle PIM: Phantasmal Item Descriptions in your Organization
Oracle PIM: Phantasmal Item Descriptions in your OrganizationAXIA Consulting Inc.
 
The SharePoint & jQuery Guide
The SharePoint & jQuery GuideThe SharePoint & jQuery Guide
The SharePoint & jQuery GuideMark Rackley
 
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechConThe SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechConSPTechCon
 

Ähnlich wie EVOLVE'13 | Enhance | Effective SEO | Paul Legan (20)

Search engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATGSearch engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATG
 
SNOW Knowledge Management_SSP.ppt
SNOW Knowledge Management_SSP.pptSNOW Knowledge Management_SSP.ppt
SNOW Knowledge Management_SSP.ppt
 
SRC 204 - Build a SharePoint 2013 Search Driven Application!
SRC 204 - Build a SharePoint 2013 Search Driven Application!SRC 204 - Build a SharePoint 2013 Search Driven Application!
SRC 204 - Build a SharePoint 2013 Search Driven Application!
 
10 Technical SEO Wins to Dominate Google Search
10 Technical SEO Wins to Dominate Google Search10 Technical SEO Wins to Dominate Google Search
10 Technical SEO Wins to Dominate Google Search
 
Kickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPressKickstart Your Technical SEO for WordPress
Kickstart Your Technical SEO for WordPress
 
PPT on web development & SEO
PPT on web development & SEOPPT on web development & SEO
PPT on web development & SEO
 
Boost and SEO
Boost and SEOBoost and SEO
Boost and SEO
 
SharePoint Saturday Utah 2015 - SP2013 Search Driven Sites
SharePoint Saturday Utah 2015 - SP2013 Search Driven SitesSharePoint Saturday Utah 2015 - SP2013 Search Driven Sites
SharePoint Saturday Utah 2015 - SP2013 Search Driven Sites
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service Management
 
Best Practices with Sitecore
Best Practices with SitecoreBest Practices with Sitecore
Best Practices with Sitecore
 
Search Engine Optimisation - Have you been crawled over?
Search Engine Optimisation - Have you been crawled over?Search Engine Optimisation - Have you been crawled over?
Search Engine Optimisation - Have you been crawled over?
 
Web development services
Web development servicesWeb development services
Web development services
 
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptxwww.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
 
Becoming a SharePoint Design Ninja
Becoming a SharePoint Design NinjaBecoming a SharePoint Design Ninja
Becoming a SharePoint Design Ninja
 
An Unexpected Solution to Microservices UI Composition
An Unexpected Solution to Microservices UI CompositionAn Unexpected Solution to Microservices UI Composition
An Unexpected Solution to Microservices UI Composition
 
Understanding the Web Page Layout
Understanding the Web Page LayoutUnderstanding the Web Page Layout
Understanding the Web Page Layout
 
SEO for Developers
SEO for DevelopersSEO for Developers
SEO for Developers
 
Oracle PIM: Phantasmal Item Descriptions in your Organization
Oracle PIM: Phantasmal Item Descriptions in your OrganizationOracle PIM: Phantasmal Item Descriptions in your Organization
Oracle PIM: Phantasmal Item Descriptions in your Organization
 
The SharePoint & jQuery Guide
The SharePoint & jQuery GuideThe SharePoint & jQuery Guide
The SharePoint & jQuery Guide
 
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechConThe SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
 

Mehr von Evolve The Adobe Digital Marketing Community

Mehr von Evolve The Adobe Digital Marketing Community (20)

Evolve 19 | Sarah Xu & Kanika Gera | Adobe I/O - Why You Need it to Execute o...
Evolve 19 | Sarah Xu & Kanika Gera | Adobe I/O - Why You Need it to Execute o...Evolve 19 | Sarah Xu & Kanika Gera | Adobe I/O - Why You Need it to Execute o...
Evolve 19 | Sarah Xu & Kanika Gera | Adobe I/O - Why You Need it to Execute o...
 
Evolve 19 | Upen Manickam & Amanda Gray | Adventures in SPA with AEM 6.5
Evolve 19 | Upen Manickam & Amanda Gray | Adventures in SPA with AEM 6.5Evolve 19 | Upen Manickam & Amanda Gray | Adventures in SPA with AEM 6.5
Evolve 19 | Upen Manickam & Amanda Gray | Adventures in SPA with AEM 6.5
 
Evolve 19 | Ameeth Palla | Adobe Asset Link - Use Cases and Pitfalls to Avoid
Evolve 19 | Ameeth Palla | Adobe Asset Link - Use Cases and Pitfalls to AvoidEvolve 19 | Ameeth Palla | Adobe Asset Link - Use Cases and Pitfalls to Avoid
Evolve 19 | Ameeth Palla | Adobe Asset Link - Use Cases and Pitfalls to Avoid
 
Evolve 19 | Giancarlo Berner | JECIS 2 - The Beginning of a New Era in Buildi...
Evolve 19 | Giancarlo Berner | JECIS 2 - The Beginning of a New Era in Buildi...Evolve 19 | Giancarlo Berner | JECIS 2 - The Beginning of a New Era in Buildi...
Evolve 19 | Giancarlo Berner | JECIS 2 - The Beginning of a New Era in Buildi...
 
Evolve 19 | Paul Legan & Kristin Jones | Anatomy of a Solid AEM Implementatio...
Evolve 19 | Paul Legan & Kristin Jones | Anatomy of a Solid AEM Implementatio...Evolve 19 | Paul Legan & Kristin Jones | Anatomy of a Solid AEM Implementatio...
Evolve 19 | Paul Legan & Kristin Jones | Anatomy of a Solid AEM Implementatio...
 
Evolve 19 | Rabiah Coon & Rebecca Blaha | Rockstar Kickoffs for AEM Projects
Evolve 19 | Rabiah Coon & Rebecca Blaha | Rockstar Kickoffs for AEM ProjectsEvolve 19 | Rabiah Coon & Rebecca Blaha | Rockstar Kickoffs for AEM Projects
Evolve 19 | Rabiah Coon & Rebecca Blaha | Rockstar Kickoffs for AEM Projects
 
Evolve19 | Nick Panagopoulos | World Focus: Translation Tips and Trends
Evolve19 | Nick Panagopoulos | World Focus: Translation Tips and TrendsEvolve19 | Nick Panagopoulos | World Focus: Translation Tips and Trends
Evolve19 | Nick Panagopoulos | World Focus: Translation Tips and Trends
 
Evolve 19 | Rabiah Coon, Sabrina Schmidt & Noah Linge | Industry Focus | Furn...
Evolve 19 | Rabiah Coon, Sabrina Schmidt & Noah Linge | Industry Focus | Furn...Evolve 19 | Rabiah Coon, Sabrina Schmidt & Noah Linge | Industry Focus | Furn...
Evolve 19 | Rabiah Coon, Sabrina Schmidt & Noah Linge | Industry Focus | Furn...
 
Evolve 19 | Carl Madaffari | Best Practices | From Customer Data to Customer ...
Evolve 19 | Carl Madaffari | Best Practices | From Customer Data to Customer ...Evolve 19 | Carl Madaffari | Best Practices | From Customer Data to Customer ...
Evolve 19 | Carl Madaffari | Best Practices | From Customer Data to Customer ...
 
Evolve 19 | Kevin Campton & Sharat Radhakrishnan | Industry Focus | Autodesk ...
Evolve 19 | Kevin Campton & Sharat Radhakrishnan | Industry Focus | Autodesk ...Evolve 19 | Kevin Campton & Sharat Radhakrishnan | Industry Focus | Autodesk ...
Evolve 19 | Kevin Campton & Sharat Radhakrishnan | Industry Focus | Autodesk ...
 
Evolve 19 | Gina Petruccelli | Let’s Dig Into Requirements
Evolve 19 | Gina Petruccelli | Let’s Dig Into RequirementsEvolve 19 | Gina Petruccelli | Let’s Dig Into Requirements
Evolve 19 | Gina Petruccelli | Let’s Dig Into Requirements
 
Evolve 19 | Dave Fox | Retaining Niche Talent in a Highly Competitive Environ...
Evolve 19 | Dave Fox | Retaining Niche Talent in a Highly Competitive Environ...Evolve 19 | Dave Fox | Retaining Niche Talent in a Highly Competitive Environ...
Evolve 19 | Dave Fox | Retaining Niche Talent in a Highly Competitive Environ...
 
Evolve 19 | Paul Legan | Going Beyond Metadata: Extracting Meaningful Informa...
Evolve 19 | Paul Legan | Going Beyond Metadata: Extracting Meaningful Informa...Evolve 19 | Paul Legan | Going Beyond Metadata: Extracting Meaningful Informa...
Evolve 19 | Paul Legan | Going Beyond Metadata: Extracting Meaningful Informa...
 
Evolve19 | Giancarlo Berner & Brett Butterfield | AI & Adobe Sensei
Evolve19 | Giancarlo Berner & Brett Butterfield | AI & Adobe SenseiEvolve19 | Giancarlo Berner & Brett Butterfield | AI & Adobe Sensei
Evolve19 | Giancarlo Berner & Brett Butterfield | AI & Adobe Sensei
 
Evolve 19 | Gordon Pike | Prepping for Tomorrow - Creating a Flexible AEM Arc...
Evolve 19 | Gordon Pike | Prepping for Tomorrow - Creating a Flexible AEM Arc...Evolve 19 | Gordon Pike | Prepping for Tomorrow - Creating a Flexible AEM Arc...
Evolve 19 | Gordon Pike | Prepping for Tomorrow - Creating a Flexible AEM Arc...
 
Evolve 19 | Jayan Kandathil | Running AEM Workloads on Microsoft Azure
Evolve 19 | Jayan Kandathil | Running AEM Workloads on Microsoft AzureEvolve 19 | Jayan Kandathil | Running AEM Workloads on Microsoft Azure
Evolve 19 | Jayan Kandathil | Running AEM Workloads on Microsoft Azure
 
Evolve 19 | Amol Anand & Daniel Gordon | Author in AEM Once - Deliver Everywhere
Evolve 19 | Amol Anand & Daniel Gordon | Author in AEM Once - Deliver EverywhereEvolve 19 | Amol Anand & Daniel Gordon | Author in AEM Once - Deliver Everywhere
Evolve 19 | Amol Anand & Daniel Gordon | Author in AEM Once - Deliver Everywhere
 
Evolve 19 | Benjie Wheeler | Intro to Adobe Experience Manager 6.5
Evolve 19 | Benjie Wheeler | Intro to Adobe Experience Manager 6.5Evolve 19 | Benjie Wheeler | Intro to Adobe Experience Manager 6.5
Evolve 19 | Benjie Wheeler | Intro to Adobe Experience Manager 6.5
 
Evolve 19 | Bruce Swann | Adobe Campaign - Capabilities, Roadmap, and Fit wit...
Evolve 19 | Bruce Swann | Adobe Campaign - Capabilities, Roadmap, and Fit wit...Evolve 19 | Bruce Swann | Adobe Campaign - Capabilities, Roadmap, and Fit wit...
Evolve 19 | Bruce Swann | Adobe Campaign - Capabilities, Roadmap, and Fit wit...
 
Evolve 19 | Pete Hoback & Francisco Fagalde | AEM QA, UAT, & Go Live
Evolve 19 | Pete Hoback & Francisco Fagalde | AEM QA, UAT, & Go LiveEvolve 19 | Pete Hoback & Francisco Fagalde | AEM QA, UAT, & Go Live
Evolve 19 | Pete Hoback & Francisco Fagalde | AEM QA, UAT, & Go Live
 

Kürzlich hochgeladen

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 

Kürzlich hochgeladen (20)

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 

EVOLVE'13 | Enhance | Effective SEO | Paul Legan

  • 1. 1 EFFECTIVE SEO IN ADOBE WEM Best Practices and Implementation Strategies
  • 2. 2 INTRODUCTION Who am I? Paul Legan Managing Partner at 3|SHARE Corporation • Background in Economics and Computer Science • Past work experience in marketing and IT • Strong interest in user experience and responsive design • Currently reside in Washington, D.C.
  • 3. 3 INTRODUCTION Let’s pick a number… 110,585 Number of Google searches I have performed since 2007. (In case you are wondering, that is just over 50/day.)
  • 4. 4 INTRODUCTION So what? How do I know that? Google told me.
  • 5. 5 INTRODUCTION So what? Why is that important? We rely heavily on search. 🐦 🍜 (and we are increasingly impatient!)
  • 7. 7 INTRODUCTION Google is a user, too With each Google algorithm update, we see more focus placed on user experience than on strict keyword analysis.
  • 8. 8 INTRODUCTION It really is good This is good for us both as developers and consumers. 👍
  • 9. 9 INTRODUCTION There’s a lot to search Now content needs render quickly, be relevant, engage the reader and follow a structure. Less room to fool search engines by focusing just on keywords.
  • 10. 10 INTRODUCTION So we need great content While Adobe WEM won’t write your copy for you, it will make it easier than ever to create meaningful and engaging content.
  • 11. 11 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA What’s the plan?
  • 12. 12 We WILL: • Cover on-page optimization techniques. • Discuss out-of-the-box component functionality. • Investigate custom tools for content authors. We WILL NOT: • Go over link-building strategies (directly). • Cover social media integration. • Discuss content marketing strategies. AGENDA Setting Expectations
  • 13. 13 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA Currently
  • 14. 14 TITLES, DESCRIPTIONS, AND NAVIGATION Creating New Pages • Page names determine the end URL, so give them significant attention. • Tips: • Use relevant keywords! • Use hyphens to separate those keywords • Consider page hierarchy so as not to duplicate important keywords
  • 15. 15 TITLES, DESCRIPTIONS, AND NAVIGATION De-clutter Page Properties • By default, the Page Properties dialog includes a lot of fields. • As a developer, we have two options: • Add field descriptions for content authors • Remove fields that are unnecessary to the application • There is no benefit to presenting content authors with too many options.
  • 16. 16 • OOTB CQ page component includes a “headlibs.jsp” – probably looks something like this: • A lot of the default META tags are not necessary and should probably be removed from the base content page component. TITLES, DESCRIPTIONS, AND NAVIGATION Use Your <HEAD> if(!properties.get("cq:lastModifiedBy", "").equals("")) { %><meta name="author" content="<%= StringEscapeUtils.escapeHtml4(properties.get("cq:lastModifiedBy", "")) %>"<%=xs%>><% } if(!properties.get("jcr:title", "").equals("")) { %><meta name="title" content="<%= StringEscapeUtils.escapeHtml4(properties.get("jcr:title", "")) %>"<%=xs%>><% }
  • 17. 17 • Here are some key properties to consider for your <HEAD> section: • Set the character set (Charset Attribute) • Description • Canonical URL for Dynamic Pages (hopefully you don’t have query strings) • Google “notranslate” – disable links to translations via Google results • Robots “noindex” – useful for page-level exclusion from indexing TITLES, DESCRIPTIONS, AND NAVIGATION Use Your <HEAD>
  • 18. 18 Navigation is important, but so is a search box – provide proper search for users who prefer it to deep navigation menus TITLES, DESCRIPTIONS, AND NAVIGATION Navigation is Not Just for Google 75% of Internet users are search-dominant (vs. link-dominant).
  • 19. 19 Always remind the user of where they are within the site. Why? They will likely forget. TITLES, DESCRIPTIONS, AND NAVIGATION Navigation is Not Just for Google
  • 20. 20 • Ensure navigation works without JavaScript • Use text/CSS, not images for navigation links • Shallow navigation reduces bounce rates and page load times, both suspected to improve search engine rankings TITLES, DESCRIPTIONS, AND NAVIGATION Navigation is Not Just for Google
  • 21. 21 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA Currently
  • 22. 22 CONTENT STRUCTURE Structure Your Content with Intent • Semantic code is – and always will be – a relevant part of SEO! • Remember, it is called a document tree for a reason. <body> <h1>…</h1> <article> <h2>…</h2> </article> <aside> <h2>…</h2> <section> <!-- or article --> <h3>…</h3> </section> </aside> <footer></footer> </body>
  • 23. 23 CONTENT STRUCTURE Body Classes as a Preventative Measure • Many structural shortcuts are taken to accommodate multiple layouts – why not avoid this situation from the start? <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>WEM is cool!</title> </head> <body class="<%=currentPage.getName()%>"> </body> </html>
  • 24. 24 CONTENT STRUCTURE Remove Superfluous HTML • CQ components generate mounds of additional HTML that may or may not be necessary. To remove, you can use the property cq:noDeclaration=true <%@ include file="/libs/foundation/global.jsp" %> <%@ page contentType="text/html; charset=utf-8" import="com.day.cq.wcm.api.WCMMode" %> <% String classNames = componentContext.getCssClassNames(); if (WCMMode.fromRequest(request) == WCMMode.DISABLED) classNames = classNames.replaceAll("[a-zA-Z0-9_-]+ ?", "prefix-$0"); %> <div class="<%= classNames %>"> <%-- Component Content Goes Here --%> </div>
  • 25. 25 CONTENT STRUCTURE Enable Only Components That are Necessary • If possible, make the one and only H1 header tag part of the page template • Some places to check: • RTE Editor Formatting Dropdown • Title Component
  • 26. 26 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA Currently
  • 27. 27 INCORPORATING ASSETS FROM THE DAM DAM Metadata and Filenames • Three important factors to consider: • File size • Use a non-destructive image optimizer such as ImageOptim to reduce the size of your images and improve page load time • Filename • Keywords in filenames are important for image search as well as site credibility; image search is a surprisingly important traffic source for retail products • ALT text • This is the text that search engines use to understand images, so be wise with your ALT text content.
  • 28. 28 INCORPORATING ASSETS FROM THE DAM OOTB Image Component • Yes, the ALT text is important, but the Description/Caption is also critical! • Again, bounce rates play a part in determining website importance, so a caption is pivotal • Many clients choose to develop a custom Image component, so be sure to include a caption field or a similar solution
  • 29. 29 INCORPORATING ASSETS FROM THE DAM VIDEO Tag, Transcripts, and Accessibility • HTML5 defines both VIDEO and TRACK tags for use when embedding videos • The TRACK tag can include a reference to a servlet (or selector handler) that pulls track captions from a metadata field on the asset <video width="320" height="240"> <source type="video/mp4" src=”paul.mp4" > <track src=” paul.TTV.mp4" label="English Captions" kind="captions”> </video> String assetPath = request.getParameter("asset"); if ( (assetPath != null) && (resourceResolver.adaptTo(Session.class).nodeExists(assetPath)) ) { Asset asset = resourceResolver.getResource(assetPath).adaptTo(Asset.class); String caption = asset.getMetadataValue("dc:trackCaptions"); return caption; }
  • 30. 30 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA Currently
  • 31. 31 MICROFORMATS AND AUTHORSHIP Google Rich Snippets • If Google understands the content on a page, it will create a rich snippet to help users with specific queries • Google supports rich snippets for: • Reviews • People & Products • Businesses • Recipes • Events • Music http://www.google.com/webmasters/tools/richsnippets
  • 32. 32 MICROFORMATS AND AUTHORSHIP Google Rich Snippets • Full Event example (via Schema.org): <div itemscope itemtype="http://schema.org/Event"> <a itemprop="url" href="nba-miami-philidelphia-game3.html"> NBA Eastern Conference First Round Playoff Tickets: <span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span></a> <meta itemprop="startDate" content="2016-04-21T20:00"> Thu, 04/21/16 8:00 p.m. <div itemprop="location" itemscope itemtype="http://schema.org/Place"> <a itemprop="url" href="wells-fargo-center.html”>Wells Fargo Center</a> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="addressLocality">Philadelphia</span>, <span itemprop="addressRegion">PA</span> </div> </div> </div>
  • 33. 33 MICROFORMATS AND AUTHORSHIP Social Application Metadata <!-- Windows 8 --> <meta name="application-name" content="" /> <meta name="msapplication-TileColor" content="" /> <meta name="msapplication-TileImage" content="" /> <!-- Twitter --> <meta name="twitter:card" content=""> <meta name="twitter:site" content=""> <meta name="twitter:title" content=""> <meta name="twitter:description" content=""> <meta name="twitter:url" content=""> <!-- Facebook --> <meta property="og:title" content="" /> <meta property="og:description" content="" /> <meta property="og:url" content="" /> <meta property="og:image" content="" />
  • 34. 34 MICROFORMATS AND AUTHORSHIP Why Google Authorship Matters • Google Authorship lets you connect content with your Google+ profile • Utilizes the rel=“author” attribute on links to content • Authors can build a following and establish themselves as subject matter experts • Remember, bounce rates are important!
  • 35. 35 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA Currently
  • 36. 36 DON’T FORGET THE WEB SERVER Sitemap Generation and Robots • Sitemap.xml and Robots.txt files should be generated automatically by CQ • One method is to utilize tags within the Page Properties field to determine which pages get added to robots.txt for exclusion • Be sure to remove the /content structure if you are rewriting URLs to avoid duplicate content penalties // get the QueryBuilder QueryBuilder queryBuilder = getQueryBuilder(); // do a simple predicate search Map map = new HashMap(); map.put("path", "/content/client"); map.put("p.limit", "10000"); map.put("type", "cq:Page"); map.put("tagid", ”client:nosearch"); map.put("tagid.property", "@jcr:content/cq:tags"); // run the query Query query = createQuery(map); […] // ultimately output to the robots.txt file <%="Disallow: " + pagePath + ".html"%>
  • 37. 37 DON’T FORGET THE WEB SERVER Compression, Content Expiration and Page Speed • Google’s search-ranking algorithm considers page speed as a signal • Use mod_expires in Apache to adjust content expiration: • Enable GZIP Compression: <IfModule mod_expires.c> <FilesMatch ".(jpe?g|png|gif|js|css)$"> ExpiresActive On ExpiresDefault "access plus 1 week" </FilesMatch> </IfModule> # Compress certain file types by extension: <files *.html> SetOutputFilter DEFLATE </files>
  • 38. 38 DON’T FORGET THE WEB SERVER Custom Error Pages • Many people overlook the opportunities presented by an error page • An error page can allow users to discover newer, more relevant content • Worst case users will appreciate a personalized error message In the repository, copy the scripts at /libs/sling/servlet/errorhandler/ to /apps/sling/servlet/errorhandler/. This path will likely not exist. Within /apps/sling/servlet/errorhandler, you can: 1. Use the existing script. 2. Create and edit a new script.
  • 39. 39 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA Currently
  • 40. 40 EMPOWERING AUTHORS WITH CUSTOM TOOLS Integrating Third-Party Services - Simple • The CQ Sidekick can be extended via JavaScript in a client library. CQ.Ext.namespace("seo", "seo.tools"); // Custom Action for the button seo.tools.KincaidAction = { "text": "Check Flesch–Kincaid Score", "context": CQ.wcm.Sidekick.PAGE, "handler": function() { window.open("http://www.readability-score.com/"); } }; // add this action to the default list CQ.wcm.Sidekick.DEFAULT_ACTIONS.push(seo.tools.KincaidActi on);
  • 41. 41 EMPOWERING AUTHORS WITH CUSTOM TOOLS Integrating Third-Party Services - Complex • There’s nothing stopping you from going further and integrating third-party services into the Sidekick (except maybe a budget or two!) CQ.wcm.Sidekick.CONTEXTS = [ CQ.wcm.Sidekick.PAGE, CQ.wcm.Sidekick.COMPONENTS, CQ.wcm.Sidekick.WORKFLOW, CQ.wcm.Sidekick.VERSIONING, CQ.wcm.Sidekick.INFO, CQ.wcm.Sidekick.MY_CUSTOM_CONTEXT ];
  • 42. 42 • Titles, Descriptions, and Navigation • Content Structure • Incorporating Assets from the DAM • Microformats and Authorship • Don’t Forget the Web Server • Empowering Content Authors with Custom Tools • Beyond SEO: The User Experience AGENDA Currently
  • 43. 43 BEYOND SEO: THE USER EXPERIENCE Think Logically 1. Think about everything that frustrates you as a software user. 2. Don’t assume anything. 3. Guide, but do not restrict the content author. 4. Enable the creation of great documentation. 5. Always simplify. * Via ExpoImages

Hinweis der Redaktion

  1. Mixed opinions on this from a privacy stand point (what do companies such as Google actually know about me?) However, we can all probably agree on one thing.
  2. I look at myself at an example, although it probably doesn't paint me in a good light. I've noticed that in the past 2-3 years, I've been less and less able to sit down and watch a full movie unless I go to the theater. I usually have an iPad or a laptop at my side to look up information about what I'm watching or to informally catch up on work.
  3. Released in February 2011 Aimed to weed out “lower quality” websites from its rankings
  4. Talk about component inheritance for page components Talk about possibly renaming the include to something related to META
  5. Talk about component inheritance for page components Talk about possibly renaming the include to something related to META
  6. Content is required, but remember that user experience is critical to solid search engine rankings.
  7. Since both Matt Cutts and Bing’s Duane Forrester have suggested that bounce rate is used to calculate search engine rankings, most SEO strategists hypothesize the use of a separate “actual” bounce rate that factors in things like dwell time (the time spent on a bounced site) and type of content to get a better picture of what a site’s bounce rate means. According to Glenn Gabe, writing for Search Engine Journal: “There are several other ways that the engines can determine if a piece of content has a high bounce rate (actual bounce rate). Using these methods, the engines can build a more rounded view of your content with regard to actual engagement.”
  8. In general: If the header only contains a heading, you could omit it. If the main content of the page could stand on its own (e.g. like a blog post or similar), then you could use article instead of section. As the #featured-content is some kind of abstract/summary of the main content, it should be part of the article. It makes sense to include it in the header:
  9. WebVTT vs. TTML (Captions formats)
  10. Schema.org - http://www.schema.org/docs/gs.html#microdata_how
  11. Schema.org - http://www.schema.org/docs/gs.html#microdata_how
  12. Schema.org - http://www.schema.org/docs/gs.html#microdata_how
  13. Three Steps: 1)
  14. Robots.txt based on a tag – automatically added to the robots.txt file Make sure that the /content tree is in the robots.txt file (since after the Apache rewrites, this still is a valid path)
  15. YSlow - http://developer.yahoo.com/yslow/ Google Page Speed - https://developers.google.com/speed/pagespeed/ The slower your site, the fewer pages Googlebot tends to crawl.
  16. There are many great examples around the Internet. Integrate your brand into EVERY page of your site, including the pages you’d prefer your users not to see.
  17. http://www.google.com/webmasters/tools/richsnippets
  18. http://www.google.com/webmasters/tools/richsnippets
  19. http://www.google.com/webmasters/tools/richsnippets
  20. http://www.google.com/webmasters/tools/richsnippets