SlideShare ist ein Scribd-Unternehmen logo
1 von 38
Downloaden Sie, um offline zu lesen
CREATE YOUR OWN
STATIC SITE GENERATOR
WITH GRUNT
Future of Web Design London 2015 http://internets.io/grunt-
slide-deck
ABOUT ME
Co-owner of Copter Labs
I have 2 cats
   
I work with awesome clients, startups, and agencies to help them
build really cool stuff.
REPETITIVE TASKS ARE THE WORST!
THEY ARE A TIME SUCK
THEY ARE SUPER ANNOYING
STOP POKING ME
WHAT IS A TASK RUNNER?
A TASK RUNNER IS A TOOL THAT ALLOWS YOU TO
STREAMLINE YOUR WEB DEVELOPMENT PROCESS.
WHY DO WE NEED A TASK RUNNER?
BECAUSE AUTOMATION
BECAUSE I'M LAZY
BECAUSE I'M NOT PERFECT
WHAT KINDS OF THINGS CAN WE DO WITH
TASK AUTOMATION?
WHAT KINDS OF THINGS CAN WE DO WITH
TASK AUTOMATION? (CONT'D)
LIVERELOAD, LESS, SASS, MINIFY JAVASCRIPT, MINIFY CSS,
COMPRESS IMAGES, AUTOPREFIXR, MINIFY HTML, MINIFY
SVG, WIREDEP, FIND / REPLACE TEXT, JADE, MARKDOWN,
DEPLOY TO STAGING, DEPLOY TO PRODUCTION, LINT CSS AND
JAVASCRIPT, SOURCEMAPS, CONCATENATE FILES
ALL OF THE THINGS!
WHAT IS GRUNT?
GRUNT IS A TASK-BASED COMMAND LINE BUILD TOOL FOR
WEB DEVELOPMENT PROJECTS.
SETTING UP YOUR GRUNT PROJECT
Make sure you have npmset up, the Node.js package manager.
Create a new project folder and type the following:
$echo"{}">package.json
$npminstall-ggrunt--save-dev
$touchGruntfile.js
Open up Gruntfile.jsand write:
module.exports=function(grunt){
//Projectconfiguration.
grunt.initConfig({
});
};
SIMPLE GRUNT HTTP SERVER
$npminstallgrunt-contrib-watch--save-dev
$npminstallgrunt-contrib-connect--save-dev
$echo'HelloWorld!'>index.html
In Gruntfile.js, edit the grunt.initConfig()function
and add the following:
grunt.initConfig({
connect:{
server:{
options:{
open:true,
livereload:true
}
}
},
watch:{
}
});
SIMPLE GRUNT HTTP SERVER (CONT'D)
Now, towards the bottom of Gruntfile.js
but before the closing };add:
//Thesepluginsprovidenecessarytasks.
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.registerTask('serve',['connect','watch']);
//DefaultTask
grunt.registerTask('default','serve');
You can now type gruntin your terminal, and a browser
window will pop up and go to the url http://0.0.0.0:8000.
Theserveronlyrunsaslongasgruntisrunning,thereforewerunthewatchtask
tonotonlywatchforfilechanges,butalsotokeeptheserveralive.
CONCATENATE AND MINIFY JAVASCRIPT
Type the following into your terminal at your project's root:
$npminstallgrunt-contrib-uglify--save-dev
Add the following to the bottom of your Gruntfile.jswhere
you have your grunt.loadNpmTasksfunctions listed:
grunt.loadNpmTasks('grunt-contrib-uglify');
CONCATENATE AND MINIFY JAVASCRIPT
(CONT'D)
In the grunt.initConfigfunction, in between the last line of
the connectconfiguration, and the first line of the watch
configuration:
uglify:{
js:{
files:{
'assets/js/main.min.js':'assets/js/main.js'
}
}
},
Warning: Be aware of your commas!
COMPILE CSS FROM A PRE-PROCESSOR
In your terminal in the project's root, type:
$npminstallgrunt-contrib-less--save-dev
Add the following to the bottom of your Gruntfile.jswhere
you have your grunt.loadNpmTasksfunctions listed:
$grunt.loadNpmTasks('grunt-contrib-less');
COMPILE CSS FROM A PRE-PROCESSOR
(CONT'D)
Add this to the grunt.initConfigfunction, in between the
last line of the uglifyconfiguration, and the first line of the
watchconfiguration:
less:{
style:{
files:{
'assets/css/main.min.css':'assets/less/main.less'
}
}
},
AUTOPREFIXR
In your terminal in the project's root, type:
$npminstallgrunt-autoprefixer--save-dev
Add the following to the bottom of your Gruntfile.jswhere
you have your grunt.loadNpmTasksfunctions listed:
$grunt.loadNpmTasks('grunt-autoprefixer');
AUTOPREFIXR (CONT'D)
Add this to the grunt.initConfigfunction, in between the
last line of the lessconfiguration, and the first line of the watch
configuration:
autoprefixer:{
main:{
src:'assets/css/main.min.css',
},
},
SETTING UP THE WATCH TASK
Add the following code inside your watchconfiguration:
watch:{
js:{
files:['assets/js/*.js'],
tasks:['uglify:js'],
options:{
livereload:true,
}
},
css:{
files:['assets/less/*.less'],
tasks:['less:style','autoprefixer:main'],
options:{
livereload:true,
}
},
}
InorderforLivereloadtowork,youhavetoinstalltheLivereload( )browserplugin.http://livereload.com/
USING JADE TEMPLATES WITH JSON DATA
In your terminal in the project's root, type:
$npminstallgrunt-contrib-jade--save-dev
Add the following to the bottom of your Gruntfile.jswhere
you have your grunt.loadNpmTasksfunctions listed:
$grunt.loadNpmTasks('grunt-contrib-jade');
USING JADE TEMPLATES WITH JSON DATA
(CONT'D)
jade:{
dist:{
options:{
data:function(){
return{
blog_posts:require(__dirname+'/assets/data/blog-posts.json'
}
}
},
files:{
"index.html":"assets/templates/index.jade",
"blog-post.html":"assets/templates/blog-post.jade"
}
}
},
USING JADE TEMPLATES WITH JSON DATA
(CONT'D)
{
"BlogPostTitle1":{
"source":"http://nicenicejpg.com/200/200",
"description":"Loremipsumdolorsitamet,consecteturadipisicingelit."
"filename":"blog-post-title-1"
},
"BlogPostTitle2":{
"source":"http://fillmurray.com/200/200",
"description":"Perspiciatisquasivelitsequifugavoluptatumassumendaquae."
"filename":"blog-post-title-2"
},
"BlogPostTitle3":{
"source":"http://placecage.com/200/200",
"description":"Adipiscimolestiassitomnisobcaecatianimicupiditateet."
"filename":"blog-post-title-3"
}
}
USING MARKDOWN FILES FOR SITE CONTENT
In your terminal in the project's root, type:
$npminstallgrunt-markdown--save-dev
Add the following to the bottom of your Gruntfile.jswhere
you have your grunt.loadNpmTasksfunctions listed:
$grunt.loadNpmTasks('grunt-markdown');
USING MARKDOWN FILES FOR SITE CONTENT
(CONT'D)
markdown:{
home:{
files:{"index.html":"assets/data/content.md"},
options:{template:'index.html'}
},
blog:{
files:[{
expand:true,
cwd:'assets/data/blog-posts/',
src:'*.md',
dest:'blog-posts/',
ext:'.html'
}],
options:{template:'blog-post.html'}
}
},
USING MARKDOWN FILES FOR SITE CONTENT
(CONT'D)
File: assets/data/blog-posts/blog-post-title-1.md
#BlogPostTitle1
<imgsrc="http://nicenicejpg.com/600/300">
Loremipsumdolorsitamet,consecteturadipisicingelit,seddoeiusmod
incididuntutlaboreetdoloremagnaaliqua.Utenimadminimveniam,quis
exercitationullamcolaborisnisiutaliquipexeacommodoconsequat.Duis
iruredolorinreprehenderitinvoluptatevelitessecillumdoloreeu
nullapariatur.Excepteursintoccaecatcupidatatnonproident.
JSON DATA & MARKDOWN WATCH TASK
data:{
files:[
'assets/templates/**/*.jade',
'assets/data/**/*.json',
'assets/data/**/*.md'
],
tasks:['jade','markdown'],
options:{
livereload:true,
}
}
THE DEFAULT TASK, EVERYTHING AT ONCE
grunt.registerTask('serve',[
'uglify:js',
'less:style',
'autoprefixer:main',
'jade',
'markdown',
'connect',
'watch'
]);
//Defaulttask.
grunt.registerTask('default','serve');
9 PROBLEMS ONLY WEB 
DEVELOPERS WILL UNDERSTAND
LONG, BORING JAVASCRIPT FILES
SOLVED WITH UGLIFY
$npminstallgrunt-contrib-uglify--save-dev
Source:https://www.npmjs.com/package/grunt-contrib-uglify
DIRTY FILES AND FOLDERS
SOLVED WITH CLEAN
$npminstallgrunt-contrib-clean--save-dev
https://www.npmjs.com/package/grunt-contrib-clean
CODE IS BROKEN, WHY?? :(
SOLVED WITH JSHINT
$npminstallgrunt-contrib-jshint--save-dev
Source:https://www.npmjs.com/package/grunt-contrib-jshint
I HAVE TO COPY... EVERYTHING
SOLVED WITH COPY
$npminstallgrunt-contrib-copy--save-dev
Source:https://www.npmjs.com/package/grunt-contrib-copy
I HAVE TOO MANY FILES!
SOLVED WITH CONCAT
$npminstallgrunt-contrib-concat--save-dev
Source:https://www.npmjs.com/package/grunt-contrib-concat
MY PICTURES DOWNLOAD SLOWSIES :(
SOLVED WITH IMAGEMIN
$npminstallgrunt-contrib-imagemin--save-dev
Source:https://www.npmjs.com/package/grunt-contrib-imagemin
I HAVE TOO MANY DEPENDENCIES!
SOLVED WITH WIREDEP
$npminstallgrunt-wiredep--save-dev
Source:https://www.npmjs.com/package/grunt-wiredep
MY SITE LOOKS WEIRD. WHY. WHY!
SOLVED WITH CSSLINT
$npminstallgrunt-contrib-csslint--save-dev
Source:https://www.npmjs.com/package/grunt-contrib-csslint
ALL MY LINKS ARE WRONG!
SOLVED WITH REPLACE
$npminstallgrunt-replace--save-dev
Source:https://www.npmjs.com/package/grunt-replace
RECAP
1. If you're not automating your development process, you're
going to have a bad time.
2. It's real easy to automate things with Grunt.
3. Web designers are people too, with real problems and real
feelings. Let Grunt help you find your happy place.
THANK YOU!
FOLLOW ME ON THE TWITTER: @THEDOTMACK
FOLLOW MY CATS ON INSTAGRAM: @THEDAILYTIM
LIKE COPTER LABS ON FACEBOOK:
HTTP://FACEBOOK.COM/COPTERLABS
CALL YOUR MOM, SHE MISSES YOU

Weitere ähnliche Inhalte

Mehr von Future Insights

Exploring Open Date with BigQuery: Jenny Tong
Exploring Open Date with BigQuery: Jenny TongExploring Open Date with BigQuery: Jenny Tong
Exploring Open Date with BigQuery: Jenny TongFuture Insights
 
A Universal Theory of Everything, Christopher Murphy
A Universal Theory of Everything, Christopher MurphyA Universal Theory of Everything, Christopher Murphy
A Universal Theory of Everything, Christopher MurphyFuture Insights
 
Horizon Interactive Awards, Mike Sauce & Jeff Jahn
Horizon Interactive Awards, Mike Sauce & Jeff JahnHorizon Interactive Awards, Mike Sauce & Jeff Jahn
Horizon Interactive Awards, Mike Sauce & Jeff JahnFuture Insights
 
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...Future Insights
 
Front End Development Transformation at Scale, Damon Deaner
Front End Development Transformation at Scale, Damon DeanerFront End Development Transformation at Scale, Damon Deaner
Front End Development Transformation at Scale, Damon DeanerFuture Insights
 
Structuring Data from Unstructured Things. Sean Lorenz
Structuring Data from Unstructured Things. Sean LorenzStructuring Data from Unstructured Things. Sean Lorenz
Structuring Data from Unstructured Things. Sean LorenzFuture Insights
 
Cinematic UX, Brad Weaver
Cinematic UX, Brad WeaverCinematic UX, Brad Weaver
Cinematic UX, Brad WeaverFuture Insights
 
The Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookThe Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookFuture Insights
 
Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Designing an Enterprise CSS Framework is Hard, Stephanie RewisDesigning an Enterprise CSS Framework is Hard, Stephanie Rewis
Designing an Enterprise CSS Framework is Hard, Stephanie RewisFuture Insights
 
Accessibility Is More Than What Lies In The Code, Jennison Asuncion
Accessibility Is More Than What Lies In The Code, Jennison AsuncionAccessibility Is More Than What Lies In The Code, Jennison Asuncion
Accessibility Is More Than What Lies In The Code, Jennison AsuncionFuture Insights
 
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...Future Insights
 
Designing for Dyslexia, Andrew Zusman
Designing for Dyslexia, Andrew ZusmanDesigning for Dyslexia, Andrew Zusman
Designing for Dyslexia, Andrew ZusmanFuture Insights
 
Beyond Measure, Erika Hall
Beyond Measure, Erika HallBeyond Measure, Erika Hall
Beyond Measure, Erika HallFuture Insights
 
Real Artists Ship, Haraldur Thorleifsson
Real Artists Ship, Haraldur ThorleifssonReal Artists Ship, Haraldur Thorleifsson
Real Artists Ship, Haraldur ThorleifssonFuture Insights
 
Ok Computer. Peter Gasston
Ok Computer. Peter GasstonOk Computer. Peter Gasston
Ok Computer. Peter GasstonFuture Insights
 
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi Kaya
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi KayaDigital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi Kaya
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi KayaFuture Insights
 
How to Build Your Future in the Internet of Things Economy. Jennifer Riggins
How to Build Your Future in the Internet of Things Economy. Jennifer RigginsHow to Build Your Future in the Internet of Things Economy. Jennifer Riggins
How to Build Your Future in the Internet of Things Economy. Jennifer RigginsFuture Insights
 
The Wordpress Game Changer. Jenny Wong
The Wordpress Game Changer. Jenny WongThe Wordpress Game Changer. Jenny Wong
The Wordpress Game Changer. Jenny WongFuture Insights
 
A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...
A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...
A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...Future Insights
 
Angular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd MottoAngular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd MottoFuture Insights
 

Mehr von Future Insights (20)

Exploring Open Date with BigQuery: Jenny Tong
Exploring Open Date with BigQuery: Jenny TongExploring Open Date with BigQuery: Jenny Tong
Exploring Open Date with BigQuery: Jenny Tong
 
A Universal Theory of Everything, Christopher Murphy
A Universal Theory of Everything, Christopher MurphyA Universal Theory of Everything, Christopher Murphy
A Universal Theory of Everything, Christopher Murphy
 
Horizon Interactive Awards, Mike Sauce & Jeff Jahn
Horizon Interactive Awards, Mike Sauce & Jeff JahnHorizon Interactive Awards, Mike Sauce & Jeff Jahn
Horizon Interactive Awards, Mike Sauce & Jeff Jahn
 
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...
 
Front End Development Transformation at Scale, Damon Deaner
Front End Development Transformation at Scale, Damon DeanerFront End Development Transformation at Scale, Damon Deaner
Front End Development Transformation at Scale, Damon Deaner
 
Structuring Data from Unstructured Things. Sean Lorenz
Structuring Data from Unstructured Things. Sean LorenzStructuring Data from Unstructured Things. Sean Lorenz
Structuring Data from Unstructured Things. Sean Lorenz
 
Cinematic UX, Brad Weaver
Cinematic UX, Brad WeaverCinematic UX, Brad Weaver
Cinematic UX, Brad Weaver
 
The Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookThe Future is Modular, Jonathan Snook
The Future is Modular, Jonathan Snook
 
Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Designing an Enterprise CSS Framework is Hard, Stephanie RewisDesigning an Enterprise CSS Framework is Hard, Stephanie Rewis
Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
 
Accessibility Is More Than What Lies In The Code, Jennison Asuncion
Accessibility Is More Than What Lies In The Code, Jennison AsuncionAccessibility Is More Than What Lies In The Code, Jennison Asuncion
Accessibility Is More Than What Lies In The Code, Jennison Asuncion
 
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...
 
Designing for Dyslexia, Andrew Zusman
Designing for Dyslexia, Andrew ZusmanDesigning for Dyslexia, Andrew Zusman
Designing for Dyslexia, Andrew Zusman
 
Beyond Measure, Erika Hall
Beyond Measure, Erika HallBeyond Measure, Erika Hall
Beyond Measure, Erika Hall
 
Real Artists Ship, Haraldur Thorleifsson
Real Artists Ship, Haraldur ThorleifssonReal Artists Ship, Haraldur Thorleifsson
Real Artists Ship, Haraldur Thorleifsson
 
Ok Computer. Peter Gasston
Ok Computer. Peter GasstonOk Computer. Peter Gasston
Ok Computer. Peter Gasston
 
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi Kaya
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi KayaDigital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi Kaya
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi Kaya
 
How to Build Your Future in the Internet of Things Economy. Jennifer Riggins
How to Build Your Future in the Internet of Things Economy. Jennifer RigginsHow to Build Your Future in the Internet of Things Economy. Jennifer Riggins
How to Build Your Future in the Internet of Things Economy. Jennifer Riggins
 
The Wordpress Game Changer. Jenny Wong
The Wordpress Game Changer. Jenny WongThe Wordpress Game Changer. Jenny Wong
The Wordpress Game Changer. Jenny Wong
 
A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...
A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...
A behind the-scenes look at cross-browser testing with web driver, Adrian Bat...
 
Angular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd MottoAngular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd Motto
 

Kürzlich hochgeladen

Government polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcdGovernment polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcdshivubhavv
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️soniya singh
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...Call Girls in Nagpur High Profile
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxjeswinjees
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...sonalitrivedi431
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...RitikaRoy32
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdftbatkhuu1
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...BarusRa
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
Pastel Portfolio _ by Slidesgo.pptx. Xxx
Pastel Portfolio _ by Slidesgo.pptx. XxxPastel Portfolio _ by Slidesgo.pptx. Xxx
Pastel Portfolio _ by Slidesgo.pptx. XxxSegundoManuelFaichin1
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneLukeKholes
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceanilsa9823
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...Delhi Call girls
 
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...Delhi Call girls
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxjanettecruzeiro1
 

Kürzlich hochgeladen (20)

Government polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcdGovernment polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcd
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptx
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
Pastel Portfolio _ by Slidesgo.pptx. Xxx
Pastel Portfolio _ by Slidesgo.pptx. XxxPastel Portfolio _ by Slidesgo.pptx. Xxx
Pastel Portfolio _ by Slidesgo.pptx. Xxx
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 

Create Your Own Static Site Generator with Grunt (Alex Newman)