Преглед на файлове

Add Adventurer theme (#6773)

* Adventurer initial commit

* Compress screenshot

* Compress asset images

* Update version numbers

* Rename home template

* Escape about pattern

* Patternise home template

* Fix theme.json error

* Move home header into pattern

* Patternise header

* Indent about

* Patternise footer

* Rename sidebar2 to sidebar

* Patternise post meta

* Remove nav refs

* Patternise secondary header

* Patternise sidebar

* Patternise 404

* Fix secondary header

* Remove all staging site links

* Translate list pattern

* Translate stats pattern

* Indent templates

* Remove static ids

* Add Author URI

* Add spacing to home and page templates

* Fix home and page spacing
Sarah Norris преди 2 години
родител
ревизия
6470d43376
променени са 47 файла, в които са добавени 1540 реда и са изтрити 0 реда
  1. BIN
      adventurer/assets/fonts/roboto_300.ttf
  2. BIN
      adventurer/assets/fonts/roboto_300italic.ttf
  3. BIN
      adventurer/assets/fonts/roboto_500.ttf
  4. BIN
      adventurer/assets/fonts/roboto_500italic.ttf
  5. BIN
      adventurer/assets/fonts/roboto_700.ttf
  6. BIN
      adventurer/assets/fonts/roboto_700italic.ttf
  7. BIN
      adventurer/assets/fonts/rubik_900.ttf
  8. BIN
      adventurer/assets/fonts/rubik_900italic.ttf
  9. BIN
      adventurer/assets/images/adventurer_about.png
  10. BIN
      adventurer/assets/images/adventurer_boat.png
  11. BIN
      adventurer/assets/images/adventurer_camel.png
  12. BIN
      adventurer/assets/images/adventurer_canada.png
  13. BIN
      adventurer/assets/images/adventurer_coconuts.png
  14. BIN
      adventurer/assets/images/adventurer_desert.png
  15. BIN
      adventurer/assets/images/adventurer_italy.png
  16. BIN
      adventurer/assets/images/adventurer_laos.png
  17. BIN
      adventurer/assets/images/adventurer_monastery.png
  18. BIN
      adventurer/assets/images/adventurer_mosque.png
  19. BIN
      adventurer/assets/images/adventurer_penguin.png
  20. 60 0
      adventurer/functions.php
  21. 1 0
      adventurer/parts/footer.html
  22. 1 0
      adventurer/parts/header.html
  23. 1 0
      adventurer/parts/post-meta.html
  24. 1 0
      adventurer/parts/secondary-header.html
  25. 1 0
      adventurer/parts/sidebar.html
  26. 22 0
      adventurer/patterns/404.php
  27. 40 0
      adventurer/patterns/about.php
  28. 52 0
      adventurer/patterns/comments.php
  29. 61 0
      adventurer/patterns/footer.php
  30. 64 0
      adventurer/patterns/header-with-cover.php
  31. 30 0
      adventurer/patterns/header.php
  32. 19 0
      adventurer/patterns/list.php
  33. 24 0
      adventurer/patterns/post-meta.php
  34. 31 0
      adventurer/patterns/secondary-header.php
  35. 56 0
      adventurer/patterns/sidebar.php
  36. 48 0
      adventurer/patterns/stats.php
  37. 31 0
      adventurer/readme.txt
  38. BIN
      adventurer/screenshot.png
  39. 68 0
      adventurer/style.css
  40. 5 0
      adventurer/templates/404.html
  41. 38 0
      adventurer/templates/archive.html
  42. 17 0
      adventurer/templates/home.html
  43. 40 0
      adventurer/templates/index.html
  44. 47 0
      adventurer/templates/page.html
  45. 55 0
      adventurer/templates/search.html
  46. 132 0
      adventurer/templates/single.html
  47. 595 0
      adventurer/theme.json

BIN
adventurer/assets/fonts/roboto_300.ttf


BIN
adventurer/assets/fonts/roboto_300italic.ttf


BIN
adventurer/assets/fonts/roboto_500.ttf


BIN
adventurer/assets/fonts/roboto_500italic.ttf


BIN
adventurer/assets/fonts/roboto_700.ttf


BIN
adventurer/assets/fonts/roboto_700italic.ttf


BIN
adventurer/assets/fonts/rubik_900.ttf


BIN
adventurer/assets/fonts/rubik_900italic.ttf


BIN
adventurer/assets/images/adventurer_about.png


BIN
adventurer/assets/images/adventurer_boat.png


BIN
adventurer/assets/images/adventurer_camel.png


BIN
adventurer/assets/images/adventurer_canada.png


BIN
adventurer/assets/images/adventurer_coconuts.png


BIN
adventurer/assets/images/adventurer_desert.png


BIN
adventurer/assets/images/adventurer_italy.png


BIN
adventurer/assets/images/adventurer_laos.png


BIN
adventurer/assets/images/adventurer_monastery.png


BIN
adventurer/assets/images/adventurer_mosque.png


BIN
adventurer/assets/images/adventurer_penguin.png


+ 60 - 0
adventurer/functions.php

@@ -0,0 +1,60 @@
+<?php
+/**
+ * Adventurer functions and definitions
+ *
+ * @link https://developer.wordpress.org/themes/basics/theme-functions/
+ *
+ * @package Adventurer
+ * @since Adventurer 1.0
+ */
+
+
+if ( ! function_exists( 'adventurer_support' ) ) :
+
+	/**
+	 * Sets up theme defaults and registers support for various WordPress features.
+	 *
+	 * @since Adventurer 1.0
+	 *
+	 * @return void
+	 */
+	function adventurer_support() {
+
+		// Enqueue editor styles.
+		add_editor_style( 'style.css' );
+
+		// Make theme available for translation.
+		load_theme_textdomain( 'adventurer' );
+	}
+
+endif;
+
+add_action( 'after_setup_theme', 'adventurer_support' );
+
+if ( ! function_exists( 'adventurer_styles' ) ) :
+
+	/**
+	 * Enqueue styles.
+	 *
+	 * @since Adventurer 1.0
+	 *
+	 * @return void
+	 */
+	function adventurer_styles() {
+
+		// Register theme stylesheet.
+		wp_register_style(
+			'adventurer-style',
+			get_stylesheet_directory_uri() . '/style.css',
+			array(),
+			wp_get_theme()->get( 'Version' )
+		);
+
+		// Enqueue theme stylesheet.
+		wp_enqueue_style( 'adventurer-style' );
+
+	}
+
+endif;
+
+add_action( 'wp_enqueue_scripts', 'adventurer_styles' );

+ 1 - 0
adventurer/parts/footer.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"adventurer/footer"} /-->

+ 1 - 0
adventurer/parts/header.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"adventurer/header"} /-->

+ 1 - 0
adventurer/parts/post-meta.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"adventurer/post-meta"} /-->

+ 1 - 0
adventurer/parts/secondary-header.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"adventurer/secondary-header"} /-->

+ 1 - 0
adventurer/parts/sidebar.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"adventurer/sidebar"} /-->

+ 22 - 0
adventurer/patterns/404.php

@@ -0,0 +1,22 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: adventurer/404
+ * Inserter: no
+ */
+
+?>
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"blockGap":"var:preset|spacing|50","margin":{"top":"16vh","bottom":"16vh"}}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
+<main class="wp-block-group" style="margin-top:16vh;margin-bottom:16vh">
+    <!-- wp:heading {"textAlign":"left","level":1,"align":"wide","style":{"typography":{"fontSize":"4.4rem"}}} -->
+    <h1 class="wp-block-heading alignwide has-text-align-left" id="oops-that-page-can-t-be-found" style="font-size:4.4rem"><?php echo esc_html__( 'Oops! That page can&rsquo;t be found.', 'adventurer' ); ?></h1>
+    <!-- /wp:heading -->
+
+    <!-- wp:paragraph -->
+    <p><?php echo  esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'adventurer' ); ?></p>
+    <!-- /wp:paragraph -->
+
+    <!-- wp:search {"label":"","showLabel":false,"placeholder":"E.g. \u0022Botswana\u0022"} /-->
+</main>
+<!-- /wp:group -->

+ 40 - 0
adventurer/patterns/about.php

@@ -0,0 +1,40 @@
+<?php
+/**
+ * Title: About
+ * Slug: adventurer/about
+ * Inserter: yes
+ */
+
+?>
+
+<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ) . '/assets/images/adventurer_about.png'; ?>","dimRatio":50,"overlayColor":"primary","minHeight":630,"minHeightUnit":"px","isDark":false,"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|70","top":"var:preset|spacing|70","bottom":"var:preset|spacing|70","left":"var:preset|spacing|70"}}}} -->
+<div class="wp-block-cover alignfull is-light" style="padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70);min-height:630px"><span aria-hidden="true" class="wp-block-cover__background has-primary-background-color has-background-dim"></span><img class="wp-block-cover__image-background" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ) . '/assets/images/adventurer_about.png'; ?>" data-object-fit="cover"/><div class="wp-block-cover__inner-container">
+    <!-- wp:columns -->
+    <div class="wp-block-columns">
+        <!-- wp:column {"width":"60%"} -->
+        <div class="wp-block-column" style="flex-basis:60%"></div>
+        <!-- /wp:column -->
+
+        <!-- wp:column {"width":"40%","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}},"spacing":{"padding":{"top":"var:preset|spacing|60","right":"var:preset|spacing|60","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}}},"backgroundColor":"primary","textColor":"background"} -->
+        <div class="wp-block-column has-background-color has-primary-background-color has-text-color has-background has-link-color" style="padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60);flex-basis:40%">
+            <!-- wp:heading -->
+            <h2 class="wp-block-heading"><?php echo esc_html__( 'About Me', 'adventurer' ); ?></h2>
+            <!-- /wp:heading -->
+
+            <!-- wp:paragraph -->
+            <p><?php echo esc_html__( 'Hi, I’m Austin. I love exploring and writing about the world and getting lost with my camera. This blog is where I write about the things I find, and I hope it gives you some inspiration to go and have your own adventures.', 'adventurer' ); ?></p>
+            <!-- /wp:paragraph -->
+
+            <!-- wp:buttons -->
+            <div class="wp-block-buttons">
+                <!-- wp:button {"backgroundColor":"background","textColor":"primary"} -->
+                <div class="wp-block-button"><a class="wp-block-button__link has-primary-color has-background-background-color has-text-color has-background wp-element-button" href=""><?php echo esc_html__( 'Read Full Bio', 'adventurer' ); ?></a></div>
+                <!-- /wp:button -->
+            </div>
+            <!-- /wp:buttons -->
+        </div>
+        <!-- /wp:column -->
+    </div>
+    <!-- /wp:columns -->
+</div></div>
+<!-- /wp:cover -->

+ 52 - 0
adventurer/patterns/comments.php

@@ -0,0 +1,52 @@
+<?php
+/**
+ * Title: Comments
+ * slug: adventurer/comments
+ * inserter: no
+ */
+
+?>
+
+<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
+<div class="wp-block-comments wp-block-comments-query-loop">
+	<!-- wp:comments-title {"level":3} /-->
+
+	<!-- wp:comment-template -->
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
+		<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)">
+			<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"},"style":{"spacing":{"blockGap":"0.5em"}}} -->
+			<div class="wp-block-group">
+				<!-- wp:avatar {"size":40,"style":{"spacing":{"margin":{"top":"0.5em"}}}} /-->
+
+				<!-- wp:group -->
+				<div class="wp-block-group">
+					<!-- wp:comment-author-name /-->
+
+					<!-- wp:group {"layout":{"type":"flex"},"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}}} -->
+					<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+						<!-- wp:comment-date {"format":"F j, Y \\a\\t g:i a"} /-->
+
+						<!-- wp:comment-edit-link /-->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:group -->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:comment-content /-->
+
+			<!-- wp:comment-reply-link /-->
+		</div>
+		<!-- /wp:group -->
+	<!-- /wp:comment-template -->
+
+	<!-- wp:comments-pagination -->
+		<!-- wp:comments-pagination-previous /-->
+		<!-- wp:comments-pagination-numbers /-->
+		<!-- wp:comments-pagination-next /-->
+	<!-- /wp:comments-pagination -->
+
+	<!-- wp:post-comments-form /-->
+</div>
+<!-- /wp:comments -->

+ 61 - 0
adventurer/patterns/footer.php

@@ -0,0 +1,61 @@
+<?php
+/**
+ * Title: Default footer
+ * Slug: adventurer/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ */
+?>
+
+<!-- wp:group {"style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}},"spacing":{"padding":{"top":"0","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"},"blockGap":"0"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
+<div class="wp-block-group has-background-color has-primary-background-color has-text-color has-background has-link-color" style="padding-top:0;padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
+    <!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":{"padding":{"right":"0","left":"0","top":"var:preset|spacing|80","bottom":"var:preset|spacing|60"}}}} -->
+    <div class="wp-block-columns alignwide are-vertically-aligned-top" style="padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0">
+        <!-- wp:column {"verticalAlignment":"top","width":"38.1%"} -->
+        <div class="wp-block-column is-vertically-aligned-top" style="flex-basis:38.1%">
+            <!-- wp:site-title /-->
+            <!-- wp:site-tagline {"fontSize":"small"} /-->
+        </div>
+        <!-- /wp:column -->
+
+        <!-- wp:column {"width":"33.33%"} -->
+        <div class="wp-block-column" style="flex-basis:33.33%"></div>
+        <!-- /wp:column -->
+
+        <!-- wp:column {"verticalAlignment":"top","width":"28.57%"} -->
+        <div class="wp-block-column is-vertically-aligned-top" style="flex-basis:28.57%">
+            <!-- wp:social-links {"iconColor":"background","iconColorValue":"#ffffff","iconBackgroundColor":"primary","iconBackgroundColorValue":"#000000","size":"has-normal-icon-size","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|40"}}},"layout":{"type":"flex","justifyContent":"right"}} -->
+            <ul class="wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color">
+                <!-- wp:social-link {"url":"","service":"twitter"} /-->
+                <!-- wp:social-link {"url":"","service":"youtube"} /-->
+                <!-- wp:social-link {"url":"","service":"pinterest"} /-->
+                <!-- wp:social-link {"url":"","service":"tiktok"} /-->
+            </ul>
+            <!-- /wp:social-links -->
+        </div>
+        <!-- /wp:column -->
+    </div>
+    <!-- /wp:columns -->
+
+    <!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"right":"0","left":"0","top":"var:preset|spacing|80","bottom":"var:preset|spacing|70"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+    <div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--70);padding-left:0">
+        <!-- wp:paragraph {"style":{"typography":{"fontSize":"0.8rem"}}} -->
+        <p style="font-size:0.8rem"><?php echo esc_html__( 'About Me', 'adventurer' ); ?></p>
+        <!-- /wp:paragraph -->
+
+        <!-- wp:paragraph {"align":"right","style":{"typography":{"fontSize":"0.8rem"}}} -->
+        <p class="has-text-align-right" style="font-size:0.8rem">
+            <?php
+            /* Translators: WordPress link. */
+            $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'adventurer' ) ) . '" rel="nofollow">WordPress</a>';
+            echo sprintf(
+                esc_html__( 'Designed with %1$s', 'adventurer' ),
+                $wordpress_link
+            );
+        ?>
+        </p>
+        <!-- /wp:paragraph -->
+    </div>
+    <!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 64 - 0
adventurer/patterns/header-with-cover.php

@@ -0,0 +1,64 @@
+<?php
+/**
+ * Title: Header with cover
+ * Slug: adventurer/header-with-cover
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ) . '/assets/images/adventurer_coconuts.png'; ?>","dimRatio":50,"minHeight":90,"minHeightUnit":"vh","style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"0"}}}} -->
+<div class="wp-block-cover" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;min-height:90vh"><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><img class="wp-block-cover__image-background" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ) . '/assets/images/adventurer_coconuts.png'; ?>" data-object-fit="cover"/><div class="wp-block-cover__inner-container">
+    <!-- wp:group {"layout":{"type":"constrained"}} -->
+    <div class="wp-block-group">
+        <!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|60","top":"var:preset|spacing|60","right":"0","left":"0"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
+        <div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0">
+            <!-- wp:site-title {"textAlign":"left","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} /-->
+
+            <!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+            <div class="wp-block-group">
+                <!-- wp:navigation {"layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"}}}} /-->
+
+                <!-- wp:buttons -->
+                <div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"primary","textColor":"background"} -->
+                    <div class="wp-block-button"><a class="wp-block-button__link has-background-color has-primary-background-color has-text-color has-background wp-element-button"><?php echo esc_html__( 'Donate', 'adventurer' ); ?></a></div><!-- /wp:button -->
+                </div>
+                <!-- /wp:buttons -->
+            </div>
+            <!-- /wp:group -->
+        </div>
+        <!-- /wp:group -->
+    </div>
+    <!-- /wp:group -->
+
+    <!-- wp:spacer {"height":"26vh"} -->
+    <div style="height:26vh" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"}} -->
+    <div class="wp-block-group">
+        <!-- wp:heading {"style":{"typography":{"letterSpacing":"1px","fontSize":"0.8rem"}},"fontFamily":"roboto"} -->
+        <h2 class="wp-block-heading has-roboto-font-family" style="font-size:0.8rem;letter-spacing:1px"><?php echo esc_html__( 'GUIDED TOURS', 'adventurer' ); ?></h2>
+        <!-- /wp:heading -->
+
+        <!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"4.6rem"}}} -->
+        <h3 class="wp-block-heading" style="font-size:4.6rem"><?php echo esc_html__( '14 days in COSTA RICA', 'adventurer' ); ?></h3>
+        <!-- /wp:heading -->
+
+        <!-- wp:paragraph -->
+        <p><?php echo esc_html__( 'My first guided group tour will open for booking in two weeks. The trip will take place from December 4 to December 17, 2023.', 'adventurer' ); ?></p>
+        <!-- /wp:paragraph -->
+
+        <!-- wp:buttons -->
+        <div class="wp-block-buttons"><!-- wp:button -->
+        <div class="wp-block-button"><a class="wp-block-button__link wp-element-button"><?php echo esc_html__( 'Save Your Spot', 'adventurer' ); ?></a></div>
+        <!-- /wp:button --></div>
+        <!-- /wp:buttons -->
+    </div>
+    <!-- /wp:group -->
+
+    <!-- wp:spacer {"height":"26vh"} -->
+    <div style="height:26vh" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+</div></div>
+<!-- /wp:cover -->

+ 30 - 0
adventurer/patterns/header.php

@@ -0,0 +1,30 @@
+<?php
+/**
+ * Title: Default header
+ * Slug: adventurer/header
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+    <!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|60","top":"var:preset|spacing|60","right":"0","left":"0"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
+    <div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0">
+        <!-- wp:site-title {"textAlign":"left","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} /-->
+
+        <!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+        <div class="wp-block-group">
+            <!-- wp:navigation {"layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"}}}} /-->
+
+            <!-- wp:buttons -->
+            <div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"primary","textColor":"background"} -->
+                <div class="wp-block-button"><a class="wp-block-button__link has-background-color has-primary-background-color has-text-color has-background wp-element-button"><?php echo esc_html__( 'Donate', 'adventurer' ); ?></a></div><!-- /wp:button -->
+            </div>
+            <!-- /wp:buttons -->
+        </div>
+        <!-- /wp:group -->
+    </div>
+    <!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 19 - 0
adventurer/patterns/list.php

@@ -0,0 +1,19 @@
+<?php
+/**
+ * Title: List
+ * Slug: adventurer/list
+ * Inserter: yes
+ */
+?>
+
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80","right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"backgroundColor":"tertiary","layout":{"type":"constrained","contentSize":"1100px"}} -->
+<div class="wp-block-group alignfull has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--50)">
+	<!-- wp:heading {"level":3,"style":{"typography":{"textTransform":"uppercase","fontSize":"0.8rem","letterSpacing":"1px"}},"fontFamily":"roboto"} -->
+	<h3 class="wp-block-heading has-roboto-font-family" style="font-size:0.8rem;letter-spacing:1px;text-transform:uppercase"><?php echo esc_html__( 'Browse by Country', 'adventurer' ); ?></h3>
+	<!-- /wp:heading -->
+
+	<!-- wp:heading {"style":{"typography":{"lineHeight":1.1,"fontSize":"80px","textTransform":"uppercase","fontStyle":"normal","fontWeight":"900"}}} -->
+	<h2 class="wp-block-heading" id="botswana-new-zealand-south-korea-japan-madagascar" style="font-size:80px;font-style:normal;font-weight:900;line-height:1.1;text-transform:uppercase"><a href=""><?php echo esc_html__( 'ITALY', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'COSTA RICA', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'CANADA', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'LAOS', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'TURKEY', 'adventurer' ); ?></a></h2>
+	<!-- /wp:heading -->
+</div>
+<!-- /wp:group -->

+ 24 - 0
adventurer/patterns/post-meta.php

@@ -0,0 +1,24 @@
+<?php
+/**
+ * Title: Post Meta
+ * Slug: adventurer/post-meta
+ * Categories: post meta
+ * Block Types: core/post-date, core/post-author-name
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group">
+    <!-- wp:post-date {"style":{"typography":{"fontStyle":"normal","fontWeight":"500","fontSize":"0.8rem","textTransform":"uppercase","letterSpacing":"1px"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} /-->
+
+    <!-- wp:paragraph -->
+    <p>&nbsp;&nbsp;&nbsp;</p>
+    <!-- /wp:paragraph -->
+
+    <!-- wp:paragraph {"style":{"typography":{"fontSize":"0.8rem","letterSpacing":"1px","fontStyle":"normal","fontWeight":"500","textTransform":"uppercase"}}} -->
+    <p style="font-size:0.8rem;font-style:normal;font-weight:500;letter-spacing:1px;text-transform:uppercase"><?php echo esc_html__( 'Written by:', 'adventurer' ); ?></p>
+    <!-- /wp:paragraph -->
+
+    <!-- wp:post-author-name {"isLink":true,"style":{"typography":{"fontSize":"0.8rem","textTransform":"uppercase","letterSpacing":"1px","fontStyle":"normal","fontWeight":"500"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}}} /-->
+</div>
+<!-- /wp:group -->

+ 31 - 0
adventurer/patterns/secondary-header.php

@@ -0,0 +1,31 @@
+<?php
+/**
+ * Title: Secondary header
+ * Slug: adventurer/secondary-header
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+    <!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|60","top":"var:preset|spacing|60","right":"0","left":"0"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
+    <div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--60);padding-right:0;padding-bottom:var(--wp--preset--spacing--60);padding-left:0">
+        <!-- wp:site-title {"textAlign":"left"} /-->
+
+        <!-- wp:group {"style":{"border":{"width":"0px","style":"none","radius":"2px"}},"backgroundColor":"background","layout":{"type":"flex","flexWrap":"nowrap"}} -->
+        <div class="wp-block-group has-background-background-color has-background" style="border-style:none;border-width:0px;border-radius:2px">
+            <!-- wp:navigation {"layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"}}}} /-->
+
+            <!-- wp:buttons -->
+            <div class="wp-block-buttons">
+                <!-- wp:button {"backgroundColor":"primary","textColor":"background"} -->
+                <div class="wp-block-button"><a class="wp-block-button__link has-background-color has-primary-background-color has-text-color has-background wp-element-button"><?php echo esc_html__( 'Donate', 'adventurer' ); ?></a></div><!-- /wp:button -->
+            </div>
+            <!-- /wp:buttons -->
+        </div>
+        <!-- /wp:group -->
+    </div>
+    <!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 56 - 0
adventurer/patterns/sidebar.php

@@ -0,0 +1,56 @@
+<?php
+/**
+ * Title: Sidebar
+ * Slug: adventurer/sidebar
+ * Inserter: yes
+ */
+
+?>
+
+<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"var:preset|spacing|50"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignfull">
+    <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|60","right":"var:preset|spacing|60","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
+    <div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)">
+        <!-- wp:paragraph {"style":{"typography":{"letterSpacing":"1px","fontStyle":"normal","fontWeight":"500","textTransform":"uppercase","fontSize":"0.8rem"}}} -->
+        <p style="font-size:0.8rem;font-style:normal;font-weight:500;letter-spacing:1px;text-transform:uppercase"><?php echo esc_html__( 'Latest Stories', 'adventurer' ); ?></p>
+        <!-- /wp:paragraph -->
+
+        <!-- wp:query {"queryId":24,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"layout":{"type":"default"}} -->
+        <div class="wp-block-query">
+            <!-- wp:post-template -->
+            <!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|20","padding":{"top":"0","right":"0","bottom":"0","left":"0"}}},"layout":{"type":"constrained"}} -->
+            <div class="wp-block-group alignwide" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
+                <!-- wp:post-featured-image {"isLink":true,"width":"","height":"160px","align":"wide","style":{"border":{"radius":"0px","top":{"radius":"0px","width":"0px","style":"none"},"right":{"color":"#f5f2eb00","width":"0px","style":"none"},"bottom":{"radius":"0px","width":"0px","style":"none"},"left":{"radius":"0px","width":"0px","style":"none"}},"spacing":{"margin":{"top":"0","right":"0","bottom":"0","left":"0"}}}} /-->
+
+                <!-- wp:post-title {"isLink":true,"fontSize":"medium"} /-->
+
+                <!-- wp:post-date {"displayType":"modified","style":{"typography":{"fontSize":"0.6rem","textTransform":"uppercase","letterSpacing":"0.05em","fontStyle":"normal","fontWeight":"500"}}} /-->
+
+                <!-- wp:spacer {"height":"10px"} -->
+                <div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div>
+                <!-- /wp:spacer -->
+            </div>
+            <!-- /wp:group -->
+            <!-- /wp:post-template -->
+        </div>
+        <!-- /wp:query -->
+    </div>
+    <!-- /wp:group -->
+
+    <!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60","right":"var:preset|spacing|60","left":"var:preset|spacing|60"}},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained","contentSize":"1100px"}} -->
+    <div class="wp-block-group alignfull has-background-color has-primary-background-color has-text-color has-background has-link-color" style="padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)">
+        <!-- wp:heading {"level":3,"style":{"typography":{"textTransform":"uppercase","fontSize":"0.8rem","letterSpacing":"1px"}},"fontFamily":"roboto"} -->
+        <h3 class="wp-block-heading has-roboto-font-family" style="font-size:0.8rem;letter-spacing:1px;text-transform:uppercase"><?php echo esc_html__( 'Latest trips', 'adventurer' ); ?></h3>
+        <!-- /wp:heading -->
+
+        <!-- wp:heading {"style":{"typography":{"lineHeight":1.1,"textTransform":"uppercase","fontStyle":"normal","fontWeight":"900"}},"fontSize":"large"} -->
+        <h2 class="wp-block-heading has-large-font-size" id="botswana-new-zealand-south-korea-japan-madagascar" style="font-style:normal;font-weight:900;line-height:1.1;text-transform:uppercase"><a href=""><?php echo esc_html__( 'ITALY', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'COSTA RICA', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'CANADA', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'LAOS', 'adventurer' ); ?></a><br><a href=""><?php echo esc_html__( 'TURKEY', 'adventurer' ); ?></a></h2>
+        <!-- /wp:heading -->
+    </div>
+    <!-- /wp:group -->
+
+    <!-- wp:spacer {"height":"170px"} -->
+    <div style="height:170px" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+</div>
+<!-- /wp:group -->

+ 48 - 0
adventurer/patterns/stats.php

@@ -0,0 +1,48 @@
+<?php
+/**
+ * Title: Stats
+ * Slug: adventurer/stats
+ * Inserter: yes
+ */
+
+?>
+
+<!-- wp:columns {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}}} -->
+<div class="wp-block-columns alignwide" style="padding-top:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--80)">
+    <!-- wp:column {"verticalAlignment":"center","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70","right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"backgroundColor":"tertiary"} -->
+    <div class="wp-block-column is-vertically-aligned-center has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--50)">
+        <!-- wp:heading {"textAlign":"center","style":{"typography":{"fontSize":"4.2rem"}}} -->
+        <h2 class="wp-block-heading has-text-align-center" style="font-size:4.2rem"><?php echo esc_html__( '69', 'adventurer' ); ?></h2>
+        <!-- /wp:heading -->
+
+        <!-- wp:paragraph {"align":"center"} -->
+        <p class="has-text-align-center"><?php echo esc_html__( 'Countries Travelled', 'adventurer' ); ?></p>
+        <!-- /wp:paragraph -->
+    </div>
+    <!-- /wp:column -->
+
+    <!-- wp:column {"verticalAlignment":"center","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70","right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"backgroundColor":"tertiary"} -->
+    <div class="wp-block-column is-vertically-aligned-center has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--50)">
+        <!-- wp:heading {"textAlign":"center","style":{"typography":{"fontSize":"4.2rem"}}} -->
+        <h2 class="wp-block-heading has-text-align-center" style="font-size:4.2rem"><?php echo esc_html__( '489', 'adventurer' ); ?></h2>
+        <!-- /wp:heading -->
+
+        <!-- wp:paragraph {"align":"center"} -->
+        <p class="has-text-align-center"><?php echo esc_html__( 'Flights Boarded', 'adventurer' ); ?></p>
+        <!-- /wp:paragraph -->
+    </div>
+    <!-- /wp:column -->
+
+    <!-- wp:column {"verticalAlignment":"center","style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"backgroundColor":"tertiary"} -->
+    <div class="wp-block-column is-vertically-aligned-center has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--50)">
+        <!-- wp:heading {"textAlign":"center","style":{"typography":{"fontSize":"4.2rem"}}} -->
+        <h2 class="wp-block-heading has-text-align-center" style="font-size:4.2rem"><?php echo esc_html__( '+990', 'adventurer' ); ?></h2>
+        <!-- /wp:heading -->
+
+        <!-- wp:paragraph {"align":"center"} -->
+        <p class="has-text-align-center"><?php echo esc_html__( 'Miles Flown', 'adventurer' ); ?></p>
+        <!-- /wp:paragraph -->
+    </div>
+    <!-- /wp:column -->
+</div>
+<!-- /wp:columns -->

+ 31 - 0
adventurer/readme.txt

@@ -0,0 +1,31 @@
+=== Adventurer ===
+Contributors: Automattic
+Requires at least: 6.0
+Tested up to: 6.1.1
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+A theme for travelers, writers and photographers.
+
+== Changelog ==
+
+= 0.0.1 =
+* Initial release
+
+== Copyright ==
+
+Adventurer WordPress Theme, (C) 2022 Automattic
+Adventurer is distributed under the terms of the GNU GPL.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.

BIN
adventurer/screenshot.png


+ 68 - 0
adventurer/style.css

@@ -0,0 +1,68 @@
+/*
+Theme Name: Adventurer
+Theme URI: https://github.com/Automattic/themes/tree/trunk/adventurer
+Author: Automattic
+Author URI: https://automattic.com/
+Description: A theme for travelers, writers and photographers.
+Requires at least: 6.0
+Tested up to: 6.1.1
+Requires PHP: 5.7
+Version: 0.0.1
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Template: 
+Text Domain: adventurer
+Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
+*/
+
+/*
+ * Font smoothing
+ * https://github.com/WordPress/gutenberg/issues/35934
+ */
+body {
+	-moz-osx-font-smoothing: grayscale;
+	-webkit-font-smoothing: antialiased;
+}
+
+/*
+ * Control the hover stylings of outline block style.
+ * Unnecessary once block styles are configurable via theme.json
+ * https://github.com/WordPress/gutenberg/issues/42794
+ */
+.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
+	background-color: var(--wp--preset--color--secondary);
+	color: var(--wp--preset--color--background);
+	border-color: var(--wp--preset--color--secondary);
+}
+
+/**
+ * Currently table styles are only available with 'wp-block-styles' 
+ * theme support (block css) thus the following needs to be included
+ * since 'wp-block-styles' aren't used for this theme.
+ * https://github.com/WordPress/gutenberg/issues/45065
+ */
+.wp-block-table thead {
+	border-bottom: 3px solid;
+}
+.wp-block-table tfoot {
+	border-top: 3px solid;
+}
+.wp-block-table td,
+.wp-block-table th {
+	padding: var(--wp--preset--spacing--30);
+	border: 1px solid;
+	word-break: normal;
+}
+.wp-block-table figcaption {
+	font-size: var(--wp--preset--font-size--small);
+	text-align: center;
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-thickness: .0625em !important;
+	text-underline-offset: .15em;
+}

+ 5 - 0
adventurer/templates/404.html

@@ -0,0 +1,5 @@
+<!-- wp:template-part {"slug":"secondary-header"} /-->
+
+<!-- wp:pattern {"slug":"adventurer/404"} /-->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 38 - 0
adventurer/templates/archive.html

@@ -0,0 +1,38 @@
+<!-- wp:template-part {"slug":"secondary-header"} /-->
+
+<!-- wp:query {"queryId":14,"query":{"perPage":4,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":true},"displayLayout":{"type":"flex","columns":2},"layout":{"type":"constrained"}} -->
+<div class="wp-block-query">
+    <!-- wp:query-title {"type":"archive","align":"wide","style":{"spacing":{"margin":{"bottom":"10vh","top":"10vh"}},"typography":{"fontSize":"4.4rem"}}} /-->
+
+        <!-- wp:post-template {"align":"wide"} -->
+        <!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"inherit":false}} -->
+        <div class="wp-block-group" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px">
+            <!-- wp:post-featured-image {"height":"300px"} /-->
+            <!-- wp:post-date {"style":{"typography":{"fontStyle":"normal","fontWeight":"500","textTransform":"uppercase","letterSpacing":"1px","fontSize":"0.8rem"}}} /-->
+            <!-- wp:post-title {"isLink":true,"style":{"typography":{"fontSize":"48px"}}} /-->
+            <!-- wp:post-excerpt /-->
+        </div>
+        <!-- /wp:group -->
+        <!-- /wp:post-template -->
+
+        <!-- wp:spacer {"height":"8vh"} -->
+        <div style="height:8vh" aria-hidden="true" class="wp-block-spacer"></div>
+        <!-- /wp:spacer -->
+
+        <!-- wp:group {"align":"wide","style":{"border":{"top":{"width":"1px","color":"var:preset|color|primary"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"spacing":{"padding":{"top":"var:preset|spacing|40","right":"0","bottom":"0","left":"0"}}},"layout":{"type":"constrained"}} -->
+        <div class="wp-block-group alignwide" style="border-top-color:var(--wp--preset--color--primary);border-top-width:1px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:0;padding-left:0">
+            <!-- wp:query-pagination {"paginationArrow":"arrow","align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+                <!-- wp:query-pagination-previous {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small","fontFamily":"rubik"} /-->
+                <!-- wp:query-pagination-numbers {"fontSize":"small","fontFamily":"rubik"} /-->
+                <!-- wp:query-pagination-next {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small","fontFamily":"rubik"} /-->
+            <!-- /wp:query-pagination -->
+        </div>
+        <!-- /wp:group -->
+
+        <!-- wp:spacer {"height":"14vh"} -->
+        <div style="height:14vh" aria-hidden="true" class="wp-block-spacer"></div>
+        <!-- /wp:spacer -->
+</div>
+<!-- /wp:query -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 17 - 0
adventurer/templates/home.html

@@ -0,0 +1,17 @@
+<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+    <!-- wp:pattern {"slug":"adventurer/header-with-cover"} /-->
+
+    <!-- wp:spacer {"height":"60px"} -->
+    <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"constrained","contentSize":"1100px"}} /-->
+
+    <!-- wp:spacer {"height":"60px"} -->
+    <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
+</div>
+<!-- /wp:group -->

+ 40 - 0
adventurer/templates/index.html

@@ -0,0 +1,40 @@
+<!-- wp:template-part {"slug":"secondary-header"} /-->
+
+<!-- wp:query {"queryId":14,"query":{"perPage":4,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":false},"displayLayout":{"type":"flex","columns":2},"layout":{"type":"constrained"}} -->
+<div class="wp-block-query">
+    <!-- wp:spacer {"height":"14vh"} -->
+    <div style="height:14vh" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:post-template {"align":"wide"} -->
+    <!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"inherit":false}} -->
+    <div class="wp-block-group" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px">
+        <!-- wp:post-featured-image {"height":"300px"} /-->
+        <!-- wp:post-date {"style":{"typography":{"fontStyle":"normal","fontWeight":"500","textTransform":"uppercase","letterSpacing":"1px","fontSize":"0.8rem"}}} /-->
+        <!-- wp:post-title {"isLink":true,"style":{"typography":{"fontSize":"48px"}}} /-->
+        <!-- wp:post-excerpt /-->
+    </div>
+    <!-- /wp:group -->
+    <!-- /wp:post-template -->
+
+    <!-- wp:spacer {"height":"8vh"} -->
+    <div style="height:8vh" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:group {"align":"wide","style":{"border":{"top":{"width":"1px","color":"var:preset|color|primary"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"spacing":{"padding":{"top":"var:preset|spacing|40","right":"0","bottom":"0","left":"0"}}},"layout":{"type":"constrained"}} -->
+    <div class="wp-block-group alignwide" style="border-top-color:var(--wp--preset--color--primary);border-top-width:1px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:0;padding-left:0">
+        <!-- wp:query-pagination {"paginationArrow":"arrow","align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+            <!-- wp:query-pagination-previous {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small","fontFamily":"rubik"} /-->
+            <!-- wp:query-pagination-numbers {"fontSize":"small","fontFamily":"rubik"} /-->
+            <!-- wp:query-pagination-next {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small","fontFamily":"rubik"} /-->
+        <!-- /wp:query-pagination -->
+    </div>
+    <!-- /wp:group -->
+
+    <!-- wp:spacer {"height":"14vh"} -->
+    <div style="height:14vh" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+</div>
+<!-- /wp:query -->
+
+<!-- wp:template-part {"slug":"footer"} /-->

+ 47 - 0
adventurer/templates/page.html

@@ -0,0 +1,47 @@
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+    <!-- wp:cover {"overlayColor":"primary","minHeight":90,"minHeightUnit":"vh","style":{"spacing":{"padding":{"top":"0","right":"0","bottom":"0","left":"0"}}}} -->
+    <div class="wp-block-cover" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;min-height:90vh"><span aria-hidden="true" class="wp-block-cover__background has-primary-background-color has-background-dim-100 has-background-dim"></span><div class="wp-block-cover__inner-container">
+        <!-- wp:cover {"useFeaturedImage":true,"dimRatio":70,"overlayColor":"primary","minHeight":90,"minHeightUnit":"vh","contentPosition":"center center","style":{"spacing":{"padding":{"top":"0","right":"0","bottom":"0","left":"0"}}}} -->
+        <div class="wp-block-cover" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;min-height:90vh"><span aria-hidden="true" class="wp-block-cover__background has-primary-background-color has-background-dim-70 has-background-dim"></span><div class="wp-block-cover__inner-container">
+            <!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+            <!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"constrained","wideSize":"1100px"}} -->
+            <div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
+                <!-- wp:spacer {"height":"30vh"} -->
+                <div style="height:30vh" aria-hidden="true" class="wp-block-spacer"></div>
+                <!-- /wp:spacer -->
+
+                <!-- wp:post-title {"style":{"typography":{"fontSize":"4.6rem"}}} /-->
+
+                <!-- wp:spacer {"height":"30vh"} -->
+                <div style="height:30vh" aria-hidden="true" class="wp-block-spacer"></div>
+                <!-- /wp:spacer -->
+            </div>
+            <!-- /wp:group -->
+        </div></div>
+        <!-- /wp:cover -->
+    </div></div>
+    <!-- /wp:cover -->
+</div>
+<!-- /wp:group -->
+
+<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":true}} -->
+<main class="wp-block-group">
+    <!-- wp:spacer {"height":"60px"} -->
+    <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:post-content {"lock":{"move":false,"remove":true},"layout":{"type":"constrained"}} /-->
+
+    <!-- wp:spacer {"height":"60px"} -->
+    <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+    <!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
+</div>
+<!-- /wp:group -->

+ 55 - 0
adventurer/templates/search.html

@@ -0,0 +1,55 @@
+<!-- wp:template-part {"slug":"secondary-header"} /-->
+
+<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"}} -->
+<div class="wp-block-group">
+    <!-- wp:spacer {"height":"14vh"} -->
+    <div style="height:14vh" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:query-title {"type":"search","style":{"typography":{"fontSize":"4.4rem"}}} /-->
+
+    <!-- wp:search {"showLabel":false,"placeholder":"E.g. \u0022Botswana\u0022"} /-->
+
+    <!-- wp:spacer {"height":"14vh"} -->
+    <div style="height:14vh" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:query {"queryId":14,"query":{"perPage":4,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":true},"displayLayout":{"type":"flex","columns":2},"layout":{"type":"constrained"}} -->
+    <div class="wp-block-query">
+        <!-- wp:post-template {"align":"wide"} -->
+        <!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"inherit":false}} -->
+        <div class="wp-block-group" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px">
+            <!-- wp:post-featured-image {"height":"300px"} /-->
+
+            <!-- wp:post-date {"style":{"typography":{"fontStyle":"normal","fontWeight":"500","textTransform":"uppercase","letterSpacing":"1px","fontSize":"0.8rem"}}} /-->
+
+            <!-- wp:post-title {"isLink":true,"style":{"typography":{"fontSize":"48px"}}} /-->
+
+            <!-- wp:post-excerpt /-->
+        </div>
+        <!-- /wp:group -->
+        <!-- /wp:post-template -->
+
+        <!-- wp:spacer {"height":"8vh"} -->
+        <div style="height:8vh" aria-hidden="true" class="wp-block-spacer"></div>
+        <!-- /wp:spacer -->
+
+        <!-- wp:group {"align":"wide","style":{"border":{"top":{"width":"1px","color":"var:preset|color|primary"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"spacing":{"padding":{"top":"var:preset|spacing|40","right":"0","bottom":"0","left":"0"}}},"layout":{"type":"constrained"}} -->
+        <div class="wp-block-group alignwide" style="border-top-color:var(--wp--preset--color--primary);border-top-width:1px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:0;padding-left:0">
+            <!-- wp:query-pagination {"paginationArrow":"arrow","align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+                <!-- wp:query-pagination-previous {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small","fontFamily":"rubik"} /-->
+                <!-- wp:query-pagination-numbers {"fontSize":"small","fontFamily":"rubik"} /-->
+                <!-- wp:query-pagination-next {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small","fontFamily":"rubik"} /-->
+            <!-- /wp:query-pagination -->
+            </div>
+            <!-- /wp:group -->
+
+        <!-- wp:spacer {"height":"14vh"} -->
+        <div style="height:14vh" aria-hidden="true" class="wp-block-spacer"></div>
+        <!-- /wp:spacer -->
+    </div>
+    <!-- /wp:query -->
+</div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 132 - 0
adventurer/templates/single.html

@@ -0,0 +1,132 @@
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+    <!-- wp:cover {"overlayColor":"primary","minHeight":90,"minHeightUnit":"vh","style":{"spacing":{"padding":{"top":"0","right":"0","bottom":"0","left":"0"}}}} -->
+    <div class="wp-block-cover" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;min-height:90vh"><span aria-hidden="true" class="wp-block-cover__background has-primary-background-color has-background-dim-100 has-background-dim"></span><div class="wp-block-cover__inner-container">
+        <!-- wp:cover {"useFeaturedImage":true,"dimRatio":50,"overlayColor":"primary","minHeight":90,"minHeightUnit":"vh","style":{"spacing":{"padding":{"top":"0","right":"0","bottom":"0","left":"0"}}}} -->
+        <div class="wp-block-cover" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;min-height:90vh"><span aria-hidden="true" class="wp-block-cover__background has-primary-background-color has-background-dim"></span><div class="wp-block-cover__inner-container">
+            <!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+            <!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"constrained","wideSize":"1100px"}} -->
+            <div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
+                <!-- wp:spacer {"height":"25vh"} -->
+                <div style="height:25vh" aria-hidden="true" class="wp-block-spacer"></div>
+                <!-- /wp:spacer -->
+
+                <!-- wp:post-title {"style":{"typography":{"fontSize":"4.6rem"}}} /-->
+
+                <!-- wp:template-part {"slug":"post-meta","area":"uncategorized"} /-->
+
+                <!-- wp:spacer {"height":"25vh"} -->
+                <div style="height:25vh" aria-hidden="true" class="wp-block-spacer"></div>
+                <!-- /wp:spacer -->
+            </div>
+            <!-- /wp:group -->
+        </div></div>
+        <!-- /wp:cover -->
+    </div></div>
+    <!-- /wp:cover -->
+</div>
+<!-- /wp:group -->
+
+<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group">
+    <!-- wp:spacer {"height":"60px"} -->
+    <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
+    <!-- /wp:spacer -->
+
+    <!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|80","left":"var:preset|spacing|80"}}}} -->
+    <div class="wp-block-columns alignwide">
+        <!-- wp:column {"width":"66.66%"} -->
+        <div class="wp-block-column" style="flex-basis:66.66%">
+            <!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"default"}} /-->
+
+            <!-- wp:spacer {"height":"80px"} -->
+            <div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
+            <!-- /wp:spacer -->
+
+            <!-- wp:separator -->
+            <hr class="wp-block-separator has-alpha-channel-opacity"/>
+            <!-- /wp:separator -->
+
+            <!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
+            <div class="wp-block-comments wp-block-comments-query-loop">
+                <!-- wp:comments-title {"level":3,"fontSize":"medium"} /-->
+
+                <!-- wp:comment-template -->
+                <!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+                <div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)">
+                    <!-- wp:group {"style":{"spacing":{"blockGap":"0.5em"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+                    <div class="wp-block-group">
+                        <!-- wp:avatar {"size":40,"style":{"spacing":{"margin":{"top":"0.5em"}},"border":{"radius":"100px"}}} /-->
+
+                        <!-- wp:group -->
+                        <div class="wp-block-group">
+                            <!-- wp:comment-author-name {"isLink":false,"style":{"typography":{"fontStyle":"normal","fontWeight":"500","fontSize":"0.9rem"}}} /-->
+
+                            <!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}},"layout":{"type":"flex"}} -->
+                            <div class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+                                <!-- wp:comment-date {"format":"F j, Y \\a\\t g:i a","isLink":false,"style":{"typography":{"fontSize":"0.9rem"}}} /-->
+                                <!-- wp:comment-edit-link {"style":{"typography":{"fontSize":"0.9rem"}}} /-->
+                            </div>
+                            <!-- /wp:group -->
+                        </div>
+                        <!-- /wp:group -->
+                    </div>
+                    <!-- /wp:group -->
+
+                    <!-- wp:comment-content {"style":{"typography":{"fontStyle":"italic","fontWeight":"300"}},"fontSize":"small"} /-->
+
+                    <!-- wp:comment-reply-link {"style":{"typography":{"fontSize":"0.9rem"}}} /-->
+                </div>
+                <!-- /wp:group -->
+                <!-- /wp:comment-template -->
+
+                <!-- wp:comments-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
+                    <!-- wp:comments-pagination-previous {"fontSize":"small"} /-->
+                    <!-- wp:comments-pagination-next {"fontSize":"small"} /-->
+                <!-- /wp:comments-pagination -->
+
+                <!-- wp:spacer {"height":"40px"} -->
+                <div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
+                <!-- /wp:spacer -->
+
+                <!-- wp:post-comments-form {"fontSize":"medium"} /-->
+
+                <!-- wp:spacer -->
+                <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+                <!-- /wp:spacer -->
+            </div>
+            <!-- /wp:comments -->
+        </div>
+        <!-- /wp:column -->
+
+        <!-- wp:column {"width":"33.33%","lock":{"move":false,"remove":true},"style":{"spacing":{"padding":{"top":"0","right":"0","bottom":"0","left":"0"},"blockGap":"var:preset|spacing|50"}}} -->
+        <div class="wp-block-column" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:33.33%">
+            <!-- wp:template-part {"slug":"sidebar"} /-->
+        </div>
+        <!-- /wp:column -->
+    </div>
+    <!-- /wp:columns -->
+
+    <!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+    <div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:group {"align":"full","style":{"border":{"top":{"color":"var:preset|color|primary","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|30","right":"0","bottom":"var:preset|spacing|20","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+        <div class="wp-block-group alignfull" style="border-top-color:var(--wp--preset--color--primary);border-top-width:1px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0">
+            <!-- wp:post-navigation-link {"type":"previous","showTitle":true,"arrow":"arrow","style":{"typography":{"textTransform":"uppercase"}},"fontSize":"medium","fontFamily":"rubik"} /-->
+
+            <!-- wp:post-navigation-link {"showTitle":true,"arrow":"arrow","style":{"typography":{"textTransform":"uppercase"}},"fontSize":"medium","fontFamily":"rubik"} /-->
+        </div>
+        <!-- /wp:group -->
+
+        <!-- wp:spacer -->
+        <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+        <!-- /wp:spacer -->
+    </div>
+    <!-- /wp:group -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+    <!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
+</div>
+<!-- /wp:group -->

+ 595 - 0
adventurer/theme.json

@@ -0,0 +1,595 @@
+{
+	"settings": {
+		"border": {
+			"color": true,
+			"radius": true,
+			"style": true,
+			"width": true
+		},
+		"color": {
+			"custom": true,
+			"customGradient": true,
+			"link": true,
+			"palette": [
+				{
+					"color": "#000000",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#000000",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#000000",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f5f2ec",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		},
+		"layout": {
+			"contentSize": "620px",
+			"wideSize": "1100px"
+		},
+		"spacing": {
+			"blockGap": true,
+			"margin": true,
+			"padding": true,
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"customFontSize": true,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Rubik",
+							"fontStyle": "normal",
+							"fontWeight": "900",
+							"src": [
+								"file:./assets/fonts/rubik_900.ttf"
+							]
+						},
+						{
+							"fontFamily": "Rubik",
+							"fontStyle": "italic",
+							"fontWeight": "900",
+							"src": [
+								"file:./assets/fonts/rubik_900italic.ttf"
+							]
+						}
+					],
+					"fontFamily": "Rubik",
+					"slug": "rubik"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Roboto",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/roboto_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Roboto",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/roboto_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Roboto",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/roboto_300italic.ttf"
+							]
+						},
+						{
+							"fontFamily": "Roboto",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/roboto_500italic.ttf"
+							]
+						},
+						{
+							"fontFamily": "Roboto",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/roboto_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Roboto",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/roboto_700italic.ttf"
+							]
+						}
+					],
+					"fontFamily": "Roboto",
+					"slug": "roboto"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": {
+						"max": "1.0625rem",
+						"min": "0.825rem"
+					},
+					"name": "Small",
+					"size": "1rem",
+					"slug": "small"
+				},
+				{
+					"fluid": {
+						"max": "1.25rem",
+						"min": "1rem"
+					},
+					"name": "Medium",
+					"size": "1.125rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": {
+						"max": "2rem",
+						"min": "1.75rem"
+					},
+					"name": "Large",
+					"size": "1.75rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "3rem",
+						"min": "2.5rem"
+					},
+					"name": "Extra Large",
+					"size": "3rem",
+					"slug": "x-large"
+				}
+			],
+			"lineHeight": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"border": {
+					"radius": "2px"
+				},
+				"color": {
+					"background": "var:preset|color|primary",
+					"text": "var:preset|color|background"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var:preset|spacing|40",
+						"left": "var:preset|spacing|50",
+						"right": "var:preset|spacing|50",
+						"top": "var:preset|spacing|40"
+					}
+				},
+				"typography": {
+					"fontSize": "0.8rem",
+					"fontStyle": "normal",
+					"fontWeight": "500",
+					"letterSpacing": "1px",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--foreground)",
+					"radius": "0.25rem",
+					"style": "solid",
+					"width": "2px"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontFamily": "monospace"
+				}
+			},
+			"core/comment-author-name": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-date": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-edit-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-reply-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/gallery": {
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--70)"
+					}
+				}
+			},
+			"core/navigation": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var:preset|font-family|roboto",
+					"fontSize": "0.8rem",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"letterSpacing": "1px",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/post-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-comments-form": {
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "#ffffff"
+							}
+						}
+					}
+				}
+			},
+			"core/post-date": {
+				"color": {
+					"text": "var(--wp--preset--color--foreground)"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"margin": {
+						"bottom": "0"
+					}
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"bottom": {
+						"style": "none",
+						"width": "0px"
+					},
+					"color": "var(--wp--preset--color--foreground)",
+					"left": {
+						"style": "none",
+						"width": "0px"
+					},
+					"right": {
+						"style": "none",
+						"width": "0px"
+					},
+					"style": "solid",
+					"top": {
+						"style": "none",
+						"width": "0px"
+					},
+					"width": "1px 0"
+				},
+				"color": {
+					"background": "var:preset|color|tertiary"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontFamily": "var:preset|font-family|rubik",
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"fontStyle": "normal",
+					"fontWeight": "900",
+					"lineHeight": "1.3",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--primary)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "normal"
+				}
+			},
+			"core/search": {
+				"border": {
+					"bottom": {
+						"style": "none",
+						"width": "0px"
+					},
+					"left": {
+						"style": "none",
+						"width": "0px"
+					},
+					"radius": "0px",
+					"right": {
+						"style": "none",
+						"width": "0px"
+					},
+					"top": {
+						"style": "none",
+						"width": "0px"
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.6"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "solid",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/site-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontWeight": "700",
+					"textTransform": "uppercase"
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":active": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--background)"
+					}
+				},
+				":focus": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--background)"
+					}
+				},
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--background)"
+					}
+				},
+				"border": {
+					"radius": "0.25rem"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--background)"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontFamily": "Rubik",
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"textTransform": "uppercase"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontFamily": "Rubik",
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"textTransform": "uppercase"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontFamily": "Rubik",
+					"fontSize": "clamp(1.5rem, calc(1.5rem + ((1vw - 0.48rem) * 0.4808)), 1.75rem)",
+					"textTransform": "uppercase"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontFamily": "Rubik",
+					"fontSize": "var:preset|font-size|medium",
+					"fontStyle": "normal",
+					"fontWeight": "600",
+					"textTransform": "uppercase"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontFamily": "Roboto",
+					"fontSize": "1.2rem",
+					"fontStyle": "normal",
+					"fontWeight": "600",
+					"letterSpacing": "0.02em",
+					"textTransform": "none"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontFamily": "Roboto",
+					"fontSize": "0.8rem",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"letterSpacing": "1px",
+					"textTransform": "uppercase"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--rubik)",
+					"fontWeight": "400",
+					"lineHeight": "1.125"
+				}
+			},
+			"link": {
+				":hover": {
+					"color": {
+						"text": "#545151"
+					},
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "1.5rem",
+			"padding": {
+				"bottom": "0px",
+				"left": "var(--wp--preset--spacing--50)",
+				"right": "var(--wp--preset--spacing--50)",
+				"top": "0px"
+			}
+		},
+		"typography": {
+			"fontFamily": "var:preset|font-family|roboto",
+			"fontSize": "16px",
+			"fontStyle": "normal",
+			"fontWeight": "300",
+			"lineHeight": "1.6"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}