SlideShare a Scribd company logo
+
Disclaimer:
This is my first speaking/presenting
gig. I’m pretty sure I’m going to do
fine, but if I talk really fast and
there’s a lot of time left then we’ll
talk amongst ourselves.
Luckily, if I talk too slowly & run out
of time, the slides are set up to be
totally self-explanatory. So you can
peruse them later.
+
So let’s talk about Drupal.
It’s a thing, and it does stuff.
+
But first, let’s talk about me for a
second
 My name is Sarah Shealy
 I’m the Front End Web Developer at
Richland Library here in Columbia,
SC
 www.richlandlibrary.com
 I have a background in Art History
and Library Science
 These are my cats.
 All Drupal presentations
should have at least one cat
picture – I learned this at my
first DrupalCamp and now I
pass it on to you.
+
My Drupal Story & the seed of this
presentation
 0 web development skills (ZERO- I barely knew what HTML
and CSS were)
 Only volunteered with the team because I wanted a librarian
job at Richland Library & it would look good
 Really frustrated that as I got into Drupal, people would talk
way over my head when I just wanted the basics.
 I remember wishing that this presentation existed when I went
to my first DrupalCamp. So if it’s too simplistic or doesn’t cover
enough higher level stuff, I’m sorry.
+
You can find me in random places
online
 I really only use Twitter,
Instagram, & Pinterest
 @Sarah_Shealy (Twit)
 SarahHShealy (Insta)
 Shealysh (Pint)
 Sarahsassandsurcees.com
 This is my real-life, personal
blog. Not tech, and updated
about once a week. Don’t go
here for advice, go here to
waste some time.
 But somehow I have 3 email
addresses:
 Sarah.Shealy@gmail.com
 Sarah.Shealy@outlook.com
 Sshealy@richlandlibrary.com
 Shealysh.me
 Literally nothing there at the
moment except working
social media links, but will be
up and running in the next
few weeks. It will be fabulous.
+
Now, let’s talk about you for a
second
 For a lot of you, this is going to be a “duh” sort of presentation,
but I’m really speaking to the person who sort of stumbled onto
Drupal and knows what it does but doesn’t know things like
“node” or “content type”. Those are my people.
 If this is not you, feel free to doodle, answer email, take a nap
(but please not if you snore), and generally keep yourself
entertained.
+
So Drupal is a thing, right?
 Open Source
 Basically, you can use Drupal for free.
 There isn’t an enterprise behind Drupal – even though people are
paid to develop for Drupal, there isn’t a conglomerate dictating that
development.
 Community Based
 Drupal is all about community.
 Even if Bob develops a module that his site uses, he’ll probably
contribute that module back to the community.
 I’ve never had a problem reaching out to a Drupal person for help –
if they can’t help me, they’ll refer me to someone who can.
+
Function vs. Beauty
 Function
 More important than beauty
 Honestly.
 As long as it works for you,
keep it simple.
 Remember that you can
always add beauty based
skills as you master
functional ones
 You can also change how
things function as you learn –
you don’t have to be perfect
right away
 Beauty
 Totally important
 But not the end all be all
 If someone says “Your site is
gorgeous, but I have no idea
what I’m supposed to
do/what you’re selling/what
you do” you should rethink
your strategy.
 Shiny things are fun, but
concrete will keep your house
standing.
+
A few terms you should have a
handle on
 Node - A single piece of content on your site. Every node also
belongs to a particular content type.
 Content Type – A content type basically tells Drupal how to render
your content. It defines the fields used, the layout created, and the
input form the creator uses.
 Page - One of the two basic content types that are packaged with
Drupal core. Generally, pages are used for static content that is to
be linked into the main navigation bar. Not all nodes are pages,
but all pages are nodes.
 Article – The other content type that comes with Core. Usually
used for content that changes or isn’t permanent. Like blog posts
or marketing releases.
+
Yay terms!
 Theme – Basically the files that define how your site looks. A
theme can override all the looks of modules, etc. They can be
as simple as defining colors or can be drastically customized to
control every element of the design. Themes regulate what
goes where.
 Region - Areas of a node where content can be placed.
Sidebars, headers, footers, etc are all placed in regions.
 Term – This is basically the Drupal term for keyword. You
attach keywords to content in order to link content with other
content.
 Vocabulary – A collection of terms.
+
Last slide o’ terms
 Core - The files and modules included with the basic Drupal
install.
 Clean URL - A URL that does not contain code. Drupal puts
snippets of code in URLs, and clean ones remove that code.
Makes them much easier to remember.
 Ninja/guru/rock star/super hero/etc – ridiculous ways to say
you’re good at your job.
 Druplicon - The Drupal mascot. It’s basically a raindrop with a
face on it.
+
Modules: a disclaimer
Please, for the love of all things, do not go back to work and insist
everyone on the team uses all of the modules that I’m about to go
over. Unless you are the whole team, in which case go for it.
If you see something that may solve a problem better than you’re
currently solving it, suggest the team looks into it.
Don’t be that guy (or girl).
+
Views!
*everyone’s 1st recommendation*
 You need Views if
 You like the default front page view, but you find you want to sort it
differently.
 You like the default taxonomy/term view, but you find you want to
sort it differently; for example, alphabetically.
 You want a way to display a block with the 5 most recent posts of
some particular type.
 Views basically gives you an alternative way to display content,
and restrict that display to specific content types or taxonomy
terms. It’s even possible to restrict to a certain user’s content.
Steep learning curve, though.
**This is from the Views module page with some modification**
+
Panels!
 Lets you create customized layouts for your site.
 It’s a drag and drop content manager that lets you design your
layout and place content in it. It’s a way to control the layout
without using theme files.
 Learning curve is pretty steep. Much like views.
 While Panels integrates with Views, people are generally in
either the Views camp or the Panels camp. But there are plenty
of sites that use both.
**Basic ideas came from the Panels module page – much modified**
+
Pathauto!
 The Pathauto module automatically creates URLs and path
aliases for content without the user having to make one up
themselves. This keeps the sites’ URLs consistent.
 You can specify how each content type is given an alias. For
example all events on your site can be given a pattern with
“events” so each event is mysite.com/events/event-title
** Pathauto is a pretty excellent module, and you should check it
out.**
+
Git
 Git is a version control system
 Github keeps your code on the interwebs, you copy that code
base onto your computer, and then you can muck about in the
copy while not injuring your current production-level code.
 There are TONS of tutorials out there, and the best place to start is
GitHub
 But there are a lot of Git users out there and they have really
excellent advice about how to use Git in the best way.
 Try not to wing it when using Git, you can break some stuff.
Like your corner of the internet.
+
Drush
 An awesome program for managing Drupal from the command line.
It allows a site admin to do things by typing in a few commands
instead of clicking through multiple steps to accomplish the same
goal.
 My favorite commands:
 Drush en | Drush dis
 Enables and disables modules
 Drush cc all
 This clears the cache of all the styles and applies new ones that
I’ve created.
+
Where to get help
 Google. It’s legit, you guys. Got a weird error message?
Google.
 Drupal.org is always a good place to go – the search is
unwieldy, though.
 Stack Exchange
 Stack Overflow
 But really, Google will get you blog posts from people who have
had your exact problem as well as every other site’s answers.
+
Awesome Places for Training (free)
 YouTube
 Just search for whatever you need help with.
 There are videos of presentations, tutorials, etc.
 Google.
 There are several million tutorials out there that really want to help
you out.
 DrupalCamp 24x7
+
Awesome Places for Training ($)
 Udemy has a course for an Intro to Drupal.
 Drupal.org has a listing of a bunch of places that provide
training.
 I can vouch for
 Acquia
 Build a Module
 Isovera
 Lullabot (drupalize.me)
 Lynda
Ad

More Related Content

What's hot (20)

SW Drupal Summit - Upgrading 6 to 7
SW Drupal Summit - Upgrading 6 to 7SW Drupal Summit - Upgrading 6 to 7
SW Drupal Summit - Upgrading 6 to 7
Amye Scavarda
 
Question 4
Question 4Question 4
Question 4
therealdrcrazy
 
How to Build an Unsuccessful Start-Up
How to Build an Unsuccessful Start-UpHow to Build an Unsuccessful Start-Up
How to Build an Unsuccessful Start-Up
Hugh McGuire
 
Ccc sum inst11_googlification1 f
Ccc sum inst11_googlification1 fCcc sum inst11_googlification1 f
Ccc sum inst11_googlification1 f
katherine watson
 
More Than Facebook
More Than FacebookMore Than Facebook
More Than Facebook
NewLegacyChick
 
Drupal Aware Design: Good Techniques for Better Themes
Drupal Aware Design: Good Techniques for Better ThemesDrupal Aware Design: Good Techniques for Better Themes
Drupal Aware Design: Good Techniques for Better Themes
nyccamp
 
Use of ict
Use of ictUse of ict
Use of ict
imogenlaw12
 
E learn12 googlificationf
E learn12 googlificationfE learn12 googlificationf
E learn12 googlificationf
katherine watson
 
Never Use a USB Key Again: How to Manage your Files in the Cloud
Never Use a USB Key Again: How to Manage your Files in the CloudNever Use a USB Key Again: How to Manage your Files in the Cloud
Never Use a USB Key Again: How to Manage your Files in the Cloud
Rafael Scapin, Ph.D.
 
David's Top 10 Google Tips
David's Top 10 Google TipsDavid's Top 10 Google Tips
David's Top 10 Google Tips
dcarmichael79
 
What have you learnt about technologies from the process of constructing this...
What have you learnt about technologies from the process of constructing this...What have you learnt about technologies from the process of constructing this...
What have you learnt about technologies from the process of constructing this...
MarvellousAyy
 
A Year of Blogging
A Year of BloggingA Year of Blogging
A Year of Blogging
NewEnglishBlog
 
Word camp c bus 2016
Word camp c bus 2016Word camp c bus 2016
Word camp c bus 2016
Bobby Bryant
 
Optimizing your presence online km eb
Optimizing your presence online km ebOptimizing your presence online km eb
Optimizing your presence online km eb
Evelyn Neale
 
Open Ed 2018 - The Free, Open, Decentralized OER publishing platform
Open Ed 2018 - The Free, Open, Decentralized OER publishing platformOpen Ed 2018 - The Free, Open, Decentralized OER publishing platform
Open Ed 2018 - The Free, Open, Decentralized OER publishing platform
btopro
 
RSCON 3 Slideshow: Teaching in a messy classroom
RSCON 3 Slideshow:  Teaching in a messy classroomRSCON 3 Slideshow:  Teaching in a messy classroom
RSCON 3 Slideshow: Teaching in a messy classroom
tblanchet
 
C++ notes 2 tutorials duniya
C++ notes 2   tutorials duniyaC++ notes 2   tutorials duniya
C++ notes 2 tutorials duniya
TutorialsDuniya.com
 
C++ notes tutorials duniya
C++ notes   tutorials duniyaC++ notes   tutorials duniya
C++ notes tutorials duniya
TutorialsDuniya.com
 
Email ettiquette
Email ettiquetteEmail ettiquette
Email ettiquette
St John
 
ALL YOUR BASE (THEMES) ARE BELONG TO US
ALL YOUR BASE (THEMES) ARE BELONG TO USALL YOUR BASE (THEMES) ARE BELONG TO US
ALL YOUR BASE (THEMES) ARE BELONG TO US
nyccamp
 
SW Drupal Summit - Upgrading 6 to 7
SW Drupal Summit - Upgrading 6 to 7SW Drupal Summit - Upgrading 6 to 7
SW Drupal Summit - Upgrading 6 to 7
Amye Scavarda
 
How to Build an Unsuccessful Start-Up
How to Build an Unsuccessful Start-UpHow to Build an Unsuccessful Start-Up
How to Build an Unsuccessful Start-Up
Hugh McGuire
 
Ccc sum inst11_googlification1 f
Ccc sum inst11_googlification1 fCcc sum inst11_googlification1 f
Ccc sum inst11_googlification1 f
katherine watson
 
Drupal Aware Design: Good Techniques for Better Themes
Drupal Aware Design: Good Techniques for Better ThemesDrupal Aware Design: Good Techniques for Better Themes
Drupal Aware Design: Good Techniques for Better Themes
nyccamp
 
Never Use a USB Key Again: How to Manage your Files in the Cloud
Never Use a USB Key Again: How to Manage your Files in the CloudNever Use a USB Key Again: How to Manage your Files in the Cloud
Never Use a USB Key Again: How to Manage your Files in the Cloud
Rafael Scapin, Ph.D.
 
David's Top 10 Google Tips
David's Top 10 Google TipsDavid's Top 10 Google Tips
David's Top 10 Google Tips
dcarmichael79
 
What have you learnt about technologies from the process of constructing this...
What have you learnt about technologies from the process of constructing this...What have you learnt about technologies from the process of constructing this...
What have you learnt about technologies from the process of constructing this...
MarvellousAyy
 
Word camp c bus 2016
Word camp c bus 2016Word camp c bus 2016
Word camp c bus 2016
Bobby Bryant
 
Optimizing your presence online km eb
Optimizing your presence online km ebOptimizing your presence online km eb
Optimizing your presence online km eb
Evelyn Neale
 
Open Ed 2018 - The Free, Open, Decentralized OER publishing platform
Open Ed 2018 - The Free, Open, Decentralized OER publishing platformOpen Ed 2018 - The Free, Open, Decentralized OER publishing platform
Open Ed 2018 - The Free, Open, Decentralized OER publishing platform
btopro
 
RSCON 3 Slideshow: Teaching in a messy classroom
RSCON 3 Slideshow:  Teaching in a messy classroomRSCON 3 Slideshow:  Teaching in a messy classroom
RSCON 3 Slideshow: Teaching in a messy classroom
tblanchet
 
Email ettiquette
Email ettiquetteEmail ettiquette
Email ettiquette
St John
 
ALL YOUR BASE (THEMES) ARE BELONG TO US
ALL YOUR BASE (THEMES) ARE BELONG TO USALL YOUR BASE (THEMES) ARE BELONG TO US
ALL YOUR BASE (THEMES) ARE BELONG TO US
nyccamp
 

Viewers also liked (11)

Guardería "LOS PATITOS"
Guardería "LOS PATITOS"Guardería "LOS PATITOS"
Guardería "LOS PATITOS"
AlbaDelPozo
 
Creative Investment Concepts LLC Presents:
Creative Investment Concepts LLC Presents: Creative Investment Concepts LLC Presents:
Creative Investment Concepts LLC Presents:
Creative Investment Concepts LLC
 
Creative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC Presents: Must Have Real Estate AppsCreative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC
 
Maletacd Cyclic Distillation
Maletacd Cyclic DistillationMaletacd Cyclic Distillation
Maletacd Cyclic Distillation
Dr. Volodymyr
 
Sync Apps With Couchbase
Sync Apps With CouchbaseSync Apps With Couchbase
Sync Apps With Couchbase
Doru Chiulan
 
OER: Good News/Bad News
OER: Good News/Bad NewsOER: Good News/Bad News
OER: Good News/Bad News
edcc-polsci
 
Paid, owned and earned slideshare
Paid, owned and earned   slidesharePaid, owned and earned   slideshare
Paid, owned and earned slideshare
Gem Griff
 
Tray Dividing Wall Columns
Tray Dividing Wall ColumnsTray Dividing Wall Columns
Tray Dividing Wall Columns
Dr. Volodymyr
 
DrupalCon Amsterdam Closing Session
DrupalCon Amsterdam Closing SessionDrupalCon Amsterdam Closing Session
DrupalCon Amsterdam Closing Session
DrupalAssociation
 
Drupal 8 - A Brief Introduction
Drupal 8 - A Brief IntroductionDrupal 8 - A Brief Introduction
Drupal 8 - A Brief Introduction
Jeff Geerling
 
Guardería "LOS PATITOS"
Guardería "LOS PATITOS"Guardería "LOS PATITOS"
Guardería "LOS PATITOS"
AlbaDelPozo
 
Creative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC Presents: Must Have Real Estate AppsCreative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC
 
Maletacd Cyclic Distillation
Maletacd Cyclic DistillationMaletacd Cyclic Distillation
Maletacd Cyclic Distillation
Dr. Volodymyr
 
Sync Apps With Couchbase
Sync Apps With CouchbaseSync Apps With Couchbase
Sync Apps With Couchbase
Doru Chiulan
 
OER: Good News/Bad News
OER: Good News/Bad NewsOER: Good News/Bad News
OER: Good News/Bad News
edcc-polsci
 
Paid, owned and earned slideshare
Paid, owned and earned   slidesharePaid, owned and earned   slideshare
Paid, owned and earned slideshare
Gem Griff
 
Tray Dividing Wall Columns
Tray Dividing Wall ColumnsTray Dividing Wall Columns
Tray Dividing Wall Columns
Dr. Volodymyr
 
DrupalCon Amsterdam Closing Session
DrupalCon Amsterdam Closing SessionDrupalCon Amsterdam Closing Session
DrupalCon Amsterdam Closing Session
DrupalAssociation
 
Drupal 8 - A Brief Introduction
Drupal 8 - A Brief IntroductionDrupal 8 - A Brief Introduction
Drupal 8 - A Brief Introduction
Jeff Geerling
 
Ad

Similar to Intro to Drupal Slides - DrupalCampSC 2014 (20)

drupal theme developer in hyderabad
drupal theme developer in hyderabaddrupal theme developer in hyderabad
drupal theme developer in hyderabad
php2ranjan
 
Drupal introduction
Drupal introductionDrupal introduction
Drupal introduction
Jin Castor
 
Drupal - Introduction to Drupal and Web Content Management
Drupal - Introduction to Drupal and Web Content ManagementDrupal - Introduction to Drupal and Web Content Management
Drupal - Introduction to Drupal and Web Content Management
Vibrant Technologies & Computers
 
DrupalCon Austin - Absolute Beginner's Guide to Drupal
DrupalCon Austin - Absolute Beginner's Guide to DrupalDrupalCon Austin - Absolute Beginner's Guide to Drupal
DrupalCon Austin - Absolute Beginner's Guide to Drupal
Rod Martin
 
Montreal Girl Geeks: Intro to Drupal
Montreal Girl Geeks: Intro to DrupalMontreal Girl Geeks: Intro to Drupal
Montreal Girl Geeks: Intro to Drupal
Suzanne Dergacheva
 
Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012
mtlgirlgeeks
 
Intro to Drupal
Intro to DrupalIntro to Drupal
Intro to Drupal
mtlgirlgeeks
 
Drupal101
Drupal101Drupal101
Drupal101
Rachel Vacek
 
Absolute Beginners Guide to Drupal
Absolute Beginners Guide to DrupalAbsolute Beginners Guide to Drupal
Absolute Beginners Guide to Drupal
Rod Martin
 
Basic Introduction to Drupal
Basic Introduction to DrupalBasic Introduction to Drupal
Basic Introduction to Drupal
Murtaza Alvi
 
Drupal intro
Drupal introDrupal intro
Drupal intro
Antonio Perez
 
Drupal intro
Drupal introDrupal intro
Drupal intro
Geetanjali Srivastava
 
Drupal8 corporate training in Hyderabad
Drupal8 corporate training in HyderabadDrupal8 corporate training in Hyderabad
Drupal8 corporate training in Hyderabad
php2ranjan
 
Drupal Recipe
Drupal RecipeDrupal Recipe
Drupal Recipe
hernanibf
 
Fastest Way to DRUPAL
Fastest Way to DRUPALFastest Way to DRUPAL
Fastest Way to DRUPAL
Brahm
 
Drupal Skils Lab 302Labs
Drupal Skils Lab 302Labs Drupal Skils Lab 302Labs
Drupal Skils Lab 302Labs
Ahmad Mohamad Zain
 
Drupal intro-training-in-mumbai
Drupal intro-training-in-mumbaiDrupal intro-training-in-mumbai
Drupal intro-training-in-mumbai
vibrantuser
 
What is Drupal? And Why is it Useful? Webinar
What is Drupal? And Why is it Useful? WebinarWhat is Drupal? And Why is it Useful? Webinar
What is Drupal? And Why is it Useful? Webinar
Suzanne Dergacheva
 
72d5drupal
72d5drupal72d5drupal
72d5drupal
Mahesh Sherkar
 
Online Drupal Training Syllabus
Online Drupal Training SyllabusOnline Drupal Training Syllabus
Online Drupal Training Syllabus
vibrantuser
 
drupal theme developer in hyderabad
drupal theme developer in hyderabaddrupal theme developer in hyderabad
drupal theme developer in hyderabad
php2ranjan
 
Drupal introduction
Drupal introductionDrupal introduction
Drupal introduction
Jin Castor
 
Drupal - Introduction to Drupal and Web Content Management
Drupal - Introduction to Drupal and Web Content ManagementDrupal - Introduction to Drupal and Web Content Management
Drupal - Introduction to Drupal and Web Content Management
Vibrant Technologies & Computers
 
DrupalCon Austin - Absolute Beginner's Guide to Drupal
DrupalCon Austin - Absolute Beginner's Guide to DrupalDrupalCon Austin - Absolute Beginner's Guide to Drupal
DrupalCon Austin - Absolute Beginner's Guide to Drupal
Rod Martin
 
Montreal Girl Geeks: Intro to Drupal
Montreal Girl Geeks: Intro to DrupalMontreal Girl Geeks: Intro to Drupal
Montreal Girl Geeks: Intro to Drupal
Suzanne Dergacheva
 
Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012
mtlgirlgeeks
 
Absolute Beginners Guide to Drupal
Absolute Beginners Guide to DrupalAbsolute Beginners Guide to Drupal
Absolute Beginners Guide to Drupal
Rod Martin
 
Basic Introduction to Drupal
Basic Introduction to DrupalBasic Introduction to Drupal
Basic Introduction to Drupal
Murtaza Alvi
 
Drupal8 corporate training in Hyderabad
Drupal8 corporate training in HyderabadDrupal8 corporate training in Hyderabad
Drupal8 corporate training in Hyderabad
php2ranjan
 
Drupal Recipe
Drupal RecipeDrupal Recipe
Drupal Recipe
hernanibf
 
Fastest Way to DRUPAL
Fastest Way to DRUPALFastest Way to DRUPAL
Fastest Way to DRUPAL
Brahm
 
Drupal intro-training-in-mumbai
Drupal intro-training-in-mumbaiDrupal intro-training-in-mumbai
Drupal intro-training-in-mumbai
vibrantuser
 
What is Drupal? And Why is it Useful? Webinar
What is Drupal? And Why is it Useful? WebinarWhat is Drupal? And Why is it Useful? Webinar
What is Drupal? And Why is it Useful? Webinar
Suzanne Dergacheva
 
Online Drupal Training Syllabus
Online Drupal Training SyllabusOnline Drupal Training Syllabus
Online Drupal Training Syllabus
vibrantuser
 
Ad

Recently uploaded (20)

The AI Research Showdown: Perplexity vs Gemini
The AI Research Showdown: Perplexity vs GeminiThe AI Research Showdown: Perplexity vs Gemini
The AI Research Showdown: Perplexity vs Gemini
Abel Akara Ticha
 
35 Must-Have WordPress Plugins to Power Your Website in 2025
35 Must-Have WordPress Plugins to Power Your Website in 202535 Must-Have WordPress Plugins to Power Your Website in 2025
35 Must-Have WordPress Plugins to Power Your Website in 2025
steve198109
 
Java developer-friendly frontends: Build UIs without the JavaScript hassle- JCON
Java developer-friendly frontends: Build UIs without the JavaScript hassle- JCONJava developer-friendly frontends: Build UIs without the JavaScript hassle- JCON
Java developer-friendly frontends: Build UIs without the JavaScript hassle- JCON
Jago de Vreede
 
introduction to html and cssIntroHTML.ppt
introduction to html and cssIntroHTML.pptintroduction to html and cssIntroHTML.ppt
introduction to html and cssIntroHTML.ppt
SherifElGohary7
 
Paper: World Game (s) Great Redesign.pdf
Paper: World Game (s) Great Redesign.pdfPaper: World Game (s) Great Redesign.pdf
Paper: World Game (s) Great Redesign.pdf
Steven McGee
 
OS-deadlock detection and recovery with additional features.ppt
OS-deadlock detection and recovery with additional features.pptOS-deadlock detection and recovery with additional features.ppt
OS-deadlock detection and recovery with additional features.ppt
Mangala R
 
Prop-154: Resizing of IPv4 assignments for IXPs
Prop-154: Resizing of IPv4 assignments for IXPsProp-154: Resizing of IPv4 assignments for IXPs
Prop-154: Resizing of IPv4 assignments for IXPs
APNIC
 
Regional Development for an Open, Stable, and Secure Internet
Regional Development for an Open, Stable, and Secure InternetRegional Development for an Open, Stable, and Secure Internet
Regional Development for an Open, Stable, and Secure Internet
APNIC
 
plataforma virtual E learning y sus características.pdf
plataforma virtual E learning y sus características.pdfplataforma virtual E learning y sus características.pdf
plataforma virtual E learning y sus características.pdf
valdiviesovaleriamis
 
TAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIA
TAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIATAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIA
TAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIA
TAIPAN 99
 
an overview of information systems .ppt
an overview of  information systems .pptan overview of  information systems .ppt
an overview of information systems .ppt
DominicWaweru
 
hy 2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvs
hy  2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvshy  2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvs
hy 2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvs
saimahadeshdigikit
 
The Hidden Risks of Hiring Hackers to Change Grades: An Awareness Guide
The Hidden Risks of Hiring Hackers to Change Grades: An Awareness GuideThe Hidden Risks of Hiring Hackers to Change Grades: An Awareness Guide
The Hidden Risks of Hiring Hackers to Change Grades: An Awareness Guide
russellpeter1995
 
DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...
DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...
DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...
werhkr1
 
Web3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdf
Web3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdfWeb3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdf
Web3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdf
Michael Lesniak
 
GiacomoVacca - WebRTC - troubleshooting media negotiation.pdf
GiacomoVacca - WebRTC - troubleshooting media negotiation.pdfGiacomoVacca - WebRTC - troubleshooting media negotiation.pdf
GiacomoVacca - WebRTC - troubleshooting media negotiation.pdf
Giacomo Vacca
 
30 Best WooCommerce Plugins to Boost Your Online Store in 2025
30 Best WooCommerce Plugins to Boost Your Online Store in 202530 Best WooCommerce Plugins to Boost Your Online Store in 2025
30 Best WooCommerce Plugins to Boost Your Online Store in 2025
steve198109
 
Enums In the Wild at PHP[tek] Conference 2025
Enums In the Wild at PHP[tek] Conference 2025Enums In the Wild at PHP[tek] Conference 2025
Enums In the Wild at PHP[tek] Conference 2025
Dana Luther
 
Save TikTok Video Without Watermark - Tikcd
Save TikTok Video Without Watermark - TikcdSave TikTok Video Without Watermark - Tikcd
Save TikTok Video Without Watermark - Tikcd
Tikcd
 
Big_fat_report_from Kaspersky_IR_Report_2024.pdf
Big_fat_report_from Kaspersky_IR_Report_2024.pdfBig_fat_report_from Kaspersky_IR_Report_2024.pdf
Big_fat_report_from Kaspersky_IR_Report_2024.pdf
avreyjeyson
 
The AI Research Showdown: Perplexity vs Gemini
The AI Research Showdown: Perplexity vs GeminiThe AI Research Showdown: Perplexity vs Gemini
The AI Research Showdown: Perplexity vs Gemini
Abel Akara Ticha
 
35 Must-Have WordPress Plugins to Power Your Website in 2025
35 Must-Have WordPress Plugins to Power Your Website in 202535 Must-Have WordPress Plugins to Power Your Website in 2025
35 Must-Have WordPress Plugins to Power Your Website in 2025
steve198109
 
Java developer-friendly frontends: Build UIs without the JavaScript hassle- JCON
Java developer-friendly frontends: Build UIs without the JavaScript hassle- JCONJava developer-friendly frontends: Build UIs without the JavaScript hassle- JCON
Java developer-friendly frontends: Build UIs without the JavaScript hassle- JCON
Jago de Vreede
 
introduction to html and cssIntroHTML.ppt
introduction to html and cssIntroHTML.pptintroduction to html and cssIntroHTML.ppt
introduction to html and cssIntroHTML.ppt
SherifElGohary7
 
Paper: World Game (s) Great Redesign.pdf
Paper: World Game (s) Great Redesign.pdfPaper: World Game (s) Great Redesign.pdf
Paper: World Game (s) Great Redesign.pdf
Steven McGee
 
OS-deadlock detection and recovery with additional features.ppt
OS-deadlock detection and recovery with additional features.pptOS-deadlock detection and recovery with additional features.ppt
OS-deadlock detection and recovery with additional features.ppt
Mangala R
 
Prop-154: Resizing of IPv4 assignments for IXPs
Prop-154: Resizing of IPv4 assignments for IXPsProp-154: Resizing of IPv4 assignments for IXPs
Prop-154: Resizing of IPv4 assignments for IXPs
APNIC
 
Regional Development for an Open, Stable, and Secure Internet
Regional Development for an Open, Stable, and Secure InternetRegional Development for an Open, Stable, and Secure Internet
Regional Development for an Open, Stable, and Secure Internet
APNIC
 
plataforma virtual E learning y sus características.pdf
plataforma virtual E learning y sus características.pdfplataforma virtual E learning y sus características.pdf
plataforma virtual E learning y sus características.pdf
valdiviesovaleriamis
 
TAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIA
TAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIATAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIA
TAIPAN99 PUSAT GAME AMAN DAN TERGACOR SE ASIA
TAIPAN 99
 
an overview of information systems .ppt
an overview of  information systems .pptan overview of  information systems .ppt
an overview of information systems .ppt
DominicWaweru
 
hy 2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvs
hy  2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvshy  2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvs
hy 2wdduv.pptxdcsvdbjdvbjhdvbjhdbvjhvdsvs
saimahadeshdigikit
 
The Hidden Risks of Hiring Hackers to Change Grades: An Awareness Guide
The Hidden Risks of Hiring Hackers to Change Grades: An Awareness GuideThe Hidden Risks of Hiring Hackers to Change Grades: An Awareness Guide
The Hidden Risks of Hiring Hackers to Change Grades: An Awareness Guide
russellpeter1995
 
DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...
DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...
DEF CON 25 - Whitney-Merrill-and-Terrell-McSweeny-Tick-Tick-Boom-Tech-and-the...
werhkr1
 
Web3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdf
Web3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdfWeb3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdf
Web3_Metaverse_Foundations - DTW Coppenhagen - FINAL - 230919.pdf
Michael Lesniak
 
GiacomoVacca - WebRTC - troubleshooting media negotiation.pdf
GiacomoVacca - WebRTC - troubleshooting media negotiation.pdfGiacomoVacca - WebRTC - troubleshooting media negotiation.pdf
GiacomoVacca - WebRTC - troubleshooting media negotiation.pdf
Giacomo Vacca
 
30 Best WooCommerce Plugins to Boost Your Online Store in 2025
30 Best WooCommerce Plugins to Boost Your Online Store in 202530 Best WooCommerce Plugins to Boost Your Online Store in 2025
30 Best WooCommerce Plugins to Boost Your Online Store in 2025
steve198109
 
Enums In the Wild at PHP[tek] Conference 2025
Enums In the Wild at PHP[tek] Conference 2025Enums In the Wild at PHP[tek] Conference 2025
Enums In the Wild at PHP[tek] Conference 2025
Dana Luther
 
Save TikTok Video Without Watermark - Tikcd
Save TikTok Video Without Watermark - TikcdSave TikTok Video Without Watermark - Tikcd
Save TikTok Video Without Watermark - Tikcd
Tikcd
 
Big_fat_report_from Kaspersky_IR_Report_2024.pdf
Big_fat_report_from Kaspersky_IR_Report_2024.pdfBig_fat_report_from Kaspersky_IR_Report_2024.pdf
Big_fat_report_from Kaspersky_IR_Report_2024.pdf
avreyjeyson
 

Intro to Drupal Slides - DrupalCampSC 2014

  • 1. + Disclaimer: This is my first speaking/presenting gig. I’m pretty sure I’m going to do fine, but if I talk really fast and there’s a lot of time left then we’ll talk amongst ourselves. Luckily, if I talk too slowly & run out of time, the slides are set up to be totally self-explanatory. So you can peruse them later.
  • 2. + So let’s talk about Drupal. It’s a thing, and it does stuff.
  • 3. + But first, let’s talk about me for a second  My name is Sarah Shealy  I’m the Front End Web Developer at Richland Library here in Columbia, SC  www.richlandlibrary.com  I have a background in Art History and Library Science  These are my cats.  All Drupal presentations should have at least one cat picture – I learned this at my first DrupalCamp and now I pass it on to you.
  • 4. + My Drupal Story & the seed of this presentation  0 web development skills (ZERO- I barely knew what HTML and CSS were)  Only volunteered with the team because I wanted a librarian job at Richland Library & it would look good  Really frustrated that as I got into Drupal, people would talk way over my head when I just wanted the basics.  I remember wishing that this presentation existed when I went to my first DrupalCamp. So if it’s too simplistic or doesn’t cover enough higher level stuff, I’m sorry.
  • 5. + You can find me in random places online  I really only use Twitter, Instagram, & Pinterest  @Sarah_Shealy (Twit)  SarahHShealy (Insta)  Shealysh (Pint)  Sarahsassandsurcees.com  This is my real-life, personal blog. Not tech, and updated about once a week. Don’t go here for advice, go here to waste some time.  But somehow I have 3 email addresses:  Sarah.Shealy@gmail.com  Sarah.Shealy@outlook.com  Sshealy@richlandlibrary.com  Shealysh.me  Literally nothing there at the moment except working social media links, but will be up and running in the next few weeks. It will be fabulous.
  • 6. + Now, let’s talk about you for a second  For a lot of you, this is going to be a “duh” sort of presentation, but I’m really speaking to the person who sort of stumbled onto Drupal and knows what it does but doesn’t know things like “node” or “content type”. Those are my people.  If this is not you, feel free to doodle, answer email, take a nap (but please not if you snore), and generally keep yourself entertained.
  • 7. + So Drupal is a thing, right?  Open Source  Basically, you can use Drupal for free.  There isn’t an enterprise behind Drupal – even though people are paid to develop for Drupal, there isn’t a conglomerate dictating that development.  Community Based  Drupal is all about community.  Even if Bob develops a module that his site uses, he’ll probably contribute that module back to the community.  I’ve never had a problem reaching out to a Drupal person for help – if they can’t help me, they’ll refer me to someone who can.
  • 8. + Function vs. Beauty  Function  More important than beauty  Honestly.  As long as it works for you, keep it simple.  Remember that you can always add beauty based skills as you master functional ones  You can also change how things function as you learn – you don’t have to be perfect right away  Beauty  Totally important  But not the end all be all  If someone says “Your site is gorgeous, but I have no idea what I’m supposed to do/what you’re selling/what you do” you should rethink your strategy.  Shiny things are fun, but concrete will keep your house standing.
  • 9. + A few terms you should have a handle on  Node - A single piece of content on your site. Every node also belongs to a particular content type.  Content Type – A content type basically tells Drupal how to render your content. It defines the fields used, the layout created, and the input form the creator uses.  Page - One of the two basic content types that are packaged with Drupal core. Generally, pages are used for static content that is to be linked into the main navigation bar. Not all nodes are pages, but all pages are nodes.  Article – The other content type that comes with Core. Usually used for content that changes or isn’t permanent. Like blog posts or marketing releases.
  • 10. + Yay terms!  Theme – Basically the files that define how your site looks. A theme can override all the looks of modules, etc. They can be as simple as defining colors or can be drastically customized to control every element of the design. Themes regulate what goes where.  Region - Areas of a node where content can be placed. Sidebars, headers, footers, etc are all placed in regions.  Term – This is basically the Drupal term for keyword. You attach keywords to content in order to link content with other content.  Vocabulary – A collection of terms.
  • 11. + Last slide o’ terms  Core - The files and modules included with the basic Drupal install.  Clean URL - A URL that does not contain code. Drupal puts snippets of code in URLs, and clean ones remove that code. Makes them much easier to remember.  Ninja/guru/rock star/super hero/etc – ridiculous ways to say you’re good at your job.  Druplicon - The Drupal mascot. It’s basically a raindrop with a face on it.
  • 12. + Modules: a disclaimer Please, for the love of all things, do not go back to work and insist everyone on the team uses all of the modules that I’m about to go over. Unless you are the whole team, in which case go for it. If you see something that may solve a problem better than you’re currently solving it, suggest the team looks into it. Don’t be that guy (or girl).
  • 13. + Views! *everyone’s 1st recommendation*  You need Views if  You like the default front page view, but you find you want to sort it differently.  You like the default taxonomy/term view, but you find you want to sort it differently; for example, alphabetically.  You want a way to display a block with the 5 most recent posts of some particular type.  Views basically gives you an alternative way to display content, and restrict that display to specific content types or taxonomy terms. It’s even possible to restrict to a certain user’s content. Steep learning curve, though. **This is from the Views module page with some modification**
  • 14. + Panels!  Lets you create customized layouts for your site.  It’s a drag and drop content manager that lets you design your layout and place content in it. It’s a way to control the layout without using theme files.  Learning curve is pretty steep. Much like views.  While Panels integrates with Views, people are generally in either the Views camp or the Panels camp. But there are plenty of sites that use both. **Basic ideas came from the Panels module page – much modified**
  • 15. + Pathauto!  The Pathauto module automatically creates URLs and path aliases for content without the user having to make one up themselves. This keeps the sites’ URLs consistent.  You can specify how each content type is given an alias. For example all events on your site can be given a pattern with “events” so each event is mysite.com/events/event-title ** Pathauto is a pretty excellent module, and you should check it out.**
  • 16. + Git  Git is a version control system  Github keeps your code on the interwebs, you copy that code base onto your computer, and then you can muck about in the copy while not injuring your current production-level code.  There are TONS of tutorials out there, and the best place to start is GitHub  But there are a lot of Git users out there and they have really excellent advice about how to use Git in the best way.  Try not to wing it when using Git, you can break some stuff. Like your corner of the internet.
  • 17. + Drush  An awesome program for managing Drupal from the command line. It allows a site admin to do things by typing in a few commands instead of clicking through multiple steps to accomplish the same goal.  My favorite commands:  Drush en | Drush dis  Enables and disables modules  Drush cc all  This clears the cache of all the styles and applies new ones that I’ve created.
  • 18. + Where to get help  Google. It’s legit, you guys. Got a weird error message? Google.  Drupal.org is always a good place to go – the search is unwieldy, though.  Stack Exchange  Stack Overflow  But really, Google will get you blog posts from people who have had your exact problem as well as every other site’s answers.
  • 19. + Awesome Places for Training (free)  YouTube  Just search for whatever you need help with.  There are videos of presentations, tutorials, etc.  Google.  There are several million tutorials out there that really want to help you out.  DrupalCamp 24x7
  • 20. + Awesome Places for Training ($)  Udemy has a course for an Intro to Drupal.  Drupal.org has a listing of a bunch of places that provide training.  I can vouch for  Acquia  Build a Module  Isovera  Lullabot (drupalize.me)  Lynda
  翻译: