├── .gitattributes
├── .gitignore
├── LICENSE
├── assets
├── final-theme
│ └── wpuniversity
│ │ ├── assets
│ │ ├── blocks
│ │ │ └── core
│ │ │ │ ├── column.css
│ │ │ │ ├── columns.css
│ │ │ │ ├── cover.css
│ │ │ │ ├── media-text.css
│ │ │ │ └── query.css
│ │ ├── fonts
│ │ │ ├── eb-garmond
│ │ │ │ ├── eb-garamond_italic_400.ttf
│ │ │ │ └── eb-garamond_normal_400.ttf
│ │ │ └── inter
│ │ │ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ │ │ └── LICENSE.txt
│ │ ├── images
│ │ │ ├── campus-1-1024x768.jpg
│ │ │ ├── campus-1.jpg
│ │ │ ├── campus-2.jpg
│ │ │ ├── campus-3.jpg
│ │ │ ├── lecture-hall-1.jpg
│ │ │ ├── lecture-hall-1024x768.jpg
│ │ │ └── library-books.jpg
│ │ └── js
│ │ │ ├── block-styles.js
│ │ │ ├── block-variations.js
│ │ │ └── client-side-filters.js
│ │ ├── functions.php
│ │ ├── parts
│ │ ├── comments.html
│ │ ├── footer.html
│ │ ├── header.html
│ │ └── post-meta.html
│ │ ├── patterns
│ │ ├── archive.php
│ │ ├── call-to-action.php
│ │ ├── footer-default.php
│ │ ├── front-page.php
│ │ ├── hidden-404.php
│ │ ├── hidden-comments.php
│ │ ├── hidden-no-results.php
│ │ ├── home.php
│ │ ├── index.php
│ │ ├── post-meta.php
│ │ ├── search.php
│ │ └── text-overlay-card.php
│ │ ├── readme.txt
│ │ ├── screenshot.png
│ │ ├── style.css
│ │ ├── styles
│ │ ├── aubergine.json
│ │ ├── block-out.json
│ │ ├── canary.json
│ │ ├── electric.json
│ │ ├── grapes.json
│ │ ├── marigold.json
│ │ ├── pilgrimage.json
│ │ ├── pitch.json
│ │ ├── sherbet.json
│ │ └── whisper.json
│ │ ├── templates
│ │ ├── 404.html
│ │ ├── archive.html
│ │ ├── blank.html
│ │ ├── front-page.html
│ │ ├── home.html
│ │ ├── index.html
│ │ ├── page.html
│ │ ├── search.html
│ │ └── single.html
│ │ └── theme.json
├── logos
│ ├── WordPress University - Logo.png
│ ├── WordPress University - Screenshot.png
│ └── WordPress University - Site Icon.png
├── photos
│ ├── campus-1.jpg
│ ├── campus-2.jpg
│ ├── campus-3.jpg
│ ├── graduation.jpg
│ ├── lecture-hall-1.jpg
│ ├── lecture-hall-2.jpg
│ ├── library-books.jpg
│ ├── library-stacks.jpg
│ ├── students-1.jpg
│ ├── students-2.jpg
│ ├── students-3.jpg
│ └── ultimate-frisbee.jpg
├── screenshots
│ └── wordpress-university-home.jpg
└── starter-content
│ ├── wordpress-university.zip
│ └── wordpressuniversity.content.xml
├── readme.md
└── steps
├── step-1
├── readme.md
└── theme
│ └── wpuniversity
│ ├── assets
│ └── fonts
│ │ ├── dm-sans
│ │ ├── DMSans-Bold-Italic.woff2
│ │ ├── DMSans-Bold.woff2
│ │ ├── DMSans-Regular-Italic.woff2
│ │ ├── DMSans-Regular.woff2
│ │ └── LICENSE.txt
│ │ ├── ibm-plex-mono
│ │ ├── IBMPlexMono-Bold.woff2
│ │ ├── IBMPlexMono-Italic.woff2
│ │ ├── IBMPlexMono-Light.woff2
│ │ ├── IBMPlexMono-Regular.woff2
│ │ └── OFL.txt
│ │ ├── inter
│ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ └── LICENSE.txt
│ │ └── source-serif-pro
│ │ ├── LICENSE.md
│ │ ├── SourceSerif4Variable-Italic.otf.woff2
│ │ ├── SourceSerif4Variable-Italic.ttf.woff2
│ │ ├── SourceSerif4Variable-Roman.otf.woff2
│ │ └── SourceSerif4Variable-Roman.ttf.woff2
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── post-meta.html
│ ├── patterns
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ └── post-meta.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── styles
│ ├── aubergine.json
│ ├── block-out.json
│ ├── canary.json
│ ├── electric.json
│ ├── grapes.json
│ ├── marigold.json
│ ├── pilgrimage.json
│ ├── pitch.json
│ ├── sherbet.json
│ └── whisper.json
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── blog-alternative.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-10
├── readme.md
└── theme
│ └── wpuniversity
│ ├── assets
│ ├── blocks
│ │ └── core
│ │ │ ├── column.css
│ │ │ ├── columns.css
│ │ │ ├── cover.css
│ │ │ ├── media-text.css
│ │ │ └── query.css
│ ├── fonts
│ │ ├── eb-garmond
│ │ │ ├── eb-garamond_italic_400.ttf
│ │ │ └── eb-garamond_normal_400.ttf
│ │ └── inter
│ │ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ │ └── LICENSE.txt
│ ├── images
│ │ ├── campus-1-1024x768.jpg
│ │ ├── campus-1.jpg
│ │ ├── campus-2.jpg
│ │ ├── campus-3.jpg
│ │ ├── lecture-hall-1.jpg
│ │ ├── lecture-hall-1024x768.jpg
│ │ └── library-books.jpg
│ └── js
│ │ ├── block-styles.js
│ │ └── block-variations.js
│ ├── functions.php
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ └── header.html
│ ├── patterns
│ ├── archive.php
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── front-page.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ ├── home.php
│ ├── index.php
│ ├── post-meta.php
│ ├── search.php
│ └── text-overlay-card.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── front-page.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-11
├── readme.md
└── theme
│ └── wpuniversity
│ ├── assets
│ ├── blocks
│ │ └── core
│ │ │ ├── column.css
│ │ │ ├── columns.css
│ │ │ ├── cover.css
│ │ │ ├── media-text.css
│ │ │ └── query.css
│ ├── fonts
│ │ ├── eb-garmond
│ │ │ ├── eb-garamond_italic_400.ttf
│ │ │ └── eb-garamond_normal_400.ttf
│ │ └── inter
│ │ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ │ └── LICENSE.txt
│ ├── images
│ │ ├── campus-1-1024x768.jpg
│ │ ├── campus-1.jpg
│ │ ├── campus-2.jpg
│ │ ├── campus-3.jpg
│ │ ├── lecture-hall-1.jpg
│ │ ├── lecture-hall-1024x768.jpg
│ │ └── library-books.jpg
│ └── js
│ │ ├── block-styles.js
│ │ └── block-variations.js
│ ├── functions.php
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ └── header.html
│ ├── patterns
│ ├── archive.php
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── front-page.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ ├── home.php
│ ├── index.php
│ ├── post-meta.php
│ ├── search.php
│ └── text-overlay-card.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── front-page.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-12
├── readme.md
└── theme
│ └── wpuniversity
│ ├── assets
│ ├── blocks
│ │ └── core
│ │ │ ├── column.css
│ │ │ ├── columns.css
│ │ │ ├── cover.css
│ │ │ ├── media-text.css
│ │ │ └── query.css
│ ├── fonts
│ │ ├── eb-garmond
│ │ │ ├── eb-garamond_italic_400.ttf
│ │ │ └── eb-garamond_normal_400.ttf
│ │ └── inter
│ │ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ │ └── LICENSE.txt
│ ├── images
│ │ ├── campus-1-1024x768.jpg
│ │ ├── campus-1.jpg
│ │ ├── campus-2.jpg
│ │ ├── campus-3.jpg
│ │ ├── lecture-hall-1.jpg
│ │ ├── lecture-hall-1024x768.jpg
│ │ └── library-books.jpg
│ └── js
│ │ ├── block-styles.js
│ │ ├── block-variations.js
│ │ └── client-side-filters.js
│ ├── functions.php
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ └── header.html
│ ├── patterns
│ ├── archive.php
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── front-page.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ ├── home.php
│ ├── index.php
│ ├── post-meta.php
│ ├── search.php
│ └── text-overlay-card.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── front-page.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-2
├── readme.md
└── theme
│ └── wpuniversity
│ ├── assets
│ └── fonts
│ │ ├── dm-sans
│ │ └── LICENSE.txt
│ │ ├── eb-garamond_italic_400.ttf
│ │ ├── eb-garamond_normal_400.ttf
│ │ ├── ibm-plex-mono
│ │ └── OFL.txt
│ │ ├── inter
│ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ └── LICENSE.txt
│ │ └── source-serif-pro
│ │ ├── LICENSE.md
│ │ ├── SourceSerif4Variable-Italic.otf.woff2
│ │ └── SourceSerif4Variable-Roman.otf.woff2
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── post-meta.html
│ ├── patterns
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ └── post-meta.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── styles
│ ├── aubergine.json
│ ├── block-out.json
│ ├── canary.json
│ ├── electric.json
│ ├── grapes.json
│ ├── marigold.json
│ ├── pilgrimage.json
│ ├── pitch.json
│ ├── sherbet.json
│ └── whisper.json
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── blog-alternative.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-3
├── readme.md
└── theme
│ └── wpuniversity
│ ├── assets
│ └── fonts
│ │ ├── eb-garamond
│ │ ├── eb-garamond_italic_400.ttf
│ │ └── eb-garamond_normal_400.ttf
│ │ ├── inter
│ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ └── LICENSE.txt
│ │ └── source-serif-pro
│ │ ├── LICENSE.md
│ │ ├── SourceSerif4Variable-Italic.otf.woff2
│ │ └── SourceSerif4Variable-Roman.otf.woff2
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── post-meta.html
│ ├── patterns
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ └── post-meta.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── styles
│ ├── aubergine.json
│ ├── block-out.json
│ ├── canary.json
│ ├── electric.json
│ ├── grapes.json
│ ├── marigold.json
│ ├── pilgrimage.json
│ ├── pitch.json
│ ├── sherbet.json
│ └── whisper.json
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── blog-alternative.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-4
├── readme.md
├── screenshots
│ ├── site-banner-composition.jpg
│ ├── site-banner.jpg
│ ├── site-footer-composition.jpg
│ ├── site-footer-mobile.jpg
│ ├── site-footer.jpg
│ ├── site-header-composition.jpg
│ └── site-header.jpg
└── theme
│ └── wpuniversity
│ ├── assets
│ └── fonts
│ │ ├── eb-garamond
│ │ ├── eb-garamond_italic_400.ttf
│ │ └── eb-garamond_normal_400.ttf
│ │ ├── inter
│ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ └── LICENSE.txt
│ │ └── source-serif-pro
│ │ ├── LICENSE.md
│ │ ├── SourceSerif4Variable-Italic.otf.woff2
│ │ └── SourceSerif4Variable-Roman.otf.woff2
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── post-meta.html
│ ├── patterns
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ └── post-meta.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── styles
│ ├── aubergine.json
│ ├── block-out.json
│ ├── canary.json
│ ├── electric.json
│ ├── grapes.json
│ ├── marigold.json
│ ├── pilgrimage.json
│ ├── pitch.json
│ ├── sherbet.json
│ └── whisper.json
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── blog-alternative.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-5
├── readme.md
├── screenshots
│ ├── query-loop-composition.jpg
│ └── query-loop.jpg
└── theme
│ └── wpuniversity
│ ├── assets
│ └── fonts
│ │ ├── eb-garamond
│ │ ├── eb-garamond_italic_400.ttf
│ │ └── eb-garamond_normal_400.ttf
│ │ ├── inter
│ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ └── LICENSE.txt
│ │ └── source-serif-pro
│ │ ├── LICENSE.md
│ │ ├── SourceSerif4Variable-Italic.otf.woff2
│ │ └── SourceSerif4Variable-Roman.otf.woff2
│ ├── functions.php
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── post-meta.html
│ ├── patterns
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ └── post-meta.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── styles
│ ├── aubergine.json
│ ├── block-out.json
│ ├── canary.json
│ ├── electric.json
│ ├── grapes.json
│ ├── marigold.json
│ ├── pilgrimage.json
│ ├── pitch.json
│ ├── sherbet.json
│ └── whisper.json
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── blog-alternative.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-6
├── readme.md
├── screenshots
│ └── text-overlay-card.jpg
└── theme
│ └── wpuniversity
│ ├── assets
│ ├── fonts
│ │ ├── eb-garamond
│ │ │ ├── eb-garamond_italic_400.ttf
│ │ │ └── eb-garamond_normal_400.ttf
│ │ ├── inter
│ │ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ │ └── LICENSE.txt
│ │ └── source-serif-pro
│ │ │ ├── LICENSE.md
│ │ │ ├── SourceSerif4Variable-Italic.otf.woff2
│ │ │ └── SourceSerif4Variable-Roman.otf.woff2
│ └── js
│ │ └── block-styles.js
│ ├── functions.php
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── post-meta.html
│ ├── patterns
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ └── post-meta.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── styles
│ ├── aubergine.json
│ ├── block-out.json
│ ├── canary.json
│ ├── electric.json
│ ├── grapes.json
│ ├── marigold.json
│ ├── pilgrimage.json
│ ├── pitch.json
│ ├── sherbet.json
│ └── whisper.json
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── blog-alternative.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-7
├── readme.md
└── theme
│ └── wpuniversity
│ ├── assets
│ ├── fonts
│ │ ├── eb-garamond
│ │ │ ├── eb-garamond_italic_400.ttf
│ │ │ └── eb-garamond_normal_400.ttf
│ │ ├── inter
│ │ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ │ └── LICENSE.txt
│ │ └── source-serif-pro
│ │ │ ├── LICENSE.md
│ │ │ ├── SourceSerif4Variable-Italic.otf.woff2
│ │ │ └── SourceSerif4Variable-Roman.otf.woff2
│ └── js
│ │ ├── block-styles.js
│ │ └── block-variations.js
│ ├── functions.php
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── post-meta.html
│ ├── patterns
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ └── post-meta.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── styles
│ ├── aubergine.json
│ ├── block-out.json
│ ├── canary.json
│ ├── electric.json
│ ├── grapes.json
│ ├── marigold.json
│ ├── pilgrimage.json
│ ├── pitch.json
│ ├── sherbet.json
│ └── whisper.json
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── blog-alternative.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
├── step-8
├── readme.md
├── screenshots
│ ├── archive.jpg
│ ├── front-page.jpg
│ ├── home.jpg
│ ├── index.jpg
│ ├── page.jpg
│ ├── search.jpg
│ └── single.jpg
└── theme
│ └── wpuniversity
│ ├── assets
│ ├── fonts
│ │ ├── eb-garmond
│ │ │ ├── eb-garamond_italic_400.ttf
│ │ │ └── eb-garamond_normal_400.ttf
│ │ └── inter
│ │ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ │ └── LICENSE.txt
│ ├── images
│ │ ├── campus-1-1024x768.jpg
│ │ ├── campus-1.jpg
│ │ ├── campus-2.jpg
│ │ ├── campus-3.jpg
│ │ ├── lecture-hall-1.jpg
│ │ ├── lecture-hall-1024x768.jpg
│ │ └── library-books.jpg
│ └── js
│ │ ├── block-styles.js
│ │ └── block-variations.js
│ ├── functions.php
│ ├── parts
│ ├── comments.html
│ ├── footer.html
│ └── header.html
│ ├── patterns
│ ├── archive.php
│ ├── call-to-action.php
│ ├── footer-default.php
│ ├── front-page.php
│ ├── hidden-404.php
│ ├── hidden-comments.php
│ ├── hidden-no-results.php
│ ├── home.php
│ ├── index.php
│ ├── post-meta.php
│ └── search.php
│ ├── readme.txt
│ ├── screenshot.png
│ ├── style.css
│ ├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── front-page.html
│ ├── home.html
│ ├── index.html
│ ├── page.html
│ ├── search.html
│ └── single.html
│ └── theme.json
└── step-9
├── readme.md
└── theme
└── wpuniversity
├── assets
├── fonts
│ ├── eb-garmond
│ │ ├── eb-garamond_italic_400.ttf
│ │ └── eb-garamond_normal_400.ttf
│ └── inter
│ │ ├── Inter-VariableFont_slnt,wght.ttf
│ │ └── LICENSE.txt
├── images
│ ├── campus-1-1024x768.jpg
│ ├── campus-1.jpg
│ ├── campus-2.jpg
│ ├── campus-3.jpg
│ ├── lecture-hall-1.jpg
│ ├── lecture-hall-1024x768.jpg
│ └── library-books.jpg
└── js
│ ├── block-styles.js
│ └── block-variations.js
├── functions.php
├── parts
├── comments.html
├── footer.html
└── header.html
├── patterns
├── archive.php
├── call-to-action.php
├── footer-default.php
├── front-page.php
├── hidden-404.php
├── hidden-comments.php
├── hidden-no-results.php
├── home.php
├── index.php
├── post-meta.php
├── search.php
└── text-overlay-card.php
├── readme.txt
├── screenshot.png
├── style.css
├── templates
├── 404.html
├── archive.html
├── blank.html
├── front-page.html
├── home.html
├── index.html
├── page.html
├── search.html
└── single.html
└── theme.json
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Misc
2 | .DS_store
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/blocks/core/column.css:
--------------------------------------------------------------------------------
1 | /* Align content in a Column block left on mobile. */
2 | @media (max-width: 781px) {
3 | .wp-block-column.is-style-mobile-content-align-left {
4 | text-align: left;
5 | }
6 |
7 | .wp-block-column.is-style-mobile-content-align-left * {
8 | align-items: flex-start !important;
9 | justify-content: flex-start !important;
10 | }
11 | }
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/blocks/core/columns.css:
--------------------------------------------------------------------------------
1 | /* Reverse column order on mobile in the Columns block. */
2 | @media (max-width: 781px) {
3 | .wp-block-columns.is-style-mobile-reverse-order {
4 | flex-direction: column-reverse;
5 | }
6 | }
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/blocks/core/cover.css:
--------------------------------------------------------------------------------
1 | /* Modify Cover bock styles to stretch full width. */
2 | .wp-block-cover.has-custom-content-position[class*='-center'] .wp-block-cover__inner-container {
3 | width: 100%;
4 | }
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/blocks/core/media-text.css:
--------------------------------------------------------------------------------
1 | /* Modify Media & Text styling to use spacing presets. */
2 | .wp-block-media-text {
3 | grid-gap: var(--wp--preset--spacing--40);
4 | }
5 |
6 | .wp-block-media-text .wp-block-media-text__content {
7 | padding: 0;
8 | }
9 |
10 | /* Add the text overlay block style to Media & Text blocks. */
11 | @media (min-width: 600px) {
12 | .wp-block-media-text.is-style-text-overlay .wp-block-media-text__content {
13 | background-color: var(--wp--preset--color--tertiary);
14 | margin-left: -100px;
15 | margin-top: 50px;
16 | margin-bottom: 50px;
17 | padding: var(--wp--preset--spacing--40);
18 | }
19 |
20 | .wp-block-media-text.is-style-text-overlay.has-media-on-the-right .wp-block-media-text__content {
21 | margin-left: 0;
22 | margin-right: -100px;
23 | z-index: 1;
24 | }
25 | }
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/blocks/core/query.css:
--------------------------------------------------------------------------------
1 | /* Modify Query block styles to stretch content and fill container. */
2 | .wp-block-query.is-style-stretch-content,
3 | .wp-block-query.is-style-stretch-content .wp-block-post-template,
4 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li,
5 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li > *[class*='wp-block'] {
6 | height: 100%;
7 | }
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/images/campus-1-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/images/campus-1-1024x768.jpg
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/images/campus-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/images/campus-1.jpg
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/images/campus-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/images/campus-2.jpg
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/images/campus-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/images/campus-3.jpg
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/images/lecture-hall-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/images/lecture-hall-1.jpg
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/images/library-books.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/assets/images/library-books.jpg
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/assets/js/block-variations.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Register the "Post Search" block variation for Search blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.registerBlockVariation( 'core/search', {
6 | name: 'wpu/post-search',
7 | title: 'Post Search',
8 | attributes: {
9 | placeholder: 'Search Posts',
10 | query: {
11 | post_type: 'post'
12 | }
13 | }
14 | } );
15 | } );
16 |
17 | /**
18 | * Unregister the "YouTube" block variation for Embed blocks.
19 | */
20 | wp.domReady( function () {
21 | wp.blocks.unregisterBlockVariation( 'core/embed', 'youtube' );
22 | } );
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/final-theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/archive.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/front-page.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/home.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/assets/final-theme/wpuniversity/templates/search.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/logos/WordPress University - Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/logos/WordPress University - Logo.png
--------------------------------------------------------------------------------
/assets/logos/WordPress University - Screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/logos/WordPress University - Screenshot.png
--------------------------------------------------------------------------------
/assets/logos/WordPress University - Site Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/logos/WordPress University - Site Icon.png
--------------------------------------------------------------------------------
/assets/photos/campus-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/campus-1.jpg
--------------------------------------------------------------------------------
/assets/photos/campus-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/campus-2.jpg
--------------------------------------------------------------------------------
/assets/photos/campus-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/campus-3.jpg
--------------------------------------------------------------------------------
/assets/photos/graduation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/graduation.jpg
--------------------------------------------------------------------------------
/assets/photos/lecture-hall-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/lecture-hall-1.jpg
--------------------------------------------------------------------------------
/assets/photos/lecture-hall-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/lecture-hall-2.jpg
--------------------------------------------------------------------------------
/assets/photos/library-books.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/library-books.jpg
--------------------------------------------------------------------------------
/assets/photos/library-stacks.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/library-stacks.jpg
--------------------------------------------------------------------------------
/assets/photos/students-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/students-1.jpg
--------------------------------------------------------------------------------
/assets/photos/students-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/students-2.jpg
--------------------------------------------------------------------------------
/assets/photos/students-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/students-3.jpg
--------------------------------------------------------------------------------
/assets/photos/ultimate-frisbee.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/photos/ultimate-frisbee.jpg
--------------------------------------------------------------------------------
/assets/screenshots/wordpress-university-home.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/screenshots/wordpress-university-home.jpg
--------------------------------------------------------------------------------
/assets/starter-content/wordpress-university.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/assets/starter-content/wordpress-university.zip
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Bold.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/dm-sans/DMSans-Regular.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/parts/comments.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/parts/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/readme.txt:
--------------------------------------------------------------------------------
1 | === WP University - Step 1 ===
2 | Contributors:
3 | Requires at least: 6.0
4 | Tested up to: 6.2.2
5 | Requires PHP: 5.7
6 | License: GPLv2 or later
7 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
8 |
9 | == Description ==
10 |
11 | Empowering Minds, Unleashing Digital Creativity
12 |
13 | == Changelog ==
14 |
15 | = 0.0.1 =
16 | * Initial release
17 |
18 | == Copyright ==
19 |
20 | WP University is based on Twenty Twenty-Three (https://wordpress.org/themes/twentytwentythree), (C) the WordPress team, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
21 |
22 | Twenty Twenty-Three WordPress Theme, (C) 2022-2023 WordPress.org
23 | Twenty Twenty-Three is distributed under the terms of the GNU GPL.
24 |
25 | This program is free software: you can redistribute it and/or modify
26 | it under the terms of the GNU General Public License as published by
27 | the Free Software Foundation, either version 2 of the License, or
28 | (at your option) any later version.
29 |
30 | This program is distributed in the hope that it will be useful,
31 | but WITHOUT ANY WARRANTY; without even the implied warranty of
32 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 | GNU General Public License for more details.
34 |
35 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-1/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: WP University - Steps 1
3 | Theme URI:
4 | Author:
5 | Author URI:
6 | Description: Empowering Minds, Unleashing Digital Creativity
7 | Requires at least: 6.0
8 | Tested up to: 6.2.2
9 | Requires PHP: 5.7
10 | Version: 0.0.1
11 | License: GNU General Public License v2 or later
12 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 | Text Domain: wpuniversity
14 | Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
15 | */
16 |
17 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/steps/step-1/theme/wpuniversity/templates/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/blocks/core/column.css:
--------------------------------------------------------------------------------
1 | /* Align content in a Column block left on mobile. */
2 | @media (max-width: 781px) {
3 | .wp-block-column.is-style-mobile-content-align-left {
4 | text-align: left;
5 | }
6 |
7 | .wp-block-column.is-style-mobile-content-align-left * {
8 | align-items: flex-start !important;
9 | justify-content: flex-start !important;
10 | }
11 | }
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/blocks/core/columns.css:
--------------------------------------------------------------------------------
1 | /* Reverse column order on mobile in the Columns block. */
2 | @media (max-width: 781px) {
3 | .wp-block-columns.is-style-mobile-reverse-order {
4 | flex-direction: column-reverse;
5 | }
6 | }
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/blocks/core/cover.css:
--------------------------------------------------------------------------------
1 | /* Modify Cover bock styles to stretch full width. */
2 | .wp-block-cover.has-custom-content-position[class*='-center'] .wp-block-cover__inner-container {
3 | width: 100%;
4 | }
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/blocks/core/media-text.css:
--------------------------------------------------------------------------------
1 | /* Modify Media & Text styling to use spacing presets. */
2 | .wp-block-media-text {
3 | grid-gap: var(--wp--preset--spacing--40);
4 | }
5 |
6 | .wp-block-media-text .wp-block-media-text__content {
7 | padding: 0;
8 | }
9 |
10 | /* Add the text overlay block style to Media & Text blocks. */
11 | @media (min-width: 600px) {
12 | .wp-block-media-text.is-style-text-overlay .wp-block-media-text__content {
13 | background-color: var(--wp--preset--color--tertiary);
14 | margin-left: -100px;
15 | margin-top: 50px;
16 | margin-bottom: 50px;
17 | padding: var(--wp--preset--spacing--40);
18 | }
19 |
20 | .wp-block-media-text.is-style-text-overlay.has-media-on-the-right .wp-block-media-text__content {
21 | margin-left: 0;
22 | margin-right: -100px;
23 | z-index: 1;
24 | }
25 | }
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/blocks/core/query.css:
--------------------------------------------------------------------------------
1 | /* Modify Query block styles to stretch content and fill container. */
2 | .wp-block-query.is-style-stretch-content,
3 | .wp-block-query.is-style-stretch-content .wp-block-post-template,
4 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li,
5 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li > *[class*='wp-block'] {
6 | height: 100%;
7 | }
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/images/campus-1-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/images/campus-1-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/images/campus-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/images/campus-1.jpg
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/images/campus-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/images/campus-2.jpg
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/images/campus-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/images/campus-3.jpg
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/images/lecture-hall-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/images/lecture-hall-1.jpg
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/images/library-books.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/assets/images/library-books.jpg
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/assets/js/block-variations.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Register the "Post Search" block variation for Search blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.registerBlockVariation( 'core/search', {
6 | name: 'wpu/post-search',
7 | title: 'Post Search',
8 | attributes: {
9 | placeholder: 'Search Posts',
10 | query: {
11 | post_type: 'post'
12 | }
13 | }
14 | } );
15 | } );
16 |
17 | /**
18 | * Unregister the "YouTube" block variation for Embed blocks.
19 | */
20 | wp.domReady( function () {
21 | wp.blocks.unregisterBlockVariation( 'core/embed', 'youtube' );
22 | } );
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-10/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: WP University - Step 10
3 | Theme URI:
4 | Author:
5 | Author URI:
6 | Description: Empowering Minds, Unleashing Digital Creativity
7 | Requires at least: 6.0
8 | Tested up to: 6.2.2
9 | Requires PHP: 5.7
10 | Version: 0.0.1
11 | License: GNU General Public License v2 or later
12 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 | Text Domain: wpuniversity
14 | Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
15 | */
16 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/archive.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/front-page.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/home.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/steps/step-10/theme/wpuniversity/templates/search.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/blocks/core/column.css:
--------------------------------------------------------------------------------
1 | /* Align content in a Column block left on mobile. */
2 | @media (max-width: 781px) {
3 | .wp-block-column.is-style-mobile-content-align-left {
4 | text-align: left;
5 | }
6 |
7 | .wp-block-column.is-style-mobile-content-align-left * {
8 | align-items: flex-start !important;
9 | justify-content: flex-start !important;
10 | }
11 | }
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/blocks/core/columns.css:
--------------------------------------------------------------------------------
1 | /* Reverse column order on mobile in the Columns block. */
2 | @media (max-width: 781px) {
3 | .wp-block-columns.is-style-mobile-reverse-order {
4 | flex-direction: column-reverse;
5 | }
6 | }
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/blocks/core/cover.css:
--------------------------------------------------------------------------------
1 | /* Modify Cover bock styles to stretch full width. */
2 | .wp-block-cover.has-custom-content-position[class*='-center'] .wp-block-cover__inner-container {
3 | width: 100%;
4 | }
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/blocks/core/media-text.css:
--------------------------------------------------------------------------------
1 | /* Modify Media & Text styling to use spacing presets. */
2 | .wp-block-media-text {
3 | grid-gap: var(--wp--preset--spacing--40);
4 | }
5 |
6 | .wp-block-media-text .wp-block-media-text__content {
7 | padding: 0;
8 | }
9 |
10 | /* Add the text overlay block style to Media & Text blocks. */
11 | @media (min-width: 600px) {
12 | .wp-block-media-text.is-style-text-overlay .wp-block-media-text__content {
13 | background-color: var(--wp--preset--color--tertiary);
14 | margin-left: -100px;
15 | margin-top: 50px;
16 | margin-bottom: 50px;
17 | padding: var(--wp--preset--spacing--40);
18 | }
19 |
20 | .wp-block-media-text.is-style-text-overlay.has-media-on-the-right .wp-block-media-text__content {
21 | margin-left: 0;
22 | margin-right: -100px;
23 | z-index: 1;
24 | }
25 | }
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/blocks/core/query.css:
--------------------------------------------------------------------------------
1 | /* Modify Query block styles to stretch content and fill container. */
2 | .wp-block-query.is-style-stretch-content,
3 | .wp-block-query.is-style-stretch-content .wp-block-post-template,
4 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li,
5 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li > *[class*='wp-block'] {
6 | height: 100%;
7 | }
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/images/campus-1-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/images/campus-1-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/images/campus-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/images/campus-1.jpg
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/images/campus-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/images/campus-2.jpg
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/images/campus-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/images/campus-3.jpg
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/images/lecture-hall-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/images/lecture-hall-1.jpg
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/images/library-books.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/assets/images/library-books.jpg
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/assets/js/block-variations.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Register the "Post Search" block variation for Search blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.registerBlockVariation( 'core/search', {
6 | name: 'wpu/post-search',
7 | title: 'Post Search',
8 | attributes: {
9 | placeholder: 'Search Posts',
10 | query: {
11 | post_type: 'post'
12 | }
13 | }
14 | } );
15 | } );
16 |
17 | /**
18 | * Unregister the "YouTube" block variation for Embed blocks.
19 | */
20 | wp.domReady( function () {
21 | wp.blocks.unregisterBlockVariation( 'core/embed', 'youtube' );
22 | } );
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-11/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: WP University - Step 11
3 | Theme URI:
4 | Author:
5 | Author URI:
6 | Description: Empowering Minds, Unleashing Digital Creativity
7 | Requires at least: 6.0
8 | Tested up to: 6.2.2
9 | Requires PHP: 5.7
10 | Version: 0.0.1
11 | License: GNU General Public License v2 or later
12 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 | Text Domain: wpuniversity
14 | Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
15 | */
16 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/archive.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/front-page.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/home.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/steps/step-11/theme/wpuniversity/templates/search.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/blocks/core/column.css:
--------------------------------------------------------------------------------
1 | /* Align content in a Column block left on mobile. */
2 | @media (max-width: 781px) {
3 | .wp-block-column.is-style-mobile-content-align-left {
4 | text-align: left;
5 | }
6 |
7 | .wp-block-column.is-style-mobile-content-align-left * {
8 | align-items: flex-start !important;
9 | justify-content: flex-start !important;
10 | }
11 | }
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/blocks/core/columns.css:
--------------------------------------------------------------------------------
1 | /* Reverse column order on mobile in the Columns block. */
2 | @media (max-width: 781px) {
3 | .wp-block-columns.is-style-mobile-reverse-order {
4 | flex-direction: column-reverse;
5 | }
6 | }
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/blocks/core/cover.css:
--------------------------------------------------------------------------------
1 | /* Modify Cover bock styles to stretch full width. */
2 | .wp-block-cover.has-custom-content-position[class*='-center'] .wp-block-cover__inner-container {
3 | width: 100%;
4 | }
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/blocks/core/media-text.css:
--------------------------------------------------------------------------------
1 | /* Modify Media & Text styling to use spacing presets. */
2 | .wp-block-media-text {
3 | grid-gap: var(--wp--preset--spacing--40);
4 | }
5 |
6 | .wp-block-media-text .wp-block-media-text__content {
7 | padding: 0;
8 | }
9 |
10 | /* Add the text overlay block style to Media & Text blocks. */
11 | @media (min-width: 600px) {
12 | .wp-block-media-text.is-style-text-overlay .wp-block-media-text__content {
13 | background-color: var(--wp--preset--color--tertiary);
14 | margin-left: -100px;
15 | margin-top: 50px;
16 | margin-bottom: 50px;
17 | padding: var(--wp--preset--spacing--40);
18 | }
19 |
20 | .wp-block-media-text.is-style-text-overlay.has-media-on-the-right .wp-block-media-text__content {
21 | margin-left: 0;
22 | margin-right: -100px;
23 | z-index: 1;
24 | }
25 | }
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/blocks/core/query.css:
--------------------------------------------------------------------------------
1 | /* Modify Query block styles to stretch content and fill container. */
2 | .wp-block-query.is-style-stretch-content,
3 | .wp-block-query.is-style-stretch-content .wp-block-post-template,
4 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li,
5 | .wp-block-query.is-style-stretch-content .wp-block-post-template > li > *[class*='wp-block'] {
6 | height: 100%;
7 | }
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/images/campus-1-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/images/campus-1-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/images/campus-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/images/campus-1.jpg
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/images/campus-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/images/campus-2.jpg
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/images/campus-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/images/campus-3.jpg
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/images/lecture-hall-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/images/lecture-hall-1.jpg
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/images/library-books.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/assets/images/library-books.jpg
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/assets/js/block-variations.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Register the "Post Search" block variation for Search blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.registerBlockVariation( 'core/search', {
6 | name: 'wpu/post-search',
7 | title: 'Post Search',
8 | attributes: {
9 | placeholder: 'Search Posts',
10 | query: {
11 | post_type: 'post'
12 | }
13 | }
14 | } );
15 | } );
16 |
17 | /**
18 | * Unregister the "YouTube" block variation for Embed blocks.
19 | */
20 | wp.domReady( function () {
21 | wp.blocks.unregisterBlockVariation( 'core/embed', 'youtube' );
22 | } );
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-12/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: WP University - Step 12
3 | Theme URI:
4 | Author:
5 | Author URI:
6 | Description: Empowering Minds, Unleashing Digital Creativity
7 | Requires at least: 6.0
8 | Tested up to: 6.2.2
9 | Requires PHP: 5.7
10 | Version: 0.0.1
11 | License: GNU General Public License v2 or later
12 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 | Text Domain: wpuniversity
14 | Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
15 | */
16 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/archive.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/front-page.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/home.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/steps/step-12/theme/wpuniversity/templates/search.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/assets/fonts/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-2/theme/wpuniversity/assets/fonts/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/assets/fonts/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-2/theme/wpuniversity/assets/fonts/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-2/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-2/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-2/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/parts/comments.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/parts/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-2/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: WP University - Step 2
3 | Theme URI:
4 | Author:
5 | Author URI:
6 | Description: Empowering Minds, Unleashing Digital Creativity
7 | Requires at least: 6.0
8 | Tested up to: 6.2.2
9 | Requires PHP: 5.7
10 | Version: 0.0.1
11 | License: GNU General Public License v2 or later
12 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 | Text Domain: wpuniversity
14 | Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
15 | */
16 |
17 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/steps/step-2/theme/wpuniversity/templates/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-3/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-3/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-3/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-3/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-3/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/parts/comments.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/parts/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-3/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: WP University - Step 3
3 | Theme URI:
4 | Author:
5 | Author URI:
6 | Description: Empowering Minds, Unleashing Digital Creativity
7 | Requires at least: 6.0
8 | Tested up to: 6.2.2
9 | Requires PHP: 5.7
10 | Version: 0.0.1
11 | License: GNU General Public License v2 or later
12 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 | Text Domain: wpuniversity
14 | Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
15 | */
16 |
17 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/steps/step-3/theme/wpuniversity/templates/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/steps/step-4/screenshots/site-banner-composition.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/screenshots/site-banner-composition.jpg
--------------------------------------------------------------------------------
/steps/step-4/screenshots/site-banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/screenshots/site-banner.jpg
--------------------------------------------------------------------------------
/steps/step-4/screenshots/site-footer-composition.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/screenshots/site-footer-composition.jpg
--------------------------------------------------------------------------------
/steps/step-4/screenshots/site-footer-mobile.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/screenshots/site-footer-mobile.jpg
--------------------------------------------------------------------------------
/steps/step-4/screenshots/site-footer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/screenshots/site-footer.jpg
--------------------------------------------------------------------------------
/steps/step-4/screenshots/site-header-composition.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/screenshots/site-header-composition.jpg
--------------------------------------------------------------------------------
/steps/step-4/screenshots/site-header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/screenshots/site-header.jpg
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/parts/comments.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/parts/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-4/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: WP University - Step 4
3 | Theme URI:
4 | Author:
5 | Author URI:
6 | Description: Empowering Minds, Unleashing Digital Creativity
7 | Requires at least: 6.0
8 | Tested up to: 6.2.2
9 | Requires PHP: 5.7
10 | Version: 0.0.1
11 | License: GNU General Public License v2 or later
12 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 | Text Domain: wpuniversity
14 | Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
15 | */
16 |
17 | /* Reverse column order on mobile in the Columns block. */
18 | @media (max-width: 781px) {
19 | .wp-block-columns.is-style-mobile-reverse-order {
20 | flex-direction: column-reverse;
21 | }
22 | }
23 |
24 | /* Align content in a Column block left on mobile. */
25 | @media (max-width: 781px) {
26 | .wp-block-column.is-style-mobile-content-align-left {
27 | text-align: left;
28 | }
29 |
30 | .wp-block-column.is-style-mobile-content-align-left * {
31 | align-items: flex-start !important;
32 | justify-content: flex-start !important;
33 | }
34 | }
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/steps/step-4/theme/wpuniversity/templates/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/steps/step-5/screenshots/query-loop-composition.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/screenshots/query-loop-composition.jpg
--------------------------------------------------------------------------------
/steps/step-5/screenshots/query-loop.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/screenshots/query-loop.jpg
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/functions.php:
--------------------------------------------------------------------------------
1 | get( 'Version' ),
18 | );
19 |
20 | // Enqueue theme stylesheet.
21 | wp_enqueue_style( 'wpu-styles' );
22 | }
23 | add_action( 'wp_enqueue_scripts', 'wpu_enqueue_scripts' );
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/parts/comments.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/parts/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-5/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/steps/step-5/theme/wpuniversity/templates/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/steps/step-6/screenshots/text-overlay-card.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-6/screenshots/text-overlay-card.jpg
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-6/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-6/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-6/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-6/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-6/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/functions.php:
--------------------------------------------------------------------------------
1 | get( 'Version' ),
18 | );
19 |
20 | // Enqueue theme stylesheet.
21 | wp_enqueue_style( 'wpu-styles' );
22 | }
23 | add_action( 'wp_enqueue_scripts', 'wpu_enqueue_scripts' );
24 |
25 | /**
26 | * Register block styles.
27 | */
28 | function wpu_register_block_styles() {
29 | register_block_style( 'core/media-text', array(
30 | 'name' => 'text-overlay',
31 | 'label' => __( 'Text Overlay', 'wpu' ),
32 | ) );
33 | }
34 | add_action( 'init', 'wpu_register_block_styles' );
35 |
36 | /**
37 | * Enqueue the block styles script.
38 | */
39 | function wpu_enqueue_block_styles() {
40 | wp_enqueue_script(
41 | 'wpu-block-styles',
42 | get_theme_file_uri( 'assets/js/block-styles.js' ),
43 | array(
44 | 'wp-blocks',
45 | 'wp-dom-ready',
46 | 'wp-edit-post'
47 | )
48 | );
49 | }
50 | add_action( 'enqueue_block_editor_assets', 'wpu_enqueue_block_styles' );
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/parts/comments.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/parts/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-6/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/steps/step-6/theme/wpuniversity/templates/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-7/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-7/theme/wpuniversity/assets/fonts/eb-garamond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-7/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-7/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-7/theme/wpuniversity/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/assets/js/block-variations.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Register the "Post Search" block variation for Search blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.registerBlockVariation( 'core/search', {
6 | name: 'wpu/post-search',
7 | title: 'Post Search',
8 | attributes: {
9 | query: {
10 | post_type: 'post'
11 | }
12 | }
13 | } );
14 | } );
15 |
16 | /**
17 | * Unregister the "YouTube" block variation for Embed blocks.
18 | */
19 | wp.domReady( function () {
20 | wp.blocks.unregisterBlockVariation( 'core/embed', 'youtube' );
21 | } );
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/parts/comments.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/parts/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/parts/post-meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-7/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/steps/step-7/theme/wpuniversity/templates/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/steps/step-8/screenshots/archive.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/screenshots/archive.jpg
--------------------------------------------------------------------------------
/steps/step-8/screenshots/front-page.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/screenshots/front-page.jpg
--------------------------------------------------------------------------------
/steps/step-8/screenshots/home.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/screenshots/home.jpg
--------------------------------------------------------------------------------
/steps/step-8/screenshots/index.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/screenshots/index.jpg
--------------------------------------------------------------------------------
/steps/step-8/screenshots/page.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/screenshots/page.jpg
--------------------------------------------------------------------------------
/steps/step-8/screenshots/search.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/screenshots/search.jpg
--------------------------------------------------------------------------------
/steps/step-8/screenshots/single.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/screenshots/single.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/images/campus-1-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/images/campus-1-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/images/campus-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/images/campus-1.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/images/campus-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/images/campus-2.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/images/campus-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/images/campus-3.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/images/lecture-hall-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/images/lecture-hall-1.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/images/library-books.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/assets/images/library-books.jpg
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/assets/js/block-variations.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Register the "Post Search" block variation for Search blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.registerBlockVariation( 'core/search', {
6 | name: 'wpu/post-search',
7 | title: 'Post Search',
8 | attributes: {
9 | placeholder: 'Search Posts',
10 | query: {
11 | post_type: 'post'
12 | }
13 | }
14 | } );
15 | } );
16 |
17 | /**
18 | * Unregister the "YouTube" block variation for Embed blocks.
19 | */
20 | wp.domReady( function () {
21 | wp.blocks.unregisterBlockVariation( 'core/embed', 'youtube' );
22 | } );
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/patterns/hidden-404.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-8/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/archive.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/front-page.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/home.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/steps/step-8/theme/wpuniversity/templates/search.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_italic_400.ttf
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/fonts/eb-garmond/eb-garamond_normal_400.ttf
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/images/campus-1-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/images/campus-1-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/images/campus-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/images/campus-1.jpg
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/images/campus-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/images/campus-2.jpg
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/images/campus-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/images/campus-3.jpg
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/images/lecture-hall-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/images/lecture-hall-1.jpg
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/images/lecture-hall-1024x768.jpg
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/images/library-books.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/assets/images/library-books.jpg
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/js/block-styles.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Unregister the "Rounded" block style for Image blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.unregisterBlockStyle( 'core/image', 'rounded' );
6 | } );
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/assets/js/block-variations.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Register the "Post Search" block variation for Search blocks.
3 | */
4 | wp.domReady( function () {
5 | wp.blocks.registerBlockVariation( 'core/search', {
6 | name: 'wpu/post-search',
7 | title: 'Post Search',
8 | attributes: {
9 | placeholder: 'Search Posts',
10 | query: {
11 | post_type: 'post'
12 | }
13 | }
14 | } );
15 | } );
16 |
17 | /**
18 | * Unregister the "YouTube" block variation for Embed blocks.
19 | */
20 | wp.domReady( function () {
21 | wp.blocks.unregisterBlockVariation( 'core/embed', 'youtube' );
22 | } );
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/parts/header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/patterns/call-to-action.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/patterns/footer-default.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | WordPress'
21 | )
22 | ?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/patterns/hidden-no-results.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndiego/wordpress-university-workshop/2124325477323f3ccec28b469e50ee4ed51760a1/steps/step-9/theme/wpuniversity/screenshot.png
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/archive.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/blank.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/front-page.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/home.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/steps/step-9/theme/wpuniversity/templates/search.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------