SlideShare a Scribd company logo
Rapid Application
Development with the PODS
Framework
Nick Batik
@Nick_Batik
RAPID APPLICATION
DEVELOPMENT (RAD)
Purpose
• Give your client a Close-Enough idea
• Uncover potential technical challenges
• The Usual
Approach:
Wireframing
RAD – not a Wireframe,
A Proof-of-Concept Prototype
A Case for RAD
• eCommerce
• Membership sites
• Untested plugins or
tools
• Sales funnels
• Complex user
• Learning Management
Systems
• API / 3rd party
integrations
• Unsophisticated clients
• Everything ?
CASE STUDY
https://my.studiopress.com/themes/agent-focused/#demo-full
You know EXACTLY the theme you want to
use:
THE PROBLEM:
• It doesn’t look like a farm-to-table restaurant
In the next half-hour we are going to:
• Build Custom Post Types (CPTs) for
• Produce Items
• How to grow them in your garden
• Recipes to use them
• Menu to feature them
Then we will:
• Populate the CPTs with appropriate
images and text
• Link all the data fields for each produce
items
• gardening page
• recipes
• menu
Finally we will:
• Style the theme with archive and single
pages for all the CPTs
• Link everything through featured
images on the home page
NOTE:
• The code is in my GitHub
• The slides are in SlideShare
• All the links are on the Resources page at
the end
• Everything here is designed to be doable
LIVE DEMO
STEP 1: CONFIG PODS
• https://wcdfwdemo.wpengine.com
STEP 2: MOCK DATA
Data fields are identified during Client
Discovery
• Mockaroo
• ConvertCSV
• Faker
• https://loripsum.net/
STEP 3: MOCK IMAGES
Images should match CPTs
• Pixabay
• MediaWiki
• Pexels
STEP 4: NOW THE CODE
• Wordcamp_DFW_Rapid_Prototype
STEP 5: A LOOK AT PODS
• Demo - Making a Test POD
STEP 5: A LOOK AT PODS
• Demo - Loading PODS JSON
STEP 6: PODS TEMPLATES
• Home Featured Menu Item
• Home Page Gardening
• Home Page Ingredients
• Home Page Recipes
• Growing Ingredients
• Produce List
• Recipe Links
STEP 6: PODS TEMPLATE
Home Featured Menu Item:
<a href="{@permalink}" title="{@post_title}"><img
src="{@post_thumbnail_url.large-featured-image}"
width="33%"></a>
STEP 6: PODS TEMPLATE
Home Page Gardening:
<article>
<div style="float:left; width:40%;margin:0 5%">
<h1><a href="{@post_type}">Successful
Gardening</a></h1>
<p>Lorem ipsum…</p>
</div>
<div style="float:right; width:50%">
<a href="{@post_type}">{@post_thumbnail.full}</a>
</div>
</article>
STEP 6: PODS TEMPLATE
Home Page Ingredients:
<article>
<div style="float:left; width:50%">
<a href="{@post_type}">{@post_thumbnail.full}</a>
</div>
<div style="float:right; width:40%;margin:0 5%">
<h1><a href="{@post_type}">Freshest Produce</a></h1>
<p>Lorem ipsum…</p>
</div>
</article>
STEP 6: PODS TEMPLATE
Home Page Recipes:
<article>
<div style="float:left; width:40%;margin:0 5%">
<h1><a href="{@post_type}">Tastiest Recipes</a></h1>
<p>Lorem ipsum…</p>
</div>
<div style="float:right; width:50%">
<a href="{@post_type}">{@post_thumbnail.full}</a>
</div>
</article>
STEP 6: PODS TEMPLATE:
Growing Ingredients[if ingredients]
<article>
<header>
<h3>Learn About Growing and Using These Ingredients</h3>
</header>
<div class="produce-links">
<ul>
[each ingredients]
<li>
<a href="{@permalink}" title="{@post_title}"><span
style="vertical-align: text-
top;">{@ingredients.post_thumbnail}</span>{@ingredients.post_titl
e}</a>
</li>
[/each]
</ul>
</div>
</article>
[/if]
STEP 6: PODS TEMPLATE:
Produce List pt. 1
[if gardening]
<article>
<header>
<h3>Learn More About Growing {@gardening.post_title}</h3>
</header>
<div class="produce-links">
<ul>
[each gardening]
<li>
<a href="{@permalink}"
title="{@post_title}">{@post_title}</a>
</li>
[/each]
</ul>
</div>
</article>
[/if]
STEP 6: PODS TEMPLATE:
Produce List pt. 2
[if recipe]
<article>
<header>
<h3>Recipes Featuring {@gardening.post_title}</h3>
</header>
<div class="produce-links">
<ul>
[each recipe]
<li>
<a href=“{@permalink}"
title="{@post_title}">{@post_title}</a>
</li>
[/each]
</ul>
</div>
</article>
[/if]
STEP 6: PODS TEMPLATE:
Recipe Links pt. 1
[if recipe]
<article style="border:1px solid green; padding:1em">
<header>
<h3>See Our Related Recipes</h3>
</header>
<div class="produce-links">
<ul>
[each recipe]
<li>
<a href="{@permalink}"
title="{@post_title}">{@post_title}</a>
</li>
[/each]
</ul>
</div>
</article>
[/if]
STEP 6: PODS TEMPLATE:
Recipe Links pt. 2
[if cooking_ingredient]
<article style="border:1px solid green; padding:1em">
<header>
<h3>Learn More About {@cooking_ingredient.post_title}</h3>
</header>
<div class="produce-links">
<ul>
[each cooking_ingredient]
<li>
<a href="{@permalink}"
title="{@post_title}">{@post_title}</a>
</li>
[/each]
</ul>
</div>
</article>
[/if]
STEP 7: CUSTOMIZE
THEME
• Site Identity
• Front Page Image
• Color (#00aa02)
• Menus
STEP 7: CUSTOMIZER
Widgets
Front Page 1:
<h2>
Welcome to Farm-to-Table<br />Restaurant
</h2>
STEP 7: CUSTOMIZER
Widgets
Home Featured Menu Item:
<div style="text-align: center; color:
#fff; margin-top: 2em;">
<h1><strong>Today's Menu</strong></h1>
</div>
PODS List (3)
Recipe : Home Featured Menu Item
STEP 7: CUSTOMIZER
Widgets
Front Page 4:
<h2 style="text-align: center;margin-
top:2em">Become part of our community</h2>
STEP 7: CUSTOMIZER
Widgets
Front Page 5:
PODS Single
- Gardening : {slug} : Home Page Gardening
PODS Single
- Ingredients : {slug} : Home Page Ingredients
PODS Single
- Recipes : {slug} : Home Page Recipes
STEP 8: CHECK IT OUT
Go look at your Prototype:
RESOURCES
• GitHub Rapid Prototype
• Mockaroo
• ConvertCSV
• Faker
• https://loripsum.net/
• Pixabay
• MediaWiki
• Pexels
• [pods] shortcode
• #2: Using Pods Templates Part 1
• Template Tags in Pods Templates
• Using Magic Tags
• Pods How-Tos Sceencasts
Nick Batik
@nick_batik
512-879-8658

More Related Content

What's hot

Optimize URL for Performance
Optimize URL for PerformanceOptimize URL for Performance
Optimize URL for Performance
Morgan Cheng
 

What's hot (20)

Driving SharePoint End-User Adoption: Usability and Performance
Driving SharePoint End-User Adoption: Usability and PerformanceDriving SharePoint End-User Adoption: Usability and Performance
Driving SharePoint End-User Adoption: Usability and Performance
 
Word Camp Seattle
Word Camp SeattleWord Camp Seattle
Word Camp Seattle
 
Use Google Docs to monitor SEO by pulling in Google Analytics #BrightonSEO
Use Google Docs to monitor SEO by pulling in Google Analytics #BrightonSEOUse Google Docs to monitor SEO by pulling in Google Analytics #BrightonSEO
Use Google Docs to monitor SEO by pulling in Google Analytics #BrightonSEO
 
Optimize URL for Performance
Optimize URL for PerformanceOptimize URL for Performance
Optimize URL for Performance
 
How to create user friendly, engaging share point sites (no coding needed!)
How to create user friendly, engaging share point sites (no coding needed!)How to create user friendly, engaging share point sites (no coding needed!)
How to create user friendly, engaging share point sites (no coding needed!)
 
Stupid Website Redesign Mistakes Your Company Will Make
Stupid Website Redesign Mistakes Your Company Will MakeStupid Website Redesign Mistakes Your Company Will Make
Stupid Website Redesign Mistakes Your Company Will Make
 
{PubCon Vegas 2019} The Business Value of Tech SEO
{PubCon Vegas 2019} The Business Value of Tech SEO {PubCon Vegas 2019} The Business Value of Tech SEO
{PubCon Vegas 2019} The Business Value of Tech SEO
 
2 Seconds is the New Slow - Chris Simmance - under2
2 Seconds is the New Slow -  Chris Simmance - under22 Seconds is the New Slow -  Chris Simmance - under2
2 Seconds is the New Slow - Chris Simmance - under2
 
Search Engines and Flash: Secrets, Tricks, and Black Magic
Search Engines and Flash: Secrets, Tricks, and Black MagicSearch Engines and Flash: Secrets, Tricks, and Black Magic
Search Engines and Flash: Secrets, Tricks, and Black Magic
 
A Deep Dive Into SEO Tactics For Modern Javascript Frameworks
A Deep Dive Into SEO Tactics For Modern Javascript FrameworksA Deep Dive Into SEO Tactics For Modern Javascript Frameworks
A Deep Dive Into SEO Tactics For Modern Javascript Frameworks
 
June 2016 - Philadelphia SEO Grail Presentation
June 2016 - Philadelphia SEO Grail PresentationJune 2016 - Philadelphia SEO Grail Presentation
June 2016 - Philadelphia SEO Grail Presentation
 
HOW TO GET A POTITION IN THE FIRST PAGE OF GOOGLE’S SEARCH RESULTS
HOW TO GET A POTITION IN THE FIRST PAGE OF GOOGLE’S SEARCH RESULTSHOW TO GET A POTITION IN THE FIRST PAGE OF GOOGLE’S SEARCH RESULTS
HOW TO GET A POTITION IN THE FIRST PAGE OF GOOGLE’S SEARCH RESULTS
 
SEO Meets Automation
SEO Meets AutomationSEO Meets Automation
SEO Meets Automation
 
SharePoint Usability and Design Tips for Non Designers
SharePoint Usability and Design Tips for Non DesignersSharePoint Usability and Design Tips for Non Designers
SharePoint Usability and Design Tips for Non Designers
 
Why Analytics important for any business - EBriks Infotech
 Why Analytics important for any business - EBriks Infotech Why Analytics important for any business - EBriks Infotech
Why Analytics important for any business - EBriks Infotech
 
Hreflang - why and how and why not for International SEO
Hreflang - why and how and why not for International SEOHreflang - why and how and why not for International SEO
Hreflang - why and how and why not for International SEO
 
How to build simple web apps to automate your SEO tasks - BrightonSEO Spring ...
How to build simple web apps to automate your SEO tasks - BrightonSEO Spring ...How to build simple web apps to automate your SEO tasks - BrightonSEO Spring ...
How to build simple web apps to automate your SEO tasks - BrightonSEO Spring ...
 
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
How to scale SEO work NOBODY wants to do (including your competitors) to rapi...
 
Web design checklist
Web design checklistWeb design checklist
Web design checklist
 
How to Fix the 25 Most Common Library Website Problems (December 2017)
How to Fix the 25 Most Common Library Website Problems (December 2017)How to Fix the 25 Most Common Library Website Problems (December 2017)
How to Fix the 25 Most Common Library Website Problems (December 2017)
 

Similar to Rapid application development

Creating websites and leading librarians to a new level of project engagement
Creating websites and leading librarians to a new level of project engagementCreating websites and leading librarians to a new level of project engagement
Creating websites and leading librarians to a new level of project engagement
Marina Georgieva
 
Week 12 - Search Engine Optimization
Week 12 -  Search Engine OptimizationWeek 12 -  Search Engine Optimization
Week 12 - Search Engine Optimization
henri_makembe
 

Similar to Rapid application development (20)

Alice Phieu - WordPress For Beginners
Alice Phieu - WordPress For BeginnersAlice Phieu - WordPress For Beginners
Alice Phieu - WordPress For Beginners
 
Faster WordPress Workflows
Faster WordPress WorkflowsFaster WordPress Workflows
Faster WordPress Workflows
 
Web Projects: From Theory To Practice
Web Projects: From Theory To PracticeWeb Projects: From Theory To Practice
Web Projects: From Theory To Practice
 
"Paragraphs are more powerful than you can expect" from Vasily Jaremchuk for ...
"Paragraphs are more powerful than you can expect" from Vasily Jaremchuk for ..."Paragraphs are more powerful than you can expect" from Vasily Jaremchuk for ...
"Paragraphs are more powerful than you can expect" from Vasily Jaremchuk for ...
 
Introduction to WordPress Class 3
Introduction to WordPress Class 3Introduction to WordPress Class 3
Introduction to WordPress Class 3
 
Creating websites and leading librarians to a new level of project engagement
Creating websites and leading librarians to a new level of project engagementCreating websites and leading librarians to a new level of project engagement
Creating websites and leading librarians to a new level of project engagement
 
Extending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHPExtending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHP
 
Creating a Documentation Portal
Creating a Documentation PortalCreating a Documentation Portal
Creating a Documentation Portal
 
MongoDB.local Seattle 2019: MongoDB Stitch Tutorial
MongoDB.local Seattle 2019: MongoDB Stitch TutorialMongoDB.local Seattle 2019: MongoDB Stitch Tutorial
MongoDB.local Seattle 2019: MongoDB Stitch Tutorial
 
MongoDB.local Dallas 2019: MongoDB Stitch Tutorial
MongoDB.local Dallas 2019: MongoDB Stitch TutorialMongoDB.local Dallas 2019: MongoDB Stitch Tutorial
MongoDB.local Dallas 2019: MongoDB Stitch Tutorial
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
 
Killer word press-checklist
Killer word press-checklistKiller word press-checklist
Killer word press-checklist
 
MongoDB.local Atlanta: MongoDB Stitch Tutorial
MongoDB.local Atlanta: MongoDB Stitch TutorialMongoDB.local Atlanta: MongoDB Stitch Tutorial
MongoDB.local Atlanta: MongoDB Stitch Tutorial
 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
 
Week 12 - Search Engine Optimization
Week 12 -  Search Engine OptimizationWeek 12 -  Search Engine Optimization
Week 12 - Search Engine Optimization
 
Developing Complex WordPress Sites without Fear of Failure (with MVC)
Developing Complex WordPress Sites without Fear of Failure (with MVC)Developing Complex WordPress Sites without Fear of Failure (with MVC)
Developing Complex WordPress Sites without Fear of Failure (with MVC)
 
Wordpress is not just blog anymore
Wordpress is not just blog anymoreWordpress is not just blog anymore
Wordpress is not just blog anymore
 
From marketplace to WordPress - WordCamp Belfast
From marketplace to WordPress - WordCamp BelfastFrom marketplace to WordPress - WordCamp Belfast
From marketplace to WordPress - WordCamp Belfast
 
Optimizing The WordPress Admin For Users
Optimizing The WordPress Admin For UsersOptimizing The WordPress Admin For Users
Optimizing The WordPress Admin For Users
 

Recently uploaded

Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptxLiving-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
TristanJasperRamos
 
一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理
一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理
一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理
aagad
 
Article writing on excessive use of internet.pptx
Article writing on excessive use of internet.pptxArticle writing on excessive use of internet.pptx
Article writing on excessive use of internet.pptx
abhinandnam9997
 

Recently uploaded (12)

History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
 
The AI Powered Organization-Intro to AI-LAN.pdf
The AI Powered Organization-Intro to AI-LAN.pdfThe AI Powered Organization-Intro to AI-LAN.pdf
The AI Powered Organization-Intro to AI-LAN.pdf
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
 
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptxLiving-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
 
一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理
一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理
一比一原版UTS毕业证悉尼科技大学毕业证成绩单如何办理
 
ER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAEER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAE
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
 
Article writing on excessive use of internet.pptx
Article writing on excessive use of internet.pptxArticle writing on excessive use of internet.pptx
Article writing on excessive use of internet.pptx
 

Rapid application development

  • 1. Rapid Application Development with the PODS Framework Nick Batik @Nick_Batik
  • 2. RAPID APPLICATION DEVELOPMENT (RAD) Purpose • Give your client a Close-Enough idea • Uncover potential technical challenges
  • 4. RAD – not a Wireframe, A Proof-of-Concept Prototype
  • 5. A Case for RAD • eCommerce • Membership sites • Untested plugins or tools • Sales funnels • Complex user • Learning Management Systems • API / 3rd party integrations • Unsophisticated clients • Everything ?
  • 7.
  • 9. THE PROBLEM: • It doesn’t look like a farm-to-table restaurant
  • 10. In the next half-hour we are going to: • Build Custom Post Types (CPTs) for • Produce Items • How to grow them in your garden • Recipes to use them • Menu to feature them
  • 11. Then we will: • Populate the CPTs with appropriate images and text • Link all the data fields for each produce items • gardening page • recipes • menu
  • 12. Finally we will: • Style the theme with archive and single pages for all the CPTs • Link everything through featured images on the home page
  • 13. NOTE: • The code is in my GitHub • The slides are in SlideShare • All the links are on the Resources page at the end • Everything here is designed to be doable
  • 15. STEP 1: CONFIG PODS • https://wcdfwdemo.wpengine.com
  • 16. STEP 2: MOCK DATA Data fields are identified during Client Discovery • Mockaroo • ConvertCSV • Faker • https://loripsum.net/
  • 17. STEP 3: MOCK IMAGES Images should match CPTs • Pixabay • MediaWiki • Pexels
  • 18. STEP 4: NOW THE CODE • Wordcamp_DFW_Rapid_Prototype
  • 19. STEP 5: A LOOK AT PODS • Demo - Making a Test POD
  • 20. STEP 5: A LOOK AT PODS • Demo - Loading PODS JSON
  • 21. STEP 6: PODS TEMPLATES • Home Featured Menu Item • Home Page Gardening • Home Page Ingredients • Home Page Recipes • Growing Ingredients • Produce List • Recipe Links
  • 22. STEP 6: PODS TEMPLATE Home Featured Menu Item: <a href="{@permalink}" title="{@post_title}"><img src="{@post_thumbnail_url.large-featured-image}" width="33%"></a>
  • 23. STEP 6: PODS TEMPLATE Home Page Gardening: <article> <div style="float:left; width:40%;margin:0 5%"> <h1><a href="{@post_type}">Successful Gardening</a></h1> <p>Lorem ipsum…</p> </div> <div style="float:right; width:50%"> <a href="{@post_type}">{@post_thumbnail.full}</a> </div> </article>
  • 24. STEP 6: PODS TEMPLATE Home Page Ingredients: <article> <div style="float:left; width:50%"> <a href="{@post_type}">{@post_thumbnail.full}</a> </div> <div style="float:right; width:40%;margin:0 5%"> <h1><a href="{@post_type}">Freshest Produce</a></h1> <p>Lorem ipsum…</p> </div> </article>
  • 25. STEP 6: PODS TEMPLATE Home Page Recipes: <article> <div style="float:left; width:40%;margin:0 5%"> <h1><a href="{@post_type}">Tastiest Recipes</a></h1> <p>Lorem ipsum…</p> </div> <div style="float:right; width:50%"> <a href="{@post_type}">{@post_thumbnail.full}</a> </div> </article>
  • 26. STEP 6: PODS TEMPLATE: Growing Ingredients[if ingredients] <article> <header> <h3>Learn About Growing and Using These Ingredients</h3> </header> <div class="produce-links"> <ul> [each ingredients] <li> <a href="{@permalink}" title="{@post_title}"><span style="vertical-align: text- top;">{@ingredients.post_thumbnail}</span>{@ingredients.post_titl e}</a> </li> [/each] </ul> </div> </article> [/if]
  • 27. STEP 6: PODS TEMPLATE: Produce List pt. 1 [if gardening] <article> <header> <h3>Learn More About Growing {@gardening.post_title}</h3> </header> <div class="produce-links"> <ul> [each gardening] <li> <a href="{@permalink}" title="{@post_title}">{@post_title}</a> </li> [/each] </ul> </div> </article> [/if]
  • 28. STEP 6: PODS TEMPLATE: Produce List pt. 2 [if recipe] <article> <header> <h3>Recipes Featuring {@gardening.post_title}</h3> </header> <div class="produce-links"> <ul> [each recipe] <li> <a href=“{@permalink}" title="{@post_title}">{@post_title}</a> </li> [/each] </ul> </div> </article> [/if]
  • 29. STEP 6: PODS TEMPLATE: Recipe Links pt. 1 [if recipe] <article style="border:1px solid green; padding:1em"> <header> <h3>See Our Related Recipes</h3> </header> <div class="produce-links"> <ul> [each recipe] <li> <a href="{@permalink}" title="{@post_title}">{@post_title}</a> </li> [/each] </ul> </div> </article> [/if]
  • 30. STEP 6: PODS TEMPLATE: Recipe Links pt. 2 [if cooking_ingredient] <article style="border:1px solid green; padding:1em"> <header> <h3>Learn More About {@cooking_ingredient.post_title}</h3> </header> <div class="produce-links"> <ul> [each cooking_ingredient] <li> <a href="{@permalink}" title="{@post_title}">{@post_title}</a> </li> [/each] </ul> </div> </article> [/if]
  • 31. STEP 7: CUSTOMIZE THEME • Site Identity • Front Page Image • Color (#00aa02) • Menus
  • 32. STEP 7: CUSTOMIZER Widgets Front Page 1: <h2> Welcome to Farm-to-Table<br />Restaurant </h2>
  • 33. STEP 7: CUSTOMIZER Widgets Home Featured Menu Item: <div style="text-align: center; color: #fff; margin-top: 2em;"> <h1><strong>Today's Menu</strong></h1> </div> PODS List (3) Recipe : Home Featured Menu Item
  • 34. STEP 7: CUSTOMIZER Widgets Front Page 4: <h2 style="text-align: center;margin- top:2em">Become part of our community</h2>
  • 35. STEP 7: CUSTOMIZER Widgets Front Page 5: PODS Single - Gardening : {slug} : Home Page Gardening PODS Single - Ingredients : {slug} : Home Page Ingredients PODS Single - Recipes : {slug} : Home Page Recipes
  • 36. STEP 8: CHECK IT OUT Go look at your Prototype:
  • 37. RESOURCES • GitHub Rapid Prototype • Mockaroo • ConvertCSV • Faker • https://loripsum.net/ • Pixabay • MediaWiki • Pexels • [pods] shortcode • #2: Using Pods Templates Part 1 • Template Tags in Pods Templates • Using Magic Tags • Pods How-Tos Sceencasts