SlideShare ist ein Scribd-Unternehmen logo
1 von 60
Downloaden Sie, um offline zu lesen
Bootstrap 3 in Joomla!
Hans Kuijpers - @hans2103 - zaterdag 11 april 2015
B
Bootstrap 3 in Joomla!
Hans Kuijpers - @hans2103 - zaterdag 11 april 2015
B
slideshare.net/hans2103
Bootstrap 3 in Joomla!
Ik ben Hans
• Front-end developer
• Joomla! en Magento
• Blogger
• Saxofonist
• Lekker eten
• Gezelligheid
• Kennisdeler
Bootstrap 3 in Joomla!
• Joomla!dagen
• Joomla World Conference
• #jug073 Joomla Gebruikersgroep 

’s-Hertogenbosch
• #mug073 Magento User Group

’s-Hertogenbosch
• Meet Magento
• blogposts voor byte.nl/blog
• blogposts voor dutchento.org
• blogpost voor emerce.nl
Social Media via user = hans2103
Ik deel graag mijn kennis
Bootstrap 3 in Joomla!
Handige tips
• Waarom Bootstrap 3 fijner is dan Bootstrap 2
• Uitleg van de opbouw
• Te voorkomen fouten
• Bootstrap 3 Slideshow
• Realtime Bootstrap 2 naar Bootstrap 3
• Bootstrap 3 template bouwen
Bootstrap 3 in Joomla!
één framework voor
alle schermen
Bootstrap 3 in Joomla!
.span4
Bootstrap 3 in Joomla!
span4
span4
span4
span4
span4
span4
span4
span4
Bootstrap 3 in Joomla!
.span4
Bootstrap 3 in Joomla!
.span4
Bootstrap 3 in Joomla!
Extra small devices Phones (<768px) .col-xs-*
Small devices Tablets (≥768px) .col-sm-*
Medium devices Desktops (≥992px) .col-md-*
Large devices Desktops (≥1200px) .col-lg-*
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Uitleg van de opbouw
.container, .row en .col-*-*
Bootstrap 3 in Joomla!
.container
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
<html>
<body>
<div class="container">
</div>
</body>
</html>
Bootstrap 3 in Joomla!
.container
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
Bootstrap 3 in Joomla!
.row
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
<html>
<body>
<div class="container">
<div class="row">
</div>
</div>
</body>
</html>
Bootstrap 3 in Joomla!
.row
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
Bootstrap 3 in Joomla!
.col
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
<html>
<body>
<div class="container">
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-9">
</div>
</div>
</div>
</body>
</html>
Bootstrap 3 in Joomla!
.col
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
Bootstrap 3 in Joomla!
content
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
<html>
<body>
<div class="container">
<div class="row">
<div class="col-sm-3">
smalle sidebar
</div>
<div class="col-sm-9">
main content
</div>
</div>
</div>
</body>
</html>
Bootstrap 3 in Joomla!
content
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
nesting
<div class="container">
<div class="row">
<div class="col-sm-3">
smalle sidebar
</div>
<div class="col-sm-9">
<div class="row">
<div class="col-sm-12">
content regel 1
</div>
</div>
<div class="row">
<div class="col-sm-12">
content regel 2
</div>
</div>
</div>
</div>
</div>
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
nesting
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
nesting
<div class="row">
<div class="col-sm-3">
smalle sidebar
</div>
<div class="col-sm-9">
<div class="row">
<div class="col-sm-3">content regel 1 kolom 1</d
<div class="col-sm-3">content regel 1 kolom 2</d
<div class="col-sm-3">content regel 1 kolom 3</d
<div class="col-sm-3">content regel 1 kolom 4</d
</div>
<div class="row">
<div class="col-sm-4">content regel 2 kolom 1</d
<div class="col-sm-4">content regel 2 kolom 2</d
<div class="col-sm-4">content regel 2 kolom 3</d
</div>
</div>
</div>
div>
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
nesting
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
offset<html>
<body>
<div class="container">
<div class="row">
<div class="col-sm-3 col-sm-offset-3">
smalle sidebar
</div>
<div class="col-sm-4 col-sm-offset-2">
main content
</div>
</div>
</div>
</body>
</html>
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
offset
Bootstrap 3 in Joomla!
Push and pull
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
<html>
<body>
<div class="container">
<div class="row">
<div class="col-sm-3 col-sm-push-3">
smalle sidebar
</div>
<div class="col-sm-9">
main content
</div>
</div>
</div>
</body>
</html>
Bootstrap 3 in Joomla!
Push and pull
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
Bootstrap 3 in Joomla!
Push and pull
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
<html>
<body>
<div class="container">
<div class="row">
<div class="col-sm-3 col-sm-push-9">
smalle sidebar
</div>
<div class="col-sm-9 col-sm-pull-3">
main content
</div>
</div>
</div>
</body>
</html>
Bootstrap 3 in Joomla!
Push and pull
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
Bootstrap 3 in Joomla!
Foutief gebruik
en hoe je het kan voorkomen
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
no .container
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
no .row
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
.container into .col
Bootstrap 3 in Joomla!
bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
.push outside
Bootstrap 3 in Joomla!
Bootstrap 3 carousel
zonder slideshow extensie die net niet doet wat jij
wil bereiken… bootstrap 3 slideshow
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Joomla! title
Bootstrap 3 in Joomla!
Joomla! body text
Bootstrap 3 in Joomla!
Joomla! intro image
Bootstrap 3 in Joomla!
Basis van een carousel
• een titel
• een body text
• een intro image
• van artikelen uit een bepaalde categorie
Bestaat uit:
Bootstrap 3 in Joomla!
Joomla! Powertools
• NoNumber - Articles Anywhere

https://www.nonumber.nl/extensions/articlesanywhere
• NoNumber - Sourcerer

https://www.nonumber.nl/extensions/sourcerer
• NoNumber - Snippets

https://www.nonumber.nl/extensions/snippets
• René Kreijveld - User Agent Detector

https://github.com/renekreijveld/UserAgentDetector
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
{source 0}
<?php
function getCarouselContentByLayout($layout, $title = '', $text = '', $count = 0)
{
if($layout == 'mobile') {
return '<div class="carousel-caption carousel-caption-mobile">'
. '<strong>' . $title . '</strong>'
. '<p><a href="#myModal-' . $count .'" data-toggle="modal">lees meer</a></p>'
. '</div>';
}
return '<div class="carousel-caption"><strong>' . $title . '</strong> - ' . $text . '</div>'
}
function getCarouselModalContentByLayout($layout, $title = '', $text = '', $count = 0 )
{
if($layout != 'mobile') {
return '';
}
return '<div class="modal fade" id="myModal-' . $count . '" tabindex="-1" role="dialog" aria
.' <div class="modal-dialog">'
.' <div class="modal-content">'
.' <div class="modal-header">'
.' <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">
.' <h4 class="modal-title" id="myModalLabel-' . $count . '" itemprop="name">' . $titl
.' </div>'
https://gist.github.com/hans2103/b332db57c1e8388baf9c
{snippet carousel|category-alias}
Bootstrap 3 in Joomla!
Realtime BS2 naar BS3
snelle oplossing… maar resource gevoelig
Bootstrap 3 in Joomla!
Realtime Bootstrap 2 naar Bootstrap 3
Bootstrap 3 .css en .js wordt door de template ingeladen en
Joomla! produceert (zonder template overrides) BS2 code
Bootstrap 2

span1,span2,span3,span4,span5,span6,span7,span8,span9,span10,span11,span1
2,offset1,offset2,offset3,offset4,offset5,offset6,offset7,offset8,offset9,offset10,
offset11,offset12,row-fluid,container-fluid,hero-unit,img-polaroid
Bootstrap 3

col-sm-1,col-sm-2,col-sm-3,col-sm-4,col-sm-5,col-sm-6,col-sm-7,col-
sm-8,col-sm-9,col-sm-10,col-sm-11,col-sm-12,col-sm-sm-offset-1,col-sm-
offset-2,col-sm-offset-3,col-sm-offset-4,col-sm-offset-5,col-sm-offset-6,col-
sm-offset-7,col-sm-offset-8,col-sm-offset-9,col-sm-offset-10,col-sm-
offset-11,col-sm-offset-12,row,container,jumbotron,img-thumbnail
Bootstrap 3 in Joomla!
Joomla! Powertools
• NoNumber - ReReplacer

https://www.nonumber.nl/extensions/rereplacer
• zoek Bootstrap 2 code
• vervang door Bootstrap 3 code
• activeer de opties "Treat as List" en "Word Search”
• tip beschreven door Philip Locke (Joostrap.com)

http://www.joostrap.com/support/tutorials-videos/206-
boostrap2-to-bootstrap3-super-easy-update
Bootstrap 3 in Joomla!
Bootstrap 3 template
bouwen
net zo makkelijk als elk ander template bouwen.
maar met LESS en veel overrides voor Bootstrap 3
Bootstrap 3 in Joomla!
pagina 76 en verder
https://github.com/hans2103/JTFS
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
Dank voor de aandacht
Bootstrap 3 in Joomla!
Dank voor de aandacht
vragen?
@hans2103
slideshare.net/hans2103

Weitere ähnliche Inhalte

Was ist angesagt?

Joomla 3 Component programmeren met RAD - Joomladagen 2014
Joomla 3 Component programmeren met RAD - Joomladagen 2014Joomla 3 Component programmeren met RAD - Joomladagen 2014
Joomla 3 Component programmeren met RAD - Joomladagen 2014Peter Martin
 
Joomla Explained - As Easy as 1, 2, 3
Joomla Explained - As Easy as 1, 2, 3Joomla Explained - As Easy as 1, 2, 3
Joomla Explained - As Easy as 1, 2, 3Rod Martin
 
Problemen oplossen in Joomla - Joomladagen 2014
Problemen oplossen in Joomla - Joomladagen 2014Problemen oplossen in Joomla - Joomladagen 2014
Problemen oplossen in Joomla - Joomladagen 2014Peter Martin
 
Develop Basic joomla! MVC component for version 3
Develop Basic joomla! MVC component for version 3Develop Basic joomla! MVC component for version 3
Develop Basic joomla! MVC component for version 3Gunjan Patel
 
Speak The Web: The HTML5 Experiments
Speak The Web: The HTML5 ExperimentsSpeak The Web: The HTML5 Experiments
Speak The Web: The HTML5 Experimentsguestd427df
 
So you want to build a Facebook app
So you want to build a Facebook appSo you want to build a Facebook app
So you want to build a Facebook appkamal.fariz
 
Building a PWA - For Everyone Who Is Scared To
Building a PWA - For Everyone Who Is Scared ToBuilding a PWA - For Everyone Who Is Scared To
Building a PWA - For Everyone Who Is Scared ToRaymond Camden
 
Beginning WordPress Plugin Development
Beginning WordPress Plugin DevelopmentBeginning WordPress Plugin Development
Beginning WordPress Plugin DevelopmentAizat Faiz
 
Security and Performance - Italian WordPress Conference
Security and Performance - Italian WordPress ConferenceSecurity and Performance - Italian WordPress Conference
Security and Performance - Italian WordPress ConferenceMaurizio Pelizzone
 
Essential html tweaks for accessible themes
Essential html tweaks for accessible themesEssential html tweaks for accessible themes
Essential html tweaks for accessible themesMartin Stehle
 
That's crazy! how to build single page web apps
That's crazy! how to build single page web appsThat's crazy! how to build single page web apps
That's crazy! how to build single page web appsChris Love
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to phpjgarifuna
 
Develop advance joomla! MVC Component for version 3
Develop advance joomla! MVC Component for version 3Develop advance joomla! MVC Component for version 3
Develop advance joomla! MVC Component for version 3Gunjan Patel
 
10 tips to improve the usability of Joomla - Joomla World Conference 2014
10 tips to improve the usability of Joomla - Joomla World Conference 201410 tips to improve the usability of Joomla - Joomla World Conference 2014
10 tips to improve the usability of Joomla - Joomla World Conference 2014Sander Potjer
 
Plone for python programmers
Plone for python programmersPlone for python programmers
Plone for python programmersDylan Jay
 
WordPress: Smart Ideas for Startup - SMW torino 2012
WordPress: Smart Ideas for Startup - SMW  torino 2012 WordPress: Smart Ideas for Startup - SMW  torino 2012
WordPress: Smart Ideas for Startup - SMW torino 2012 Maurizio Pelizzone
 
Dress Your WordPress with Child Themes
Dress Your WordPress with Child ThemesDress Your WordPress with Child Themes
Dress Your WordPress with Child ThemesLaurie M. Rauch
 

Was ist angesagt? (20)

Joomla 3 Component programmeren met RAD - Joomladagen 2014
Joomla 3 Component programmeren met RAD - Joomladagen 2014Joomla 3 Component programmeren met RAD - Joomladagen 2014
Joomla 3 Component programmeren met RAD - Joomladagen 2014
 
WordPress Hardening
WordPress HardeningWordPress Hardening
WordPress Hardening
 
Joomla Explained - As Easy as 1, 2, 3
Joomla Explained - As Easy as 1, 2, 3Joomla Explained - As Easy as 1, 2, 3
Joomla Explained - As Easy as 1, 2, 3
 
Problemen oplossen in Joomla - Joomladagen 2014
Problemen oplossen in Joomla - Joomladagen 2014Problemen oplossen in Joomla - Joomladagen 2014
Problemen oplossen in Joomla - Joomladagen 2014
 
Develop Basic joomla! MVC component for version 3
Develop Basic joomla! MVC component for version 3Develop Basic joomla! MVC component for version 3
Develop Basic joomla! MVC component for version 3
 
Speak The Web: The HTML5 Experiments
Speak The Web: The HTML5 ExperimentsSpeak The Web: The HTML5 Experiments
Speak The Web: The HTML5 Experiments
 
So you want to build a Facebook app
So you want to build a Facebook appSo you want to build a Facebook app
So you want to build a Facebook app
 
Building a PWA - For Everyone Who Is Scared To
Building a PWA - For Everyone Who Is Scared ToBuilding a PWA - For Everyone Who Is Scared To
Building a PWA - For Everyone Who Is Scared To
 
Beginning WordPress Plugin Development
Beginning WordPress Plugin DevelopmentBeginning WordPress Plugin Development
Beginning WordPress Plugin Development
 
Security and Performance - Italian WordPress Conference
Security and Performance - Italian WordPress ConferenceSecurity and Performance - Italian WordPress Conference
Security and Performance - Italian WordPress Conference
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive Enhancement
 
Essential html tweaks for accessible themes
Essential html tweaks for accessible themesEssential html tweaks for accessible themes
Essential html tweaks for accessible themes
 
That's crazy! how to build single page web apps
That's crazy! how to build single page web appsThat's crazy! how to build single page web apps
That's crazy! how to build single page web apps
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
 
Develop advance joomla! MVC Component for version 3
Develop advance joomla! MVC Component for version 3Develop advance joomla! MVC Component for version 3
Develop advance joomla! MVC Component for version 3
 
10 tips to improve the usability of Joomla - Joomla World Conference 2014
10 tips to improve the usability of Joomla - Joomla World Conference 201410 tips to improve the usability of Joomla - Joomla World Conference 2014
10 tips to improve the usability of Joomla - Joomla World Conference 2014
 
Plone for python programmers
Plone for python programmersPlone for python programmers
Plone for python programmers
 
Hardcode SEO
Hardcode SEOHardcode SEO
Hardcode SEO
 
WordPress: Smart Ideas for Startup - SMW torino 2012
WordPress: Smart Ideas for Startup - SMW  torino 2012 WordPress: Smart Ideas for Startup - SMW  torino 2012
WordPress: Smart Ideas for Startup - SMW torino 2012
 
Dress Your WordPress with Child Themes
Dress Your WordPress with Child ThemesDress Your WordPress with Child Themes
Dress Your WordPress with Child Themes
 

Ähnlich wie Bootstrap 3 in Joomla!

Bootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF ReferenceBootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF ReferenceBootstrap Creative
 
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using BootstrapStop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using Bootstrapfreshlybakedpixels
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單偉格 高
 
IBM Connect 2016 - AD1548 - Building Responsive XPages Applications
IBM Connect 2016 - AD1548 - Building Responsive XPages ApplicationsIBM Connect 2016 - AD1548 - Building Responsive XPages Applications
IBM Connect 2016 - AD1548 - Building Responsive XPages Applicationsbeglee
 
Building Responsive Applications Using XPages
Building Responsive Applications Using XPagesBuilding Responsive Applications Using XPages
Building Responsive Applications Using XPagesTeamstudio
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by MukeshMukesh Kumar
 
Bootstrap - Web Development Framework
Bootstrap - Web Development FrameworkBootstrap - Web Development Framework
Bootstrap - Web Development FrameworkCindy Royal
 
Word press development for non developers
Word press development for non developers Word press development for non developers
Word press development for non developers Jessica C. Gardner
 
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...Roni Banerjee
 
Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3Nur Fadli Utomo
 
Creating GUI container components in Angular and Web Components
Creating GUI container components in Angular and Web ComponentsCreating GUI container components in Angular and Web Components
Creating GUI container components in Angular and Web ComponentsRachael L Moore
 
Does my DIV look big in this?
Does my DIV look big in this?Does my DIV look big in this?
Does my DIV look big in this?glen_a_smith
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015Rob Davarnia
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4imdurgesh
 

Ähnlich wie Bootstrap 3 in Joomla! (20)

Bootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF ReferenceBootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF Reference
 
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using BootstrapStop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
 
IBM Connect 2016 - AD1548 - Building Responsive XPages Applications
IBM Connect 2016 - AD1548 - Building Responsive XPages ApplicationsIBM Connect 2016 - AD1548 - Building Responsive XPages Applications
IBM Connect 2016 - AD1548 - Building Responsive XPages Applications
 
Building Responsive Applications Using XPages
Building Responsive Applications Using XPagesBuilding Responsive Applications Using XPages
Building Responsive Applications Using XPages
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design
 
Bootstrap - Web Development Framework
Bootstrap - Web Development FrameworkBootstrap - Web Development Framework
Bootstrap - Web Development Framework
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Bootstrap
Bootstrap Bootstrap
Bootstrap
 
Word press development for non developers
Word press development for non developers Word press development for non developers
Word press development for non developers
 
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
 
Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3
 
Creating GUI container components in Angular and Web Components
Creating GUI container components in Angular and Web ComponentsCreating GUI container components in Angular and Web Components
Creating GUI container components in Angular and Web Components
 
Boot strap
Boot strapBoot strap
Boot strap
 
Taking your Web App for a walk
Taking your Web App for a walkTaking your Web App for a walk
Taking your Web App for a walk
 
Does my DIV look big in this?
Does my DIV look big in this?Does my DIV look big in this?
Does my DIV look big in this?
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
 
Bootstrap 3
Bootstrap 3Bootstrap 3
Bootstrap 3
 

Mehr von Hans Kuijpers

JD19NL - Joomla Template Overrides, Alternate Layouts en JLayouts
JD19NL - Joomla Template Overrides, Alternate Layouts en JLayoutsJD19NL - Joomla Template Overrides, Alternate Layouts en JLayouts
JD19NL - Joomla Template Overrides, Alternate Layouts en JLayoutsHans Kuijpers
 
RSForm!pro jug073 maart 2019
RSForm!pro  jug073 maart 2019RSForm!pro  jug073 maart 2019
RSForm!pro jug073 maart 2019Hans Kuijpers
 
Template overrides in joomla jug073 februari 2019
Template overrides in joomla   jug073 februari 2019Template overrides in joomla   jug073 februari 2019
Template overrides in joomla jug073 februari 2019Hans Kuijpers
 
Joomla Website optimaliseren - jug073 augustus 2018
Joomla Website optimaliseren - jug073 augustus 2018Joomla Website optimaliseren - jug073 augustus 2018
Joomla Website optimaliseren - jug073 augustus 2018Hans Kuijpers
 
Joomla Custom Fields - the next level
Joomla Custom Fields - the next level Joomla Custom Fields - the next level
Joomla Custom Fields - the next level Hans Kuijpers
 
Best Practice: Joomla! templating
Best Practice: Joomla! templatingBest Practice: Joomla! templating
Best Practice: Joomla! templatingHans Kuijpers
 
JD17NL Joomla! Overrides and alternate layouts
JD17NL Joomla! Overrides and alternate layoutsJD17NL Joomla! Overrides and alternate layouts
JD17NL Joomla! Overrides and alternate layoutsHans Kuijpers
 
Maak je website geschikt voor mobiel
Maak je website geschikt voor mobielMaak je website geschikt voor mobiel
Maak je website geschikt voor mobielHans Kuijpers
 
Google Webmasters Tools
Google Webmasters ToolsGoogle Webmasters Tools
Google Webmasters ToolsHans Kuijpers
 
Google Tag Manager #jd14nl
Google Tag Manager #jd14nlGoogle Tag Manager #jd14nl
Google Tag Manager #jd14nlHans Kuijpers
 
Social Share Buttons - #jd14nl
Social Share Buttons - #jd14nlSocial Share Buttons - #jd14nl
Social Share Buttons - #jd14nlHans Kuijpers
 
Site Performance Optimization for Joomla #jwc13
Site Performance Optimization for Joomla #jwc13Site Performance Optimization for Joomla #jwc13
Site Performance Optimization for Joomla #jwc13Hans Kuijpers
 
Rich Snippets in Joomla - #JUG073
Rich Snippets in Joomla - #JUG073Rich Snippets in Joomla - #JUG073
Rich Snippets in Joomla - #JUG073Hans Kuijpers
 
Rich Snippets in Magento product page - #MUG020
Rich Snippets in Magento product page - #MUG020Rich Snippets in Magento product page - #MUG020
Rich Snippets in Magento product page - #MUG020Hans Kuijpers
 
Rich Snippets in Magento product page
Rich Snippets in Magento product pageRich Snippets in Magento product page
Rich Snippets in Magento product pageHans Kuijpers
 
CSS with LESS for #jd13nl
CSS with LESS for #jd13nlCSS with LESS for #jd13nl
CSS with LESS for #jd13nlHans Kuijpers
 
Site Speed Optimisation for JWC2012
Site Speed Optimisation for JWC2012Site Speed Optimisation for JWC2012
Site Speed Optimisation for JWC2012Hans Kuijpers
 
Form2content case for #JUG073
Form2content case for #JUG073Form2content case for #JUG073
Form2content case for #JUG073Hans Kuijpers
 
Magento Theme - set the basics right - mm12nl
Magento Theme - set the basics right - mm12nlMagento Theme - set the basics right - mm12nl
Magento Theme - set the basics right - mm12nlHans Kuijpers
 
Google analytics - jd12nl met Byte Internet
Google analytics - jd12nl met Byte InternetGoogle analytics - jd12nl met Byte Internet
Google analytics - jd12nl met Byte InternetHans Kuijpers
 

Mehr von Hans Kuijpers (20)

JD19NL - Joomla Template Overrides, Alternate Layouts en JLayouts
JD19NL - Joomla Template Overrides, Alternate Layouts en JLayoutsJD19NL - Joomla Template Overrides, Alternate Layouts en JLayouts
JD19NL - Joomla Template Overrides, Alternate Layouts en JLayouts
 
RSForm!pro jug073 maart 2019
RSForm!pro  jug073 maart 2019RSForm!pro  jug073 maart 2019
RSForm!pro jug073 maart 2019
 
Template overrides in joomla jug073 februari 2019
Template overrides in joomla   jug073 februari 2019Template overrides in joomla   jug073 februari 2019
Template overrides in joomla jug073 februari 2019
 
Joomla Website optimaliseren - jug073 augustus 2018
Joomla Website optimaliseren - jug073 augustus 2018Joomla Website optimaliseren - jug073 augustus 2018
Joomla Website optimaliseren - jug073 augustus 2018
 
Joomla Custom Fields - the next level
Joomla Custom Fields - the next level Joomla Custom Fields - the next level
Joomla Custom Fields - the next level
 
Best Practice: Joomla! templating
Best Practice: Joomla! templatingBest Practice: Joomla! templating
Best Practice: Joomla! templating
 
JD17NL Joomla! Overrides and alternate layouts
JD17NL Joomla! Overrides and alternate layoutsJD17NL Joomla! Overrides and alternate layouts
JD17NL Joomla! Overrides and alternate layouts
 
Maak je website geschikt voor mobiel
Maak je website geschikt voor mobielMaak je website geschikt voor mobiel
Maak je website geschikt voor mobiel
 
Google Webmasters Tools
Google Webmasters ToolsGoogle Webmasters Tools
Google Webmasters Tools
 
Google Tag Manager #jd14nl
Google Tag Manager #jd14nlGoogle Tag Manager #jd14nl
Google Tag Manager #jd14nl
 
Social Share Buttons - #jd14nl
Social Share Buttons - #jd14nlSocial Share Buttons - #jd14nl
Social Share Buttons - #jd14nl
 
Site Performance Optimization for Joomla #jwc13
Site Performance Optimization for Joomla #jwc13Site Performance Optimization for Joomla #jwc13
Site Performance Optimization for Joomla #jwc13
 
Rich Snippets in Joomla - #JUG073
Rich Snippets in Joomla - #JUG073Rich Snippets in Joomla - #JUG073
Rich Snippets in Joomla - #JUG073
 
Rich Snippets in Magento product page - #MUG020
Rich Snippets in Magento product page - #MUG020Rich Snippets in Magento product page - #MUG020
Rich Snippets in Magento product page - #MUG020
 
Rich Snippets in Magento product page
Rich Snippets in Magento product pageRich Snippets in Magento product page
Rich Snippets in Magento product page
 
CSS with LESS for #jd13nl
CSS with LESS for #jd13nlCSS with LESS for #jd13nl
CSS with LESS for #jd13nl
 
Site Speed Optimisation for JWC2012
Site Speed Optimisation for JWC2012Site Speed Optimisation for JWC2012
Site Speed Optimisation for JWC2012
 
Form2content case for #JUG073
Form2content case for #JUG073Form2content case for #JUG073
Form2content case for #JUG073
 
Magento Theme - set the basics right - mm12nl
Magento Theme - set the basics right - mm12nlMagento Theme - set the basics right - mm12nl
Magento Theme - set the basics right - mm12nl
 
Google analytics - jd12nl met Byte Internet
Google analytics - jd12nl met Byte InternetGoogle analytics - jd12nl met Byte Internet
Google analytics - jd12nl met Byte Internet
 

Kürzlich hochgeladen

(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...Escorts Call Girls
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...SUHANI PANDEY
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...Diya Sharma
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLimonikaupta
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceDelhi Call girls
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.soniya singh
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...SUHANI PANDEY
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Standkumarajju5765
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445ruhi
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 

Kürzlich hochgeladen (20)

VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 

Bootstrap 3 in Joomla!

  • 1. Bootstrap 3 in Joomla! Hans Kuijpers - @hans2103 - zaterdag 11 april 2015 B
  • 2. Bootstrap 3 in Joomla! Hans Kuijpers - @hans2103 - zaterdag 11 april 2015 B slideshare.net/hans2103
  • 3. Bootstrap 3 in Joomla! Ik ben Hans • Front-end developer • Joomla! en Magento • Blogger • Saxofonist • Lekker eten • Gezelligheid • Kennisdeler
  • 4. Bootstrap 3 in Joomla! • Joomla!dagen • Joomla World Conference • #jug073 Joomla Gebruikersgroep 
 ’s-Hertogenbosch • #mug073 Magento User Group
 ’s-Hertogenbosch • Meet Magento • blogposts voor byte.nl/blog • blogposts voor dutchento.org • blogpost voor emerce.nl Social Media via user = hans2103 Ik deel graag mijn kennis
  • 5. Bootstrap 3 in Joomla! Handige tips • Waarom Bootstrap 3 fijner is dan Bootstrap 2 • Uitleg van de opbouw • Te voorkomen fouten • Bootstrap 3 Slideshow • Realtime Bootstrap 2 naar Bootstrap 3 • Bootstrap 3 template bouwen
  • 6. Bootstrap 3 in Joomla! één framework voor alle schermen
  • 7. Bootstrap 3 in Joomla! .span4
  • 8. Bootstrap 3 in Joomla! span4 span4 span4 span4 span4 span4 span4 span4
  • 9. Bootstrap 3 in Joomla! .span4
  • 10. Bootstrap 3 in Joomla! .span4
  • 11. Bootstrap 3 in Joomla! Extra small devices Phones (<768px) .col-xs-* Small devices Tablets (≥768px) .col-sm-* Medium devices Desktops (≥992px) .col-md-* Large devices Desktops (≥1200px) .col-lg-*
  • 12. Bootstrap 3 in Joomla!
  • 13. Bootstrap 3 in Joomla!
  • 14. Bootstrap 3 in Joomla!
  • 15. Bootstrap 3 in Joomla!
  • 16. Bootstrap 3 in Joomla!
  • 17. Bootstrap 3 in Joomla!
  • 18. Bootstrap 3 in Joomla! Uitleg van de opbouw .container, .row en .col-*-*
  • 19. Bootstrap 3 in Joomla! .container bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works <html> <body> <div class="container"> </div> </body> </html>
  • 20. Bootstrap 3 in Joomla! .container bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
  • 21. Bootstrap 3 in Joomla! .row bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works <html> <body> <div class="container"> <div class="row"> </div> </div> </body> </html>
  • 22. Bootstrap 3 in Joomla! .row bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
  • 23. Bootstrap 3 in Joomla! .col bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works <html> <body> <div class="container"> <div class="row"> <div class="col-sm-3"> </div> <div class="col-sm-9"> </div> </div> </div> </body> </html>
  • 24. Bootstrap 3 in Joomla! .col bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
  • 25. Bootstrap 3 in Joomla! content bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works <html> <body> <div class="container"> <div class="row"> <div class="col-sm-3"> smalle sidebar </div> <div class="col-sm-9"> main content </div> </div> </div> </body> </html>
  • 26. Bootstrap 3 in Joomla! content bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
  • 27. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works nesting <div class="container"> <div class="row"> <div class="col-sm-3"> smalle sidebar </div> <div class="col-sm-9"> <div class="row"> <div class="col-sm-12"> content regel 1 </div> </div> <div class="row"> <div class="col-sm-12"> content regel 2 </div> </div> </div> </div> </div>
  • 28. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works nesting
  • 29. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works nesting <div class="row"> <div class="col-sm-3"> smalle sidebar </div> <div class="col-sm-9"> <div class="row"> <div class="col-sm-3">content regel 1 kolom 1</d <div class="col-sm-3">content regel 1 kolom 2</d <div class="col-sm-3">content regel 1 kolom 3</d <div class="col-sm-3">content regel 1 kolom 4</d </div> <div class="row"> <div class="col-sm-4">content regel 2 kolom 1</d <div class="col-sm-4">content regel 2 kolom 2</d <div class="col-sm-4">content regel 2 kolom 3</d </div> </div> </div> div>
  • 30. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works nesting
  • 31. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works offset<html> <body> <div class="container"> <div class="row"> <div class="col-sm-3 col-sm-offset-3"> smalle sidebar </div> <div class="col-sm-4 col-sm-offset-2"> main content </div> </div> </div> </body> </html>
  • 32. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works offset
  • 33. Bootstrap 3 in Joomla! Push and pull bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works <html> <body> <div class="container"> <div class="row"> <div class="col-sm-3 col-sm-push-3"> smalle sidebar </div> <div class="col-sm-9"> main content </div> </div> </div> </body> </html>
  • 34. Bootstrap 3 in Joomla! Push and pull bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
  • 35. Bootstrap 3 in Joomla! Push and pull bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works <html> <body> <div class="container"> <div class="row"> <div class="col-sm-3 col-sm-push-9"> smalle sidebar </div> <div class="col-sm-9 col-sm-pull-3"> main content </div> </div> </div> </body> </html>
  • 36. Bootstrap 3 in Joomla! Push and pull bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works
  • 37. Bootstrap 3 in Joomla! Foutief gebruik en hoe je het kan voorkomen
  • 38. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works no .container
  • 39. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works no .row
  • 40. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works .container into .col
  • 41. Bootstrap 3 in Joomla! bron: http://www.helloerik.com/the-subtle-magic-behind-why-the-bootstrap-3-grid-works .push outside
  • 42. Bootstrap 3 in Joomla! Bootstrap 3 carousel zonder slideshow extensie die net niet doet wat jij wil bereiken… bootstrap 3 slideshow
  • 43. Bootstrap 3 in Joomla!
  • 44. Bootstrap 3 in Joomla!
  • 45. Bootstrap 3 in Joomla!
  • 46. Bootstrap 3 in Joomla! Joomla! title
  • 47. Bootstrap 3 in Joomla! Joomla! body text
  • 48. Bootstrap 3 in Joomla! Joomla! intro image
  • 49. Bootstrap 3 in Joomla! Basis van een carousel • een titel • een body text • een intro image • van artikelen uit een bepaalde categorie Bestaat uit:
  • 50. Bootstrap 3 in Joomla! Joomla! Powertools • NoNumber - Articles Anywhere
 https://www.nonumber.nl/extensions/articlesanywhere • NoNumber - Sourcerer
 https://www.nonumber.nl/extensions/sourcerer • NoNumber - Snippets
 https://www.nonumber.nl/extensions/snippets • René Kreijveld - User Agent Detector
 https://github.com/renekreijveld/UserAgentDetector
  • 51. Bootstrap 3 in Joomla!
  • 52. Bootstrap 3 in Joomla! {source 0} <?php function getCarouselContentByLayout($layout, $title = '', $text = '', $count = 0) { if($layout == 'mobile') { return '<div class="carousel-caption carousel-caption-mobile">' . '<strong>' . $title . '</strong>' . '<p><a href="#myModal-' . $count .'" data-toggle="modal">lees meer</a></p>' . '</div>'; } return '<div class="carousel-caption"><strong>' . $title . '</strong> - ' . $text . '</div>' } function getCarouselModalContentByLayout($layout, $title = '', $text = '', $count = 0 ) { if($layout != 'mobile') { return ''; } return '<div class="modal fade" id="myModal-' . $count . '" tabindex="-1" role="dialog" aria .' <div class="modal-dialog">' .' <div class="modal-content">' .' <div class="modal-header">' .' <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true"> .' <h4 class="modal-title" id="myModalLabel-' . $count . '" itemprop="name">' . $titl .' </div>' https://gist.github.com/hans2103/b332db57c1e8388baf9c {snippet carousel|category-alias}
  • 53. Bootstrap 3 in Joomla! Realtime BS2 naar BS3 snelle oplossing… maar resource gevoelig
  • 54. Bootstrap 3 in Joomla! Realtime Bootstrap 2 naar Bootstrap 3 Bootstrap 3 .css en .js wordt door de template ingeladen en Joomla! produceert (zonder template overrides) BS2 code Bootstrap 2
 span1,span2,span3,span4,span5,span6,span7,span8,span9,span10,span11,span1 2,offset1,offset2,offset3,offset4,offset5,offset6,offset7,offset8,offset9,offset10, offset11,offset12,row-fluid,container-fluid,hero-unit,img-polaroid Bootstrap 3
 col-sm-1,col-sm-2,col-sm-3,col-sm-4,col-sm-5,col-sm-6,col-sm-7,col- sm-8,col-sm-9,col-sm-10,col-sm-11,col-sm-12,col-sm-sm-offset-1,col-sm- offset-2,col-sm-offset-3,col-sm-offset-4,col-sm-offset-5,col-sm-offset-6,col- sm-offset-7,col-sm-offset-8,col-sm-offset-9,col-sm-offset-10,col-sm- offset-11,col-sm-offset-12,row,container,jumbotron,img-thumbnail
  • 55. Bootstrap 3 in Joomla! Joomla! Powertools • NoNumber - ReReplacer
 https://www.nonumber.nl/extensions/rereplacer • zoek Bootstrap 2 code • vervang door Bootstrap 3 code • activeer de opties "Treat as List" en "Word Search” • tip beschreven door Philip Locke (Joostrap.com)
 http://www.joostrap.com/support/tutorials-videos/206- boostrap2-to-bootstrap3-super-easy-update
  • 56. Bootstrap 3 in Joomla! Bootstrap 3 template bouwen net zo makkelijk als elk ander template bouwen. maar met LESS en veel overrides voor Bootstrap 3
  • 57. Bootstrap 3 in Joomla! pagina 76 en verder https://github.com/hans2103/JTFS
  • 58. Bootstrap 3 in Joomla!
  • 59. Bootstrap 3 in Joomla! Dank voor de aandacht
  • 60. Bootstrap 3 in Joomla! Dank voor de aandacht vragen? @hans2103 slideshare.net/hans2103