Pārlūkot izejas kodu

Tronar: Add theme (#7463)

* Tronar: Add theme

* Make padding values objects

---------

Co-authored-by: Sarah Norris <sarah@sekai.co.uk>
Takashi Irie 1 gadu atpakaļ
vecāks
revīzija
d9f7c562fa
42 mainītis faili ar 1982 papildinājumiem un 0 dzēšanām
  1. BIN
      tronar/assets/fonts/source-sans-3_italic_200-900.ttf
  2. BIN
      tronar/assets/fonts/source-sans-3_normal_200-900.ttf
  3. BIN
      tronar/assets/fonts/spectral_italic_200.ttf
  4. BIN
      tronar/assets/fonts/spectral_italic_300.ttf
  5. BIN
      tronar/assets/fonts/spectral_italic_400.ttf
  6. BIN
      tronar/assets/fonts/spectral_italic_500.ttf
  7. BIN
      tronar/assets/fonts/spectral_italic_600.ttf
  8. BIN
      tronar/assets/fonts/spectral_italic_700.ttf
  9. BIN
      tronar/assets/fonts/spectral_italic_800.ttf
  10. BIN
      tronar/assets/fonts/spectral_normal_200.ttf
  11. BIN
      tronar/assets/fonts/spectral_normal_300.ttf
  12. BIN
      tronar/assets/fonts/spectral_normal_400.ttf
  13. BIN
      tronar/assets/fonts/spectral_normal_500.ttf
  14. BIN
      tronar/assets/fonts/spectral_normal_600.ttf
  15. BIN
      tronar/assets/fonts/spectral_normal_700.ttf
  16. BIN
      tronar/assets/fonts/spectral_normal_800.ttf
  17. 60 0
      tronar/functions.php
  18. 67 0
      tronar/parts/comments.html
  19. 1 0
      tronar/parts/footer.html
  20. 1 0
      tronar/parts/header-with-cover.html
  21. 1 0
      tronar/parts/header-with-sticky-post.html
  22. 1 0
      tronar/parts/header.html
  23. 15 0
      tronar/patterns/404.php
  24. 27 0
      tronar/patterns/footer.php
  25. 42 0
      tronar/patterns/header-with-cover.php
  26. 46 0
      tronar/patterns/header-with-sticky-post.php
  27. 20 0
      tronar/patterns/header.php
  28. 19 0
      tronar/patterns/latest-post-heading.php
  29. 11 0
      tronar/patterns/no-results-content.php
  30. 26 0
      tronar/patterns/post-author.php
  31. 48 0
      tronar/patterns/post-list.php
  32. 9 0
      tronar/patterns/search.php
  33. 58 0
      tronar/readme.txt
  34. BIN
      tronar/screenshot.png
  35. 65 0
      tronar/style.css
  36. 19 0
      tronar/templates/404.html
  37. 72 0
      tronar/templates/archive.html
  38. 54 0
      tronar/templates/index.html
  39. 15 0
      tronar/templates/page.html
  40. 60 0
      tronar/templates/search.html
  41. 29 0
      tronar/templates/single.html
  42. 1216 0
      tronar/theme.json

BIN
tronar/assets/fonts/source-sans-3_italic_200-900.ttf


BIN
tronar/assets/fonts/source-sans-3_normal_200-900.ttf


BIN
tronar/assets/fonts/spectral_italic_200.ttf


BIN
tronar/assets/fonts/spectral_italic_300.ttf


BIN
tronar/assets/fonts/spectral_italic_400.ttf


BIN
tronar/assets/fonts/spectral_italic_500.ttf


BIN
tronar/assets/fonts/spectral_italic_600.ttf


BIN
tronar/assets/fonts/spectral_italic_700.ttf


BIN
tronar/assets/fonts/spectral_italic_800.ttf


BIN
tronar/assets/fonts/spectral_normal_200.ttf


BIN
tronar/assets/fonts/spectral_normal_300.ttf


BIN
tronar/assets/fonts/spectral_normal_400.ttf


BIN
tronar/assets/fonts/spectral_normal_500.ttf


BIN
tronar/assets/fonts/spectral_normal_600.ttf


BIN
tronar/assets/fonts/spectral_normal_700.ttf


BIN
tronar/assets/fonts/spectral_normal_800.ttf


+ 60 - 0
tronar/functions.php

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

+ 67 - 0
tronar/parts/comments.html

@@ -0,0 +1,67 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
+	<div class="wp-block-comments wp-block-comments-query-loop">
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"0"}}},"layout":{"type":"default"}} -->
+		<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:0">
+			<!-- wp:comments-title {"level":3} /-->
+
+			<!-- wp:group {"layout":{"type":"constrained","justifyContent":"left"}} -->
+			<div class="wp-block-group">
+				<!-- wp:comment-template {"style":{"spacing":{"padding":{"left":"0px"}}}} -->
+					<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|60"}}}} -->
+					<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--60)">
+						<!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
+						<div class="wp-block-group">
+							<!-- wp:avatar {"size":56,"style":{"border":{"radius":"50%"}}} /-->
+
+							<!-- wp:group -->
+							<div class="wp-block-group">
+								<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+								<div class="wp-block-group">
+									<!-- wp:comment-author-name /-->
+
+									<!-- 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"} /-->
+
+										<!-- wp:comment-edit-link /-->
+									</div>
+									<!-- /wp:group -->
+
+									<!-- wp:comment-content /-->
+								</div>
+								<!-- /wp:group -->
+
+								<!-- wp:comment-reply-link /-->
+							</div>
+							<!-- /wp:group -->
+						</div>
+						<!-- /wp:group -->
+					</div>
+					<!-- /wp:group -->
+				<!-- /wp:comment-template -->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)">
+				<!-- wp:comments-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
+					<!-- wp:comments-pagination-previous /-->
+
+					<!-- wp:comments-pagination-next /-->
+				<!-- /wp:comments-pagination -->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
+			<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+				<!-- wp:post-comments-form {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60"}}}} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:group -->
+	</div>
+	<!-- /wp:comments -->
+</div>
+<!-- /wp:group -->

+ 1 - 0
tronar/parts/footer.html

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

+ 1 - 0
tronar/parts/header-with-cover.html

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

+ 1 - 0
tronar/parts/header-with-sticky-post.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"tronar/header-with-sticky-post"} /-->

+ 1 - 0
tronar/parts/header.html

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

+ 15 - 0
tronar/patterns/404.php

@@ -0,0 +1,15 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: tronar/404
+ * Inserter: no
+ */
+?>
+
+<!-- wp:heading {"level":1,"fontSize":"xx-large"} -->
+<h1 class="wp-block-heading has-xx-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can&rsquo;t be found.', 'tronar' ); ?></h1>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph -->
+<p><?php echo  esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'tronar' ); ?></p>
+<!-- /wp:paragraph -->

+ 27 - 0
tronar/patterns/footer.php

@@ -0,0 +1,27 @@
+<?php
+/**
+ * Title: Default Footer
+ * Slug: tronar/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ */
+?>
+
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+<div class="wp-block-group alignfull" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
+	<!-- wp:site-title {"level":0,"fontSize":"medium"} /-->
+
+	<!-- wp:paragraph {"fontSize":"small"} -->
+	<p class="has-small-font-size">
+		<?php
+			/* Translators: WordPress link. */
+			$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'tronar' ) ) . '" rel="nofollow">WordPress</a>';
+			echo sprintf(
+				esc_html__( 'Designed with %1$s', 'tronar' ),
+				$wordpress_link
+			);
+		?>
+	</p>
+	<!-- /wp:paragraph -->
+</div>
+<!-- /wp:group -->

+ 42 - 0
tronar/patterns/header-with-cover.php

@@ -0,0 +1,42 @@
+<?php
+/**
+ * Title: Header with Cover
+ * Slug: tronar/header-with-cover
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+	<!-- wp:cover {"useFeaturedImage":true,"dimRatio":20,"isUserOverlayColor":true,"focalPoint":{"x":0.5,"y":0.7},"minHeight":60,"minHeightUnit":"vh","customGradient":"linear-gradient(180deg,rgb(0,0,0) 0%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 55%,rgb(0,0,0) 100%)","contentPosition":"center center","isDark":false,"style":{"spacing":{"margin":{"top":"0px","bottom":"var:preset|spacing|60"},"padding":{"top":"0px","bottom":"0px","left":"0px","right":"0px"}}},"layout":{"type":"default"}} -->
+	<div class="wp-block-cover is-light" style="margin-top:0px;margin-bottom:var(--wp--preset--spacing--60);padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;min-height:60vh"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-20 has-background-dim has-background-gradient" style="background:linear-gradient(180deg,rgb(0,0,0) 0%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 55%,rgb(0,0,0) 100%)"></span>
+		<div class="wp-block-cover__inner-container">
+			<!-- wp:group {"align":"wide","style":{"dimensions":{"minHeight":"60vh"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"space-between"}} -->
+			<div class="wp-block-group alignwide" style="min-height:60vh">
+				<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}},"layout":{"selfStretch":"fit","flexSize":null},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+				<div class="wp-block-group alignwide has-base-color has-text-color has-link-color" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
+					<!-- wp:site-title {"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+
+					<!-- wp:navigation {"align":"wide","layout":{"type":"flex"}} /-->
+				</div>
+				<!-- /wp:group -->
+
+				<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|60","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+				<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)">
+					<!-- wp:group {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}},"spacing":{"blockGap":"var:preset|spacing|40"}},"textColor":"base","layout":{"type":"flex","orientation":"vertical"}} -->
+					<div class="wp-block-group alignwide has-base-color has-text-color has-link-color">
+						<!-- wp:post-date /-->
+
+						<!-- wp:post-title {"level":1,"style":{"typography":{"lineHeight":"1.056603774"}},"fontSize":"xxx-large"} /-->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:group -->
+			</div>
+			<!-- /wp:group -->
+		</div>
+	</div>
+	<!-- /wp:cover -->
+</div>
+<!-- /wp:group -->

+ 46 - 0
tronar/patterns/header-with-sticky-post.php

@@ -0,0 +1,46 @@
+<?php
+/**
+ * Title: Header with Sticky Post
+ * Slug: tronar/header-with-sticky-post
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:query {"query":{"perPage":"1","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"only","inherit":false}} -->
+<div class="wp-block-query">
+	<!-- wp:post-template {"layout":{"type":"default"}} -->
+		<!-- wp:cover {"useFeaturedImage":true,"dimRatio":20,"isUserOverlayColor":true,"focalPoint":{"x":0.5,"y":0.7},"minHeight":60,"minHeightUnit":"vh","customGradient":"linear-gradient(180deg,rgb(0,0,0) 0%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 55%,rgb(0,0,0) 100%)","contentPosition":"center center","isDark":false,"style":{"spacing":{"margin":{"top":"0px","bottom":"var:preset|spacing|60"},"padding":{"top":"0px","bottom":"0px","left":"0px","right":"0px"}}},"layout":{"type":"default"}} -->
+		<div class="wp-block-cover is-light" style="margin-top:0px;margin-bottom:var(--wp--preset--spacing--60);padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;min-height:60vh"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-20 has-background-dim has-background-gradient" style="background:linear-gradient(180deg,rgb(0,0,0) 0%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 55%,rgb(0,0,0) 100%)"></span>
+			<div class="wp-block-cover__inner-container">
+				<!-- wp:group {"align":"wide","style":{"dimensions":{"minHeight":"60vh"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"space-between"}} -->
+				<div class="wp-block-group alignwide" style="min-height:60vh">
+					<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}},"layout":{"selfStretch":"fit","flexSize":null},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+					<div class="wp-block-group alignwide has-base-color has-text-color has-link-color" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
+						<!-- wp:site-title {"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+
+						<!-- wp:navigation {"align":"wide","layout":{"type":"flex"}} /-->
+					</div>
+					<!-- /wp:group -->
+
+					<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|60","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+					<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)">
+						<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|40"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+						<div class="wp-block-group alignwide has-base-color has-text-color has-link-color">
+							<!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"600","letterSpacing":"0px"}},"fontSize":"small","fontFamily":"source-sans-3"} -->
+							<p class="has-source-sans-3-font-family has-small-font-size" style="font-style:normal;font-weight:600;letter-spacing:0px"><?php echo esc_html__( 'Featured', 'tronar' ); ?></p>
+							<!-- /wp:paragraph -->
+
+							<!-- wp:post-title {"level":3,"isLink":true,"style":{"typography":{"lineHeight":"1.056603774"}},"fontSize":"xxx-large"} /-->
+						</div>
+						<!-- /wp:group -->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:group -->
+			</div>
+		</div>
+		<!-- /wp:cover -->
+	<!-- /wp:post-template -->
+</div>
+<!-- /wp:query -->

+ 20 - 0
tronar/patterns/header.php

@@ -0,0 +1,20 @@
+<?php
+/**
+ * Title: Default Header
+ * Slug: tronar/header
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"bottom":{"color":"var:preset|color|secondary","width":"1px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="border-bottom-color:var(--wp--preset--color--secondary);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
+	<!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
+	<div class="wp-block-group alignwide">
+		<!-- wp:site-title {"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+
+		<!-- wp:navigation {"align":"wide","layout":{"type":"flex"}} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 19 - 0
tronar/patterns/latest-post-heading.php

@@ -0,0 +1,19 @@
+<?php
+/**
+ * Title: Latest Posts Heading
+ * Slug: tronar/latest-post-heading
+ * Inserter: no
+ */
+?>
+
+<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0.5rem","margin":{"bottom":"var:preset|spacing|60"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignwide" style="margin-bottom:var(--wp--preset--spacing--60)">
+	<!-- wp:heading {"style":{"typography":{"fontStyle":"normal","fontWeight":"600","letterSpacing":"0px"}},"fontSize":"small","fontFamily":"source-sans-3"} -->
+	<h2 class="wp-block-heading has-source-sans-3-font-family has-small-font-size" style="font-style:normal;font-weight:600;letter-spacing:0px"><?php echo esc_html__( 'Latest Posts', 'tronar' ); ?></h2>
+	<!-- /wp:heading -->
+
+	<!-- wp:separator -->
+	<hr class="wp-block-separator has-alpha-channel-opacity"/>
+	<!-- /wp:separator -->
+</div>
+<!-- /wp:group -->

+ 11 - 0
tronar/patterns/no-results-content.php

@@ -0,0 +1,11 @@
+<?php
+/**
+ * Title: No Results Content
+ * Slug: tronar/no-results-content
+ * Inserter: no
+ */
+?>
+
+<!-- wp:paragraph -->
+<p><?php echo esc_html_x( 'Sorry, but nothing found. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'tronar' ); ?></p>
+<!-- /wp:paragraph -->

+ 26 - 0
tronar/patterns/post-author.php

@@ -0,0 +1,26 @@
+<?php
+/**
+ * Title: Post Author
+ * Slug: tronar/post-author
+ * Categories: featured, text
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"1rem","padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|secondary","width":"1px"},"right":{},"bottom":{},"left":{}}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
+<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--secondary);border-top-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+	<!-- wp:avatar {"size":56} /-->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group">
+		<!-- wp:paragraph {"fontSize":"small","fontFamily":"source-sans-3"} -->
+		<p class="has-source-sans-3-font-family has-small-font-size">Published by</p>
+		<!-- /wp:paragraph -->
+
+		<!-- wp:post-author-name {"isLink":true} /-->
+
+		<!-- wp:post-author-biography /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->
+

+ 48 - 0
tronar/patterns/post-list.php

@@ -0,0 +1,48 @@
+<?php
+/**
+ * Title: Post List
+ * Slug: tronar/post-list
+ * Categories: featured, posts
+ */
+?>
+
+<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)">
+	<!-- wp:query {"query":{"perPage":"10","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":false},"enhancedPagination":true,"align":"wide"} -->
+	<div class="wp-block-query alignwide">
+		<!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}},"layout":{"type":"default","columnCount":3}} -->
+			<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|60"}}}} -->
+			<div class="wp-block-columns">
+				<!-- wp:column {"width":"71.5%","style":{"spacing":{"blockGap":"var:preset|spacing|40"}}} -->
+				<div class="wp-block-column" style="flex-basis:71.5%">
+					<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"0px"}}}} /-->
+
+					<!-- wp:post-title {"level":3,"isLink":true} /-->
+
+					<!-- wp:post-excerpt {"moreText":"Continue reading","showMoreOnNewLine":false,"excerptLength":40} /--></div>
+				<!-- /wp:column -->
+
+				<!-- wp:column {"width":"28.5%"} -->
+				<div class="wp-block-column" style="flex-basis:28.5%">
+					<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
+				</div>
+				<!-- /wp:column -->
+			</div>
+			<!-- /wp:columns -->
+		<!-- /wp:post-template -->
+
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60"}}},"layout":{"type":"default"},"fontSize":"x-large"} -->
+		<div class="wp-block-group has-x-large-font-size" style="margin-top:var(--wp--preset--spacing--60)">
+			<!-- wp:query-pagination {"paginationArrow":"arrow","showLabel":false,"layout":{"type":"flex","justifyContent":"center"}} -->
+				<!-- wp:query-pagination-previous /-->
+
+				<!-- wp:query-pagination-numbers /-->
+
+				<!-- wp:query-pagination-next /-->
+			<!-- /wp:query-pagination -->
+		</div>
+		<!-- /wp:group -->
+	</div>
+	<!-- /wp:query -->
+</div>
+<!-- /wp:group -->

+ 9 - 0
tronar/patterns/search.php

@@ -0,0 +1,9 @@
+<?php
+/**
+ * Title: Search
+ * Slug: tronar/search
+ * Inserter: no
+ */
+?>
+
+<!-- wp:search {"label":"Search","showLabel":false,"placeholder":"<?php echo esc_html_x( 'Search...', 'This is a placeholder text in a search field', 'tronar' ); ?>","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true} /-->

+ 58 - 0
tronar/readme.txt

@@ -0,0 +1,58 @@
+=== Tronar ===
+Contributors: Automattic
+Requires at least: 6.0
+Tested up to: 6.3
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Tronar is a simple blog theme. It works best with featured images. The latest sticky post appears at the top with a large featured image.
+
+== Changelog ==
+
+= 1.0.0 =
+* Initial release
+
+== Copyright ==
+
+Tronar is based on Annalee (https://wordpress.com/theme/annalee/), (C) Automattic, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
+
+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.
+
+This theme bundles the following third-party resources:
+
+Spectral Font
+Copyright 2017 The Spectral Project Authors (http://github.com/productiontype/spectral) 
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL 
+License URL: http://scripts.sil.org/OFL 
+Source: https://www.productiontype.com/
+-- End of Spectral Font credits --
+
+Source Sans 3 Font
+© 2023 Adobe (http://www.adobe.com/), with Reserved Font Name ‘Source’ 
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL. This Font Software is distributed on an ‘AS IS’... 
+License URL: http://scripts.sil.org/OFL 
+Source: http://www.adobe.com/type
+-- End of Source Sans 3 Font credits --
+
+Included in theme screenshot:
+
+Stockport, United Kingdom. Original public domain image from Wikimedia Commons.
+CC0 Public Domain
+https://www.rawpixel.com/image/3283361/free-photo-image-backpack-bicycle
+
+Free window light image, public domain nature CC0 photo.
+CC0 Public Domain
+https://www.rawpixel.com/image/5912183/image-light-public-domain-leaves
+
+

BIN
tronar/screenshot.png


+ 65 - 0
tronar/style.css

@@ -0,0 +1,65 @@
+/*
+Theme Name: Tronar
+Theme URI: https://wordpress.com/theme/tronar/
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Tronar is a simple blog theme. It works best with featured images. The latest sticky post appears at the top with a large featured image.
+Requires at least: 6.0
+Tested up to: 6.3
+Requires PHP: 5.7
+Version: 1.0.0
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Text Domain: tronar
+Tags: blog, one-column, wide-blocks, block-patterns, block-styles, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready
+*/
+
+/*
+ * 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--primary);
+	border-color: var(--wp--preset--color--primary);
+	color: var(--wp--preset--color--base);
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-thickness: 0.5px !important;
+	text-underline-offset: 2px;
+}
+
+/*
+ * Navigation Block
+ * Reset the padding from List block
+ * https://github.com/WordPress/gutenberg/issues/50486
+ */
+.wp-block-navigation ul {
+	padding: unset;
+}
+
+/*
+ * Pull quote Block
+ * Reset the browser default margins for blockquote and paragraph element
+ * https://github.com/WordPress/gutenberg/issues/44129
+ */
+.wp-block-pullquote blockquote,
+.wp-block-pullquote p {
+	margin: 0;
+}
+
+/*
+ * Form field styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+input:not([type="submit"]):not([type="checkbox"]),
+textarea,
+.wp-block-post-comments-form input:not([type=submit]),
+.wp-block-post-comments-form textarea {
+	border-color: var(--wp--preset--color--secondary);
+}

+ 19 - 0
tronar/templates/404.html

@@ -0,0 +1,19 @@
+<!-- wp:template-part {"slug":"header","tagName":"header","align":"full"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"default"}} -->
+	<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
+		<!-- wp:pattern {"slug":"tronar/404"} /-->
+
+		<!-- wp:pattern {"slug":"tronar/search"} /-->
+	</div>
+	<!-- /wp:group -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group " style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+</div>
+<!-- /wp:group -->

+ 72 - 0
tronar/templates/archive.html

@@ -0,0 +1,72 @@
+<!-- wp:template-part {"slug":"header","tagName":"header","align":"full"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"},"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
+		<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|60"}}}} -->
+		<div class="wp-block-columns">
+			<!-- wp:column {"width":"71.5%"} -->
+			<div class="wp-block-column" style="flex-basis:71.5%">
+				<!-- wp:query-title {"type":"archive","showPrefix":false} /-->
+
+				<!-- wp:term-description {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
+			</div>
+			<!-- /wp:column -->
+
+			<!-- wp:column {"width":"28.5%"} -->
+			<div class="wp-block-column" style="flex-basis:28.5%"></div>
+			<!-- /wp:column -->
+		</div>
+		<!-- /wp:columns -->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
+		<!-- wp:query {"query":{"perPage":"10","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":true},"enhancedPagination":true,"align":"wide"} -->
+		<div class="wp-block-query alignwide">
+			<!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}},"layout":{"type":"default","columnCount":3}} -->
+				<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|60"}}}} -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"71.5%","style":{"spacing":{"blockGap":"var:preset|spacing|40"}}} -->
+					<div class="wp-block-column" style="flex-basis:71.5%">
+						<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"0px"}}}} /-->
+
+						<!-- wp:post-title {"level":3,"isLink":true} /-->
+
+						<!-- wp:post-excerpt {"moreText":"Continue reading","showMoreOnNewLine":false,"excerptLength":40} /--></div>
+					<!-- /wp:column -->
+
+					<!-- wp:column {"width":"28.5%"} -->
+					<div class="wp-block-column" style="flex-basis:28.5%">
+						<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
+					</div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+			<!-- /wp:post-template -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60"}}},"layout":{"type":"default"},"fontSize":"x-large"} -->
+			<div class="wp-block-group has-x-large-font-size" style="margin-top:var(--wp--preset--spacing--60)">
+				<!-- wp:query-pagination {"paginationArrow":"arrow","showLabel":false,"layout":{"type":"flex","justifyContent":"center"}} -->
+					<!-- wp:query-pagination-previous /-->
+
+					<!-- wp:query-pagination-numbers /-->
+
+					<!-- wp:query-pagination-next /-->
+				<!-- /wp:query-pagination -->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:query -->
+	</div>
+	<!-- /wp:group -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group " style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+</div>
+<!-- /wp:group -->

+ 54 - 0
tronar/templates/index.html

@@ -0,0 +1,54 @@
+<!-- wp:template-part {"slug":"header-with-sticky-post","tagName":"header","align":"full"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
+		<!-- wp:pattern {"slug":"tronar/latest-post-heading"} /-->
+
+		<!-- wp:query {"query":{"perPage":"10","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":false},"enhancedPagination":true,"align":"wide"} -->
+		<div class="wp-block-query alignwide">
+			<!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}},"layout":{"type":"default","columnCount":3}} -->
+				<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|60"}}}} -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"71.5%","style":{"spacing":{"blockGap":"var:preset|spacing|40"}}} -->
+					<div class="wp-block-column" style="flex-basis:71.5%">
+						<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"0px"}}}} /-->
+
+						<!-- wp:post-title {"level":3,"isLink":true} /-->
+
+						<!-- wp:post-excerpt {"moreText":"Continue reading","showMoreOnNewLine":false,"excerptLength":40} /--></div>
+					<!-- /wp:column -->
+
+					<!-- wp:column {"width":"28.5%"} -->
+					<div class="wp-block-column" style="flex-basis:28.5%">
+						<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
+					</div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+			<!-- /wp:post-template -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60"}}},"layout":{"type":"default"},"fontSize":"x-large"} -->
+			<div class="wp-block-group has-x-large-font-size" style="margin-top:var(--wp--preset--spacing--60)">
+				<!-- wp:query-pagination {"paginationArrow":"arrow","showLabel":false,"layout":{"type":"flex","justifyContent":"center"}} -->
+					<!-- wp:query-pagination-previous /-->
+
+					<!-- wp:query-pagination-numbers /-->
+
+					<!-- wp:query-pagination-next /-->
+				<!-- /wp:query-pagination -->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:query -->
+	</div>
+	<!-- /wp:group -->
+</main>
+	<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group " style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+</div>
+<!-- /wp:group -->

+ 15 - 0
tronar/templates/page.html

@@ -0,0 +1,15 @@
+<!-- wp:template-part {"slug":"header-with-cover","tagName":"header","align":"full"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"var:preset|spacing|60"}}},"layout":{"type":"default"}} -->
+<main class="wp-block-group" style="margin-top:0px;margin-bottom:var(--wp--preset--spacing--60)">
+	<!-- wp:post-content {"layout":{"type":"constrained","justifyContent":"center"}} /-->
+
+	<!-- wp:template-part {"slug":"comments","theme":"tronar"} /-->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group " style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+</div>
+<!-- /wp:group -->

+ 60 - 0
tronar/templates/search.html

@@ -0,0 +1,60 @@
+<!-- wp:template-part {"slug":"header","tagName":"header","align":"full"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"default"}} -->
+	<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
+		<!-- wp:pattern {"slug":"tronar/search"} /-->
+
+		<!-- wp:query-title {"type":"search"} /-->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
+		<!-- wp:query {"query":{"perPage":"10","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":true},"enhancedPagination":true,"align":"wide"} -->
+		<div class="wp-block-query alignwide">
+			<!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}},"layout":{"type":"default","columnCount":3}} -->
+				<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|60"}}}} -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"71.5%","style":{"spacing":{"blockGap":"var:preset|spacing|40"}}} -->
+					<div class="wp-block-column" style="flex-basis:71.5%">
+						<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"0px"}}}} /-->
+
+						<!-- wp:post-title {"level":3,"isLink":true} /-->
+
+						<!-- wp:post-excerpt {"moreText":"Continue reading","showMoreOnNewLine":false,"excerptLength":40} /--></div>
+					<!-- /wp:column -->
+
+					<!-- wp:column {"width":"28.5%"} -->
+					<div class="wp-block-column" style="flex-basis:28.5%">
+						<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
+					</div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+			<!-- /wp:post-template -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60"}}},"layout":{"type":"default"},"fontSize":"x-large"} -->
+			<div class="wp-block-group has-x-large-font-size" style="margin-top:var(--wp--preset--spacing--60)">
+				<!-- wp:query-pagination {"paginationArrow":"arrow","showLabel":false,"layout":{"type":"flex","justifyContent":"center"}} -->
+					<!-- wp:query-pagination-previous /-->
+
+					<!-- wp:query-pagination-numbers /-->
+
+					<!-- wp:query-pagination-next /-->
+				<!-- /wp:query-pagination -->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:query -->
+	</div>
+	<!-- /wp:group -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group " style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
tronar/templates/single.html

@@ -0,0 +1,29 @@
+<!-- wp:template-part {"slug":"header-with-cover","tagName":"header","align":"full"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"var:preset|spacing|60"}}},"layout":{"type":"default"}} -->
+<main class="wp-block-group" style="margin-top:0px;margin-bottom:var(--wp--preset--spacing--60)">
+	<!-- wp:post-content {"layout":{"type":"constrained","justifyContent":"center"}} /-->
+
+	<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"0px"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:0px">
+		<!-- wp:pattern {"slug":"tronar/post-author"} /-->
+
+		<!-- wp:group {"style":{"spacing":{"blockGap":"0px","padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|secondary","width":"1px"},"right":{},"bottom":{"color":"var:preset|color|secondary","width":"1px"},"left":{}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+		<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--secondary);border-top-width:1px;border-bottom-color:var(--wp--preset--color--secondary);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+			<!-- wp:post-terms {"term":"category","prefix":"Categories: "} /-->
+
+			<!-- wp:post-terms {"term":"post_tag","prefix":"Tags: "} /-->
+		</div>
+		<!-- /wp:group -->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:template-part {"slug":"comments","theme":"tronar"} /-->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group " style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+</div>
+<!-- /wp:group -->

+ 1216 - 0
tronar/theme.json

@@ -0,0 +1,1216 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"background": true,
+			"custom": true,
+			"customDuotone": true,
+			"customGradient": true,
+			"defaultDuotone": false,
+			"defaultGradients": false,
+			"defaultPalette": false,
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#ffffff",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#232323",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#0070f6",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#e5e5e5",
+					"name": "Secondary",
+					"slug": "secondary"
+				}
+			],
+			"text": true
+		},
+		"layout": {
+			"contentSize": "700px",
+			"wideSize": "960px"
+		},
+		"shadow": {
+			"defaultPresets": true,
+			"presets": []
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"steps": 0
+			},
+			"spacingSizes": [
+				{
+					"name": "1",
+					"size": "0.25rem",
+					"slug": "30"
+				},
+				{
+					"name": "2",
+					"size": "0.5rem",
+					"slug": "40"
+				},
+				{
+					"name": "3",
+					"size": "min(2rem, 5vw)",
+					"slug": "50"
+				},
+				{
+					"name": "4",
+					"size": "min(4rem, 10vw)",
+					"slug": "60"
+				},
+				{
+					"name": "5",
+					"size": "min(6rem, 15vw)",
+					"slug": "70"
+				},
+				{
+					"name": "6",
+					"size": "min(8rem, 20vw)",
+					"slug": "80"
+				}
+			],
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"customFontSize": true,
+			"dropCap": true,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "normal",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/spectral_normal_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "italic",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/spectral_italic_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/spectral_normal_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/spectral_italic_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/spectral_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/spectral_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/spectral_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/spectral_italic_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "normal",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/spectral_normal_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "italic",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/spectral_italic_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/spectral_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/spectral_italic_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "normal",
+							"fontWeight": "800",
+							"src": [
+								"file:./assets/fonts/spectral_normal_800.ttf"
+							]
+						},
+						{
+							"fontFamily": "Spectral",
+							"fontStyle": "italic",
+							"fontWeight": "800",
+							"src": [
+								"file:./assets/fonts/spectral_italic_800.ttf"
+							]
+						}
+					],
+					"fontFamily": "Spectral",
+					"slug": "spectral"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Source_Sans_3",
+							"fontStyle": "normal",
+							"fontWeight": "200 900",
+							"src": [
+								"file:./assets/fonts/source-sans-3_normal_200-900.ttf"
+							]
+						},
+						{
+							"fontFamily": "Source_Sans_3",
+							"fontStyle": "italic",
+							"fontWeight": "200 900",
+							"src": [
+								"file:./assets/fonts/source-sans-3_italic_200-900.ttf"
+							]
+						}
+					],
+					"fontFamily": "Source_Sans_3",
+					"slug": "source-sans-3"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": {
+						"max": "0.88rem",
+						"min": "0.704rem"
+					},
+					"name": "Extra Small",
+					"size": "0.88rem",
+					"slug": "x-small"
+				},
+				{
+					"fluid": {
+						"max": "1.1rem",
+						"min": "0.88rem"
+					},
+					"name": "Small",
+					"size": "1.1rem",
+					"slug": "small"
+				},
+				{
+					"fluid": {
+						"max": "1.375rem",
+						"min": "1.1rem"
+					},
+					"name": "Medium",
+					"size": "1.375rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": {
+						"max": "1.719rem",
+						"min": "1.375rem"
+					},
+					"name": "Large",
+					"size": "1.719rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "2.148rem",
+						"min": "1.719rem"
+					},
+					"name": "Extra Large",
+					"size": "2.148rem",
+					"slug": "x-large"
+				},
+				{
+					"fluid": {
+						"max": "2.686rem",
+						"min": "2.148rem"
+					},
+					"name": "Double Extra Large",
+					"size": "2.686rem",
+					"slug": "xx-large"
+				},
+				{
+					"fluid": {
+						"max": "3.357rem",
+						"min": "2.686rem"
+					},
+					"name": "Triple Extra Large",
+					"size": "3.357rem",
+					"slug": "xxx-large"
+				}
+			],
+			"fontStyle": true,
+			"fontWeight": true,
+			"letterSpacing": true,
+			"textDecoration": true,
+			"textTransform": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/archives": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/avatar": {
+				"border": {
+					"radius": "999px"
+				}
+			},
+			"core/button": {
+				"variations": {
+					"outline": {
+						"spacing": {
+							"padding": {
+								"bottom": "0.84375rem",
+								"left": "1.75rem",
+								"right": "1.75rem",
+								"top": "0.84375rem"
+							}
+						}
+					}
+				}
+			},
+			"core/buttons": {
+				"spacing": {
+					"blockGap": "var(--wp--preset--spacing--40)"
+				}
+			},
+			"core/calendar": {
+				"css": ".wp-block-calendar table:where(:not(.has-text-color)) {color: var(--wp--preset--color--contrast);} &.wp-block-calendar table:where(:not(.has-text-color)) td {border-color: var(--wp--preset--color--contrast);} &.wp-block-calendar table:where(:not(.has-text-color)) th {border-color: var(--wp--preset--color--contrast);} & :where(.wp-block-calendar table:not(.has-background) th) {background-color: var(--wp--preset--color--contrast);color: var(--wp--preset--color--base);}"
+			},
+			"core/categories": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"radius": "0",
+					"style": "solid",
+					"width": "1px"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"left": "var(--wp--preset--spacing--40)",
+						"right": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"fontFamily": "monospace",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/comment-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/comment-content": {
+				"css": "& p{margin:0;}& p+p{margin-top:1.75rem;}",
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/comment-date": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/comment-edit-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/comment-reply-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"border": {
+								"color": "var(--wp--preset--color--primary)"
+							},
+							"color": {
+								"background": "var(--wp--preset--color--primary)",
+								"text": "var(--wp--preset--color--base)"
+							}
+						},
+						"border": {
+							"color": "var(--wp--preset--color--contrast)",
+							"radius": "0",
+							"style": "solid",
+							"width": "1.5px"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "0 0.5rem",
+								"left": "0 0.5rem",
+								"right": "0 0.5rem",
+								"top": "0 0.5rem"
+							}
+						},
+						"typography": {
+							"fontSize": "var(--wp--preset--font-size--x-small)",
+							"letterSpacing": "0.04em",
+							"textDecoration": "none",
+							"textTransform": "uppercase"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"fontWeight": "500",
+					"letterSpacing": "normal",
+					"lineHeight": "1"
+				}
+			},
+			"core/comments-pagination": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/comments-title": {
+				"spacing": {
+					"margin": {
+						"bottom": "0"
+					}
+				}
+			},
+			"core/cover": {
+				"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)"
+					}
+				}
+			},
+			"core/details": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "normal",
+					"fontWeight": "500"
+				}
+			},
+			"core/footnotes": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/image": {
+				"css": " .wp-element-caption{text-align:center;}"
+			},
+			"core/latest-comments": {
+				"css": " .wp-block-latest-comments__comment-author{font-size: inherit;} & .wp-block-latest-comments__comment-date{font-size: inherit;} & .wp-block-latest-comments__comment-excerpt p{font-size: inherit;} & .wp-block-latest-comments__comment-excerpt p{margin:0 0 var(--wp--style--block-gap)} &:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:inherit;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "0px"
+					}
+				}
+			},
+			"core/latest-posts": {
+				"css": " .wp-block-latest-posts__post-author{font-size: inherit;} & .wp-block-latest-posts__post-date{font-size: inherit;} & .wp-block-latest-posts__post-excerpt{margin:0 0 var(--wp--style--block-gap)}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--40)"
+					}
+				}
+			},
+			"core/navigation": {
+				"css": ".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {border-color: var(--wp--preset--color--contrast);}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"blockGap": "var(--wp--preset--spacing--50)"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/page-list": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/paragraph": {
+				"typography": {
+					"lineHeight": "calc(1em + 0.625rem)"
+				}
+			},
+			"core/post-author": {
+				"css": ".wp-block-post-author .wp-block-post-author__byline{font-size:inherit;}&.wp-block-post-author .wp-block-post-author__name a{text-decoration:none;}&.wp-block-post-author .wp-block-post-author__bio{font-size:inherit;margin:0;}& .wp-block-post-author__avatar img{border-radius: 999px;margin-top:4px;vertical-align:middle;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-author-biography": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-comments-count": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-comments-form": {
+				"css": ".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]){line-height: inherit;}&.wp-block-post-comments-form .comment-form textarea{line-height: inherit;}&.wp-block-post-comments-form .form-submit {margin-bottom: 0;}&.wp-block-post-comments-form .comment-form > *:not(.comment-form-cookies-consent,.comment-subscription-form){margin-top:var(--wp--preset--spacing--50);margin-bottom:0;}}",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-comments-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-date": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-excerpt": {
+				"css": ".wp-block-post-excerpt .wp-block-post-excerpt__excerpt{line-height: inherit;}"
+			},
+			"core/post-featured-image": {
+				"border": {
+					"radius": "2px"
+				}
+			},
+			"core/post-navigation-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"letterSpacing": "normal"
+				}
+			},
+			"core/post-terms": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-time-to-read": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"fontStyle": "normal",
+					"lineHeight": "1.163873371"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"style": "solid",
+					"width": "4px 0"
+				},
+				"css": ".wp-block-pullquote cite {display:block;margin-top: var(--wp--preset--spacing--50)}",
+				"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": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "italic"
+				}
+			},
+			"core/query-pagination": {
+				"css": ".wp-block-query-pagination .wp-block-query-pagination-next{margin-bottom:5px;}&.wp-block-query-pagination .wp-block-query-pagination-previous{margin-bottom:0;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"letterSpacing": "normal",
+					"lineHeight": "1.018033741"
+				}
+			},
+			"core/query-pagination-numbers": {
+				"css": ".wp-block-query-pagination-numbers{margin-bottom:0;} &.wp-block-query-pagination-numbers>*{padding:0 5px;}",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.2727272"
+				}
+			},
+			"core/query-title": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xx-large)",
+					"lineHeight": "1.023827252"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"style": "solid",
+					"width": "0 0 0 4px"
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "italic"
+				},
+				"variations": {
+					"plain": {
+						"border": {
+							"width": "0"
+						},
+						"spacing": {
+							"padding": {
+								"left": "0"
+							}
+						},
+						"typography": {
+							"fontStyle": "normal"
+						}
+					}
+				}
+			},
+			"core/read-more": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/rss": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/search": {
+				"css": "& :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button.has-icon {padding:0.75rem} ",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "solid",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--secondary)"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"core/site-title": {
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "inherit"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontWeight": "600",
+					"letterSpacing": "normal",
+					"lineHeight": "1"
+				}
+			},
+			"core/social-links": {
+				"spacing": {
+					"blockGap": {
+						"left": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				}
+			},
+			"core/table": {
+				"css": " thead{border-bottom-width: 1px;} & tfoot{border-top-width: 1px;} & + .wp-element-caption{text-align:center;}"
+			},
+			"core/table-of-contents": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/tag-cloud": {
+				"css": ".wp-block-tag-cloud.is-style-outline{font-size:var(--wp--preset--font-size--small)}&.wp-block-tag-cloud.is-style-outline a {border-radius: 999px;padding: 0 1rem;}&.wp-block-tag-cloud.is-style-outline a:hover {color: var(--wp--preset--color--base);background-color: var(--wp--preset--color--primary);}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"letterSpacing": "normal"
+				}
+			},
+			"core/term-description": {
+				"css": ".wp-block-term-description p+p{margin-top:var(--wp--preset--spacing--50)}",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--base)",
+			"text": "var(--wp--preset--color--contrast)"
+		},
+		"elements": {
+			"button": {
+				":active": {
+					"color": {
+						"background": "var(--wp--preset--color--contrast)"
+					}
+				},
+				":focus": {
+					"color": {
+						"background": "var(--wp--preset--color--contrast)"
+					}
+				},
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--contrast)"
+					}
+				},
+				"border": {
+					"radius": "0"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--base)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "0.96875rem",
+						"left": "1.875rem",
+						"right": "1.875rem",
+						"top": "0.96875rem"
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--source-sans-3)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"fontWeight": "600",
+					"letterSpacing": "0.04em",
+					"lineHeight": "1",
+					"textTransform": "uppercase"
+				}
+			},
+			"caption": {
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--30)"
+					},
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xx-large)",
+					"lineHeight": "1.023827252"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"lineHeight": "1.163873371"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"lineHeight": "1.308900524"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.454545455"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.590909091"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"lineHeight": "1.714285714"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontWeight": "600"
+				}
+			},
+			"link": {
+				":hover": {
+					"color": {
+						"text": "var(--wp--preset--color--contrast)"
+					},
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "var(--wp--preset--spacing--50)",
+			"padding": {
+				"bottom": "0",
+				"left": "var(--wp--preset--spacing--50)",
+				"right": "var(--wp--preset--spacing--50)",
+				"top": "0"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--spectral)",
+			"fontSize": "var(--wp--preset--font-size--medium)",
+			"fontStyle": "normal",
+			"fontWeight": "400",
+			"letterSpacing": "-0.011em",
+			"lineHeight": "1.454545455"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "uncategorized",
+			"name": "comments",
+			"title": "Comments"
+		},
+		{
+			"area": "header",
+			"name": "header",
+			"title": "Header"
+		},
+		{
+			"area": "header",
+			"name": "header-with-sticky-post",
+			"title": "Header with Sticky Post"
+		},
+		{
+			"area": "header",
+			"name": "header-with-cover",
+			"title": "Header with Cover"
+		},
+		{
+			"area": "footer",
+			"name": "footer",
+			"title": "Footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}