This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .home { | |
| overflow-x: hidden; | |
| } | |
| .home header { | |
| position: absolute; | |
| width: calc(100% - 32px); | |
| padding: 16px; | |
| z-index: 10; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Title: Call to Action | |
| * Slug: my-theme/call-to-action | |
| * Block types: core/post-content | |
| * Categories: featured, text | |
| */ | |
| ?> | |
| <!-- wp:cover {"overlayColor":"secondary","minHeight":307,"minHeightUnit":"px","style":{"spacing":{"padding":{"top":"32px","right":"32px","bottom":"32px","left":"32px"}}}} --> | |
| <div class="wp-block-cover" style="padding-top:32px;padding-right:32px;padding-bottom:32px;padding-left:32px;min-height:307px"><span aria-hidden="true" class="wp-block-cover__background has-secondary-background-color has-background-dim-100 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:group {"layout":{"contentSize":"800px"}} --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Title: Latest Posts | |
| * Slug: my-theme/latest-posts | |
| * Block types: core/post-content | |
| * Categories: featured, text | |
| */ | |
| ?> | |
| <!-- wp:query {"queryId":0,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"displayLayout":{"type":"flex","columns":3},"layout":{"contentSize":"800px"}} --> | |
| <div class="wp-block-query"><!-- wp:post-template --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 2, | |
| // e.g. https://wordpress.org/patterns/pattern/meet-the-team-2/ | |
| "patterns": [ "meet-the-team-2" ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Title: Hero | |
| * Slug: my-theme/hero | |
| * Block types: core/post-content | |
| * Categories: headers, text | |
| */ | |
| ?> | |
| <!-- wp:cover {"url":"http://fsefidelitas.local/wp-content/uploads/2022/06/marta-rastovac-t0m-hgapGk-unsplash-scaled.jpeg","id":21,"dimRatio":50,"minHeight":600,"style":{"spacing":{"padding":{"top":"100px","right":"200px","bottom":"100px","left":"200px"}}}} --> | |
| <div class="wp-block-cover" style="padding-top:100px;padding-right:200px;padding-bottom:100px;padding-left:200px;min-height:600px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><img class="wp-block-cover__image-background wp-image-21" alt="" src="http://fsefidelitas.local/wp-content/uploads/2022/06/marta-rastovac-t0m-hgapGk-unsplash-scaled.jpeg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"layout":{"contentSize":"600px"}} --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "styles":{ | |
| "blocks": { | |
| "core/button": { | |
| "spacing": { | |
| "padding": { | |
| "top": "16px", | |
| "right": "32px", | |
| "bottom": "16px", | |
| "left": "32px" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "styles": { | |
| "spacing":{ | |
| "blockGap": "32px", | |
| }, | |
| "typography": { | |
| "fontSize": "var(--wp--preset--font-size--size18)", | |
| "fontFamily": "var(--wp--preset--font-family--helvetica-arial)", | |
| "lineHeight": "1.5" | |
| }, | |
| "elements": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "typography": { | |
| "fontFamilies": [ | |
| { | |
| "name": "Helvetica or Arial", | |
| "slug": "helvetica-arial", | |
| "fontFamily": "Helvetica Neue, Helvetica, Arial, sans-serif" | |
| } | |
| ], | |
| "fontSizes":[ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://schemas.wp.org/trunk/theme.json", | |
| "version": 2, | |
| "settings": { | |
| "appearanceTools": true, | |
| "color": { | |
| "palette": [ | |
| { | |
| "slug": "primary", | |
| "color": "#D63E4B", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ├── my-theme | |
| └── parts | |
| ├── header.html | |
| └── footer.html | |
| ├── templates | |
| ├── index.html | |
| └── single.html | |
| ├── functions.php | |
| ├── index.php | |
| ├── theme.json |