Quellcode durchsuchen

SND: Add theme (#7270)

Co-authored-by: Jason Crist <jcrist@pbking.com>
alaczek vor 2 Jahren
Ursprung
Commit
ed08da8188
45 geänderte Dateien mit 1964 neuen und 0 gelöschten Zeilen
  1. BIN
      snd/assets/fonts/lato_italic_100.ttf
  2. BIN
      snd/assets/fonts/lato_italic_300.ttf
  3. BIN
      snd/assets/fonts/lato_italic_400.ttf
  4. BIN
      snd/assets/fonts/lato_italic_700.ttf
  5. BIN
      snd/assets/fonts/lato_italic_900.ttf
  6. BIN
      snd/assets/fonts/lato_normal_100.ttf
  7. BIN
      snd/assets/fonts/lato_normal_300.ttf
  8. BIN
      snd/assets/fonts/lato_normal_400.ttf
  9. BIN
      snd/assets/fonts/lato_normal_700.ttf
  10. BIN
      snd/assets/fonts/lato_normal_900.ttf
  11. BIN
      snd/assets/fonts/lora_italic_400.ttf
  12. BIN
      snd/assets/fonts/lora_italic_500.ttf
  13. BIN
      snd/assets/fonts/lora_italic_600.ttf
  14. BIN
      snd/assets/fonts/lora_italic_700.ttf
  15. BIN
      snd/assets/fonts/lora_normal_400.ttf
  16. BIN
      snd/assets/fonts/lora_normal_500.ttf
  17. BIN
      snd/assets/fonts/lora_normal_600.ttf
  18. BIN
      snd/assets/fonts/lora_normal_700.ttf
  19. 60 0
      snd/functions.php
  20. 2 0
      snd/index.php
  21. 1 0
      snd/parts/footer.html
  22. 1 0
      snd/parts/header-front.html
  23. 1 0
      snd/parts/header.html
  24. 13 0
      snd/parts/post-meta.html
  25. 18 0
      snd/patterns/404.php
  26. 49 0
      snd/patterns/comments.php
  27. 22 0
      snd/patterns/footer.php
  28. 15 0
      snd/patterns/header-front.php
  29. 16 0
      snd/patterns/header.php
  30. 10 0
      snd/patterns/hidden-no-results-content.php
  31. 91 0
      snd/patterns/home.php
  32. 21 0
      snd/patterns/subscribe.php
  33. 45 0
      snd/readme.txt
  34. BIN
      snd/screenshot.png
  35. 124 0
      snd/style.css
  36. 36 0
      snd/styles/monochrome.json
  37. 111 0
      snd/styles/rouge.json
  38. 9 0
      snd/templates/404.html
  39. 35 0
      snd/templates/archive.html
  40. 5 0
      snd/templates/front-page.html
  41. 29 0
      snd/templates/index.html
  42. 19 0
      snd/templates/page.html
  43. 52 0
      snd/templates/search.html
  44. 36 0
      snd/templates/single.html
  45. 1143 0
      snd/theme.json

BIN
snd/assets/fonts/lato_italic_100.ttf


BIN
snd/assets/fonts/lato_italic_300.ttf


BIN
snd/assets/fonts/lato_italic_400.ttf


BIN
snd/assets/fonts/lato_italic_700.ttf


BIN
snd/assets/fonts/lato_italic_900.ttf


BIN
snd/assets/fonts/lato_normal_100.ttf


BIN
snd/assets/fonts/lato_normal_300.ttf


BIN
snd/assets/fonts/lato_normal_400.ttf


BIN
snd/assets/fonts/lato_normal_700.ttf


BIN
snd/assets/fonts/lato_normal_900.ttf


BIN
snd/assets/fonts/lora_italic_400.ttf


BIN
snd/assets/fonts/lora_italic_500.ttf


BIN
snd/assets/fonts/lora_italic_600.ttf


BIN
snd/assets/fonts/lora_italic_700.ttf


BIN
snd/assets/fonts/lora_normal_400.ttf


BIN
snd/assets/fonts/lora_normal_500.ttf


BIN
snd/assets/fonts/lora_normal_600.ttf


BIN
snd/assets/fonts/lora_normal_700.ttf


+ 60 - 0
snd/functions.php

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

+ 2 - 0
snd/index.php

@@ -0,0 +1,2 @@
+<?php
+	# This page intentionally left blank

+ 1 - 0
snd/parts/footer.html

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

+ 1 - 0
snd/parts/header-front.html

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

+ 1 - 0
snd/parts/header.html

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

+ 13 - 0
snd/parts/post-meta.html

@@ -0,0 +1,13 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex"},"fontSize":"small"} -->
+	<div class="wp-block-group has-small-font-size">
+		<!-- wp:post-date {"format":"M j, Y","isLink":true} /-->
+
+		<!-- wp:post-terms {"term":"category"} /-->
+
+		<!-- wp:post-terms {"term":"post_tag"} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 18 - 0
snd/patterns/404.php

@@ -0,0 +1,18 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: snd/404
+ * Inserter: no
+ */
+?>
+<!-- wp:heading {"textAlign":"left","level":1,"fontSize":"large"} -->
+<h1 class="wp-block-heading has-text-align-left has-large-font-size">
+	<?php echo esc_html__( 'Oops! That page can&rsquo;t be found.', 'snd' ); ?>
+</h1>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph -->
+<p><?php echo  esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'snd' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:search {"label":"","showLabel":false,"placeholder":"<?php echo esc_attr__( 'Search...', 'snd' ); ?>","buttonUseIcon":true} /-->

+ 49 - 0
snd/patterns/comments.php

@@ -0,0 +1,49 @@
+<?php
+/**
+ * Title: Comments
+ * Slug: snd/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} /-->
+
+				<!-- 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-next /-->
+	<!-- /wp:comments-pagination -->
+
+	<!-- wp:post-comments-form /-->
+</div>
+<!-- /wp:comments -->

+ 22 - 0
snd/patterns/footer.php

@@ -0,0 +1,22 @@
+<?php
+/**
+ * Title: Default footer
+ * Slug: snd/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ */
+?>
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"2.625rem"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:2.625rem">
+	<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"secondary","fontSize":"small"} -->
+	<p class="has-secondary-color has-text-color has-link-color has-small-font-size" style="line-height:1.5"><?php
+			/* Translators: WordPress link. */
+			$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'snd' ) ) . '" rel="nofollow">WordPress</a>';
+			echo sprintf(
+				esc_html__( 'Designed with %1$s', 'snd' ),
+				$wordpress_link
+			);
+		?></p>
+	<!-- /wp:paragraph -->
+</div>
+<!-- /wp:group -->

+ 15 - 0
snd/patterns/header-front.php

@@ -0,0 +1,15 @@
+<?php
+/**
+ * Title: Header Front
+ * Slug: snd/header-front
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:site-logo {"width":140,"shouldSyncIcon":false,"className":"is-style-rounded"} /-->
+	<!-- wp:site-title {"fontSize":"xxx-large"} /-->
+</div>
+<!-- /wp:group -->
+

+ 16 - 0
snd/patterns/header.php

@@ -0,0 +1,16 @@
+<?php
+/**
+ * Title: Header
+ * Slug: snd/header
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"3.5rem","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:3.5rem;margin-bottom:var(--wp--preset--spacing--80)"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:site-logo {"width":70,"shouldSyncIcon":false,"className":"is-style-rounded"} /-->
+
+<!-- wp:site-title {"fontSize":"large"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 10 - 0
snd/patterns/hidden-no-results-content.php

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

+ 91 - 0
snd/patterns/home.php

@@ -0,0 +1,91 @@
+<?php
+
+/**
+ * Title: Home
+ * Slug: snd/home
+ * Categories: hidden
+ * Inserter: no
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--80)"><!-- wp:paragraph -->
+<p><?php echo esc_html__( 'Join millions of readers and subscribe to the Modern Wisdom. Enter your email below to receive new ideas that could change your life.', 'snd' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:jetpack/subscriptions {"submitButtonText":"SUBSCRIBE","borderRadius":50} /-->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60)"><!-- wp:separator {"style":{"color":{"background":"#ffffff26"}},"className":"is-style-default"} -->
+<hr class="wp-block-separator has-text-color has-alpha-channel-opacity has-background is-style-default" style="background-color:#ffffff26;color:#ffffff26"/>
+<!-- /wp:separator -->
+
+<!-- wp:heading {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"medium"} -->
+<h2 class="wp-block-heading has-medium-font-size" style="text-transform:uppercase"><?php echo esc_html__( 'Reader Reviews', 'snd' ); ?></h2>
+<!-- /wp:heading -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"border":{"radius":"100px"},"spacing":{"padding":{"top":"0.88rem","right":"0.88rem","bottom":"0.88rem","left":"0.88rem"}}},"backgroundColor":"primary","textColor":"secondary","layout":{"type":"constrained"}} -->
+<div class="wp-block-group has-secondary-color has-primary-background-color has-text-color has-background" style="border-radius:100px;padding-top:0.88rem;padding-right:0.88rem;padding-bottom:0.88rem;padding-left:0.88rem"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"0.6"}},"textColor":"background","fontSize":"large"} -->
+<p class="has-background-color has-text-color has-large-font-size" style="line-height:0.6">❝</p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:paragraph {"textColor":"secondary","fontSize":"large"} -->
+<p class="has-secondary-color has-text-color has-large-font-size"><em><?php echo esc_html__( 'I learn something new from every single issue!', 'snd' ); ?></em></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:paragraph -->
+<p><?php echo esc_html__( '- Jane Doe', 'snd' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"border":{"radius":"100px"},"spacing":{"padding":{"top":"0.88rem","right":"0.88rem","bottom":"0.88rem","left":"0.88rem"}}},"backgroundColor":"primary","textColor":"secondary","layout":{"type":"constrained"}} -->
+<div class="wp-block-group has-secondary-color has-primary-background-color has-text-color has-background" style="border-radius:100px;padding-top:0.88rem;padding-right:0.88rem;padding-bottom:0.88rem;padding-left:0.88rem"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"0.6"}},"textColor":"background","fontSize":"large"} -->
+<p class="has-background-color has-text-color has-large-font-size" style="line-height:0.6">❝</p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:paragraph {"textColor":"secondary","fontSize":"large"} -->
+<p class="has-secondary-color has-text-color has-large-font-size"><em><?php echo esc_html__( 'A joy to read! The advice and insights I get from this newsletter are priceless.', 'snd' ); ?></em></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:paragraph -->
+<p><?php echo esc_html__( '- Estelle Vo', 'snd' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><!-- wp:separator {"style":{"color":{"background":"#ffffff26"}}} -->
+<hr class="wp-block-separator has-text-color has-alpha-channel-opacity has-background" style="background-color:#ffffff26;color:#ffffff26"/>
+<!-- /wp:separator -->
+
+<!-- wp:heading {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"medium"} -->
+<h2 class="wp-block-heading has-medium-font-size" style="text-transform:uppercase"><?php echo esc_html__( 'Recent Issues', 'snd' ); ?></h2>
+<!-- /wp:heading -->
+
+<!-- wp:query {"queryId":0,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"layout":{"type":"constrained"}} -->
+<div class="wp-block-query"><!-- wp:post-template {"layout":{"type":"default"}} -->
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"border":{"radius":"100px"},"spacing":{"padding":{"top":"0.65rem","right":"0.75rem","bottom":"0.5rem","left":"0.75rem"}}},"backgroundColor":"primary","textColor":"secondary","layout":{"type":"constrained"}} -->
+<div class="wp-block-group has-secondary-color has-primary-background-color has-text-color has-background" style="border-radius:100px;padding-top:0.65rem;padding-right:0.75rem;padding-bottom:0.5rem;padding-left:0.75rem"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1"}},"textColor":"background","fontSize":"large"} -->
+<p class="has-background-color has-text-color has-large-font-size" style="line-height:1"><sup>→</sup></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"},"fontSize":"large"} -->
+<div class="wp-block-group has-large-font-size"><!-- wp:post-title {"isLink":true,"style":{"typography":{"lineHeight":1.458333333,"fontStyle":"normal","fontWeight":"400","textTransform":"none"}},"fontSize":"large"} /-->
+
+<!-- wp:post-date {"format":"M j, Y","style":{"typography":{"lineHeight":"1.3","fontStyle":"normal","fontWeight":"400","textTransform":"none"},"spacing":{"margin":{"top":"4px"}}},"textColor":"foreground","className":"nowrap","fontSize":"medium"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template --></div>
+<!-- /wp:query --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 21 - 0
snd/patterns/subscribe.php

@@ -0,0 +1,21 @@
+<?php
+
+/**
+ * Title: Subscribe
+ * Slug: snd/subscribe
+ * Categories: featured
+ * Inserter: yes
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:separator {"style":{"color":{"background":"#ffffff26"}}} -->
+<hr class="wp-block-separator has-text-color has-alpha-channel-opacity has-background" style="background-color:#ffffff26;color:#ffffff26"/>
+<!-- /wp:separator -->
+
+<!-- wp:heading {"level":3,"fontSize":"medium"} -->
+<h3 class="wp-block-heading has-medium-font-size"><?php echo esc_html__( 'Subscribe to Modern Wisdom', 'montagna' ); ?></h3>
+<!-- /wp:heading -->
+
+<!-- wp:jetpack/subscriptions {"submitButtonText":"SUBSCRIBE","borderRadius":50} /--></div>
+<!-- /wp:group -->

+ 45 - 0
snd/readme.txt

@@ -0,0 +1,45 @@
+=== SND ===
+Contributors: Automattic
+Requires at least: 5.8
+Tested up to: 6.2
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+A minimal newsletter theme.
+
+== Changelog ==
+
+= 1.0.0 =
+* Initial release
+
+== Copyright ==
+
+SND WordPress Theme, (C) 2023 Automattic
+SND is distributed under the terms of the GNU GPL.
+SND is based on Hey (https://wordpress.com/theme/hey/), (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.
+
+Lato Font
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL 
+License URL: https://scripts.sil.org/OFL 
+Source: https://www.latofonts.com/
+-- End of Lato Font credits --
+
+Lora Font
+Copyright 2011 The Lora Project Authors (https://github.com/cyrealtype/Lora-Cyrillic), with Reserved Font Name "Lora". 
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL 
+License URL: https://scripts.sil.org/OFL 
+Source: https://cyreal.org
+-- End of Lora Font credits --

BIN
snd/screenshot.png


+ 124 - 0
snd/style.css

@@ -0,0 +1,124 @@
+/*
+Theme Name: SND
+Theme URI: https://wordpress.com/themes/snd
+Author: Automattic
+Author URI: https://automattic.com/
+Description: A minimal newsletter theme.
+Requires at least: 5.8
+Tested up to: 6.2
+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: snd
+Tags: blog, one-column, wide-blocks, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, 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--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);
+	margin-top: var(--wp--preset--spacing--30);
+	text-align: center;
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-color: var(--wp--preset--color--primary);
+	text-decoration-thickness: .5px !important;
+	text-underline-offset: .1em;
+}
+
+/* Styles for outline button */
+.wp-block-button.is-style-outline>.wp-block-button__link {
+	border: 1px solid var(--wp--preset--color--foreground);
+	padding: calc(8px - 1px) calc(32px - 1px);
+}
+
+/* 
+ * Styles for search block
+ * https://github.com/WordPress/gutenberg/issues/49249
+ */
+.wp-block-search__button-inside .wp-block-search__inside-wrapper {
+	border-radius: 999px;
+	padding: 9px;
+}
+.wp-block-search__input,
+.wp-block-search__button-inside .wp-block-search__inside-wrapper {
+	border-color: var(--wp--preset--color--tertiary);
+}
+
+/* Adjust comment reply title */
+.wp-block-post-comments-form .comment-reply-title {
+	font-size: var(--wp--preset--font-size--large);
+	color: var(--wp--preset--color--secondary);
+}
+
+.wp-block-post-comments-form h3 {
+	color: var(--wp--preset--color--secondary);	
+}
+
+/* Adjust the top padding for the submenu items */
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
+	padding-top: var(--wp--preset--spacing--30);
+}
+
+/* 
+ * Styles for Author blocks
+ * https://github.com/WordPress/gutenberg/issues/24952
+ */
+.wp-block-post-author__avatar img,
+.wp-block-avatar img {
+	border-radius: 999px;
+	line-height: 0;
+}
+.wp-block-post-author__byline,
+.wp-block-post-author__bio {
+	font-size: inherit;
+}
+
+/* 
+ * Style for tag cloud
+ * https://github.com/WordPress/gutenberg/issues/49249
+ */
+.wp-block-tag-cloud.is-style-outline a {
+	border-radius: 999px;
+	padding: 0 0.5rem;
+}
+.wp-block-tag-cloud.is-style-outline a:hover {
+	color: var(--wp--preset--color--background);
+	background-color: var(--wp--preset--color--primary);
+}
+
+/* Keep the post date single line on the front page */
+.nowrap time {
+	white-space: nowrap;
+}

+ 36 - 0
snd/styles/monochrome.json

@@ -0,0 +1,36 @@
+{
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#b6b0b4",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#b6b0b4",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#080708",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#0b121e",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"title": "Monochrome",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 111 - 0
snd/styles/rouge.json

@@ -0,0 +1,111 @@
+{
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#ff599c",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#dfcedd",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#3e112a",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#0b121e",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/comments": {
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|foreground"
+							}
+						}
+					}
+				}
+			},
+			"core/comments-title": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				}
+			},
+			"core/post-comments-form": {
+				"css": ".wp-block-post-comments-form h3 {\ncolor: var(--wp--preset--color--secondary);\n}"
+			},
+			"core/post-date": {
+				"color": {
+					"text": "var:preset|color|foreground"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|foreground"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|foreground"
+						}
+					}
+				}
+			},
+			"core/post-terms": {
+				"color": {
+					"text": "var:preset|color|foreground"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|foreground"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|foreground"
+						}
+					}
+				}
+			},
+			"core/site-title": {
+				"typography": {
+					"fontSize": "var:preset|font-size|xxx-large",
+					"fontWeight": "400"
+				}
+			}
+		},
+		"elements": {
+			"heading": {
+				"typography": {
+					"fontFamily": "var:preset|font-family|lora",
+					"fontStyle": "normal",
+					"fontWeight": "700"
+				}
+			}
+		},
+		"typography": {
+			"fontFamily": "var:preset|font-family|lora"
+		}
+	},
+	"title": "Rouge",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 9 - 0
snd/templates/404.html

@@ -0,0 +1,9 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"blockGap":"var:preset|spacing|50","margin":{"top":"0px","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:0px;margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:pattern {"slug":"snd/404"} /-->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 35 - 0
snd/templates/archive.html

@@ -0,0 +1,35 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group"><!-- wp:query {"queryId":5,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
+<main class="wp-block-query"><!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|80"},"blockGap":"var:preset|spacing|30"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--80)"><!-- wp:query-title {"type":"archive","showPrefix":false,"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"textColor":"primary","fontSize":"x-large"} /-->
+
+<!-- wp:term-description /--></div>
+<!-- /wp:group -->
+
+<!-- wp:post-template -->
+<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|80"},"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--80)"><!-- wp:group {"style":{"spacing":{"blockGap":"0.25rem"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:post-title {"isLink":true} /-->
+
+<!-- wp:template-part {"slug":"post-meta"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:post-featured-image {"isLink":true} /-->
+
+<!-- wp:post-excerpt /--></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:query-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 5 - 0
snd/templates/front-page.html

@@ -0,0 +1,5 @@
+<!-- wp:template-part {"slug":"header-front","tagName":"header"} /-->
+
+<!-- wp:pattern {"slug":"snd/home"} /-->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 29 - 0
snd/templates/index.html

@@ -0,0 +1,29 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group"><!-- wp:query {"queryId":5,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
+<main class="wp-block-query"><!-- wp:post-template -->
+<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|80"},"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--80)"><!-- wp:group {"style":{"spacing":{"blockGap":"0.25rem"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:post-title {"isLink":true} /-->
+
+<!-- wp:template-part {"slug":"post-meta"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:post-featured-image {"isLink":true} /-->
+
+<!-- wp:post-excerpt /--></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:query-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 19 - 0
snd/templates/page.html

@@ -0,0 +1,19 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:post-title /-->
+
+<!-- wp:post-featured-image /-->
+
+<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"constrained"}} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:pattern {"slug":"snd/comments"} /-->
+</div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 52 - 0
snd/templates/search.html

@@ -0,0 +1,52 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+	<!-- wp:group {"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--80)">
+			<!-- wp:query-title {"type":"search"} /-->
+
+			<!-- wp:search {"showLabel":false,"placeholder":"Search...","buttonUseIcon":true} /-->
+		</div>
+		<!-- /wp:group -->
+
+		<!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
+		<main class="wp-block-query">
+			<!-- wp:post-template -->
+				<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70","top":"0"},"padding":{"bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+				<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)">
+					<!-- wp:group {"style":{"spacing":{"blockGap":"0.25rem","margin":{"bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+					<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--70)">
+						<!-- wp:post-title {"isLink":true} /-->
+
+						<!-- wp:template-part {"slug":"post-meta"} /-->
+					</div>
+					<!-- /wp:group -->
+
+					<!-- wp:post-excerpt /-->
+				</div>
+				<!-- /wp:group -->
+			<!-- /wp:post-template -->
+
+			<!-- wp:group {"layout":{"type":"constrained"}} -->
+			<div class="wp-block-group">
+				<!-- wp:query-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
+					<!-- wp:query-pagination-previous /-->
+					<!-- wp:query-pagination-next /-->
+				<!-- /wp:query-pagination -->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:query-no-results -->
+				<!-- wp:pattern {"slug":"snd/hidden-no-results-content"} /-->
+			<!-- /wp:query-no-results -->
+		</main>
+		<!-- /wp:query -->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 36 - 0
snd/templates/single.html

@@ -0,0 +1,36 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- 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:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0.25rem"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:post-title /-->
+
+<!-- wp:template-part {"slug":"post-meta"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:post-featured-image /-->
+
+<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"constrained"}} /-->
+
+<!-- wp:pattern {"slug":"snd/subscribe"} /-->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	
+<!-- wp:pattern {"slug":"snd/comments"} /-->
+	
+</div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80)"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+<div class="wp-block-group"><!-- wp:post-navigation-link {"type":"previous","arrow":"arrow"} /-->
+
+<!-- wp:post-navigation-link {"arrow":"arrow"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 1143 - 0
snd/theme.json

@@ -0,0 +1,1143 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#8182ff",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#c8d2d4",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#272938",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#0b121e",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		},
+		"layout": {
+			"contentSize": "520px",
+			"wideSize": "1000px"
+		},
+		"shadow": {
+			"presets": []
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"increment": 1.5,
+				"mediumStep": 1.5,
+				"operator": "*",
+				"steps": 7,
+				"unit": "rem"
+			},
+			"spacingSizes": [
+				{
+					"name": "1",
+					"size": "0.875rem",
+					"slug": "30"
+				},
+				{
+					"name": "2",
+					"size": "1rem",
+					"slug": "40"
+				},
+				{
+					"name": "3",
+					"size": "1.75rem",
+					"slug": "50"
+				},
+				{
+					"name": "4",
+					"size": "2.625rem",
+					"slug": "60"
+				},
+				{
+					"name": "5",
+					"size": "3.5rem",
+					"slug": "70"
+				},
+				{
+					"name": "6",
+					"size": "5.25rem",
+					"slug": "80"
+				}
+			],
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"dropCap": false,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
+					"name": "System Font",
+					"slug": "system-font"
+				},
+				{
+					"fontFamily": "Lato",
+					"slug": "lato",
+					"fontFace": [
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "normal",
+							"fontWeight": "100",
+							"src": [
+								"file:./assets/fonts/lato_normal_100.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "italic",
+							"fontWeight": "100",
+							"src": [
+								"file:./assets/fonts/lato_italic_100.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/lato_normal_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/lato_italic_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/lato_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/lato_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/lato_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/lato_italic_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "normal",
+							"fontWeight": "900",
+							"src": [
+								"file:./assets/fonts/lato_normal_900.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lato",
+							"fontStyle": "italic",
+							"fontWeight": "900",
+							"src": [
+								"file:./assets/fonts/lato_italic_900.ttf"
+							]
+						}
+					]
+				},
+				{
+					"fontFamily": "Lora",
+					"slug": "lora",
+					"fontFace": [
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/lora_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/lora_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "normal",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/lora_normal_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/lora_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/lora_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/lora_italic_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "italic",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/lora_italic_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Lora",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/lora_italic_700.ttf"
+							]
+						}
+					]
+				}
+			],
+			"fontSizes": [
+				{
+					"name": "Small",
+					"size": "0.875rem",
+					"slug": "small"
+				},
+				{
+					"fluid": {
+						"max": "1rem",
+						"min": "0.875rem"
+					},
+					"name": "Medium",
+					"size": "1rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": {
+						"max": "1.2rem",
+						"min": "1rem"
+					},
+					"name": "Large",
+					"size": "1.2rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "1.728rem",
+						"min": "1.2rem"
+					},
+					"name": "Extra Large",
+					"size": "1.728rem",
+					"slug": "x-large"
+				},
+				{
+					"fluid": {
+						"max": "2.074rem",
+						"min": "1.728rem"
+					},
+					"name": "Double Extra Large",
+					"size": "2.074rem",
+					"slug": "xx-large"
+				},
+				{
+					"fluid": {
+						"max": "2.986rem",
+						"min": "2.074rem"
+					},
+					"name": "Triple Extra Large",
+					"size": "2.986rem",
+					"slug": "xxx-large"
+				}
+			]
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/avatar": {
+				"border": {
+					"radius": "999px"
+				},
+				"typography": {
+					"lineHeight": "0"
+				}
+			},
+			"core/button": {
+				"border": {
+					"radius": "999px"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "8px",
+						"left": "32px",
+						"right": "32px",
+						"top": "8px"
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/buttons": {
+				"spacing": {
+					"blockGap": "var:preset|spacing|40"
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--foreground)",
+					"radius": "0",
+					"style": "solid",
+					"width": "0.5px"
+				},
+				"spacing": {
+					"padding": "var:preset|spacing|40"
+				},
+				"typography": {
+					"fontFamily": "monospace"
+				}
+			},
+			"core/comment-author-name": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/comment-content": {
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/comment-date": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/comment-edit-link": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/comment-reply-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"border": {
+								"color": "var:preset|color|primary"
+							},
+							"color": {
+								"text": "var:preset|color|primary"
+							}
+						},
+						"border": {
+							"color": "var:preset|color|secondary",
+							"radius": "999px",
+							"style": "solid",
+							"width": "0.5px"
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"spacing": {
+							"padding": "3.5px 12px"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/comments-pagination": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/comments-pagination-numbers": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/comments-title": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|large"
+				}
+			},
+			"core/cover": {
+				"spacing": {
+					"padding": {
+						"bottom": "var:preset|spacing|50",
+						"left": "var:preset|spacing|50",
+						"right": "var:preset|spacing|50",
+						"top": "var:preset|spacing|50"
+					}
+				}
+			},
+			"core/gallery": {
+				"spacing": {
+					"margin": {
+						"bottom": "var:preset|spacing|50"
+					}
+				}
+			},
+			"core/heading": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"heading": {
+						"color": {
+							"text": "var:preset|color|primary"
+						}
+					},
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						}
+					}
+				}
+			},
+			"core/latest-comments": {
+				"spacing": {
+					"padding": {
+						"left": "0px"
+					}
+				}
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var:preset|spacing|50"
+					}
+				}
+			},
+			"core/navigation": {
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"blockGap": "var:preset|spacing|40"
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/paragraph": {
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|foreground"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|primary"
+						}
+					}
+				},
+				"typography": {
+					"lineHeight": "calc(1em + 0.75rem)"
+				}
+			},
+			"core/post-author": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-author-name": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-comments-count": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-comments-form": {
+				"elements": {
+					"heading": {
+						"color": {
+							"text": "#1f1f1d"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-comments-link": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-date": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-navigation-link": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-terms": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/post-title": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|x-large",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"lineHeight": "1.4"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--tertiary)",
+					"style": "solid",
+					"width": "1px 0"
+				},
+				"spacing": {
+					"padding": "var(--wp--style--block-gap)"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "italic"
+				}
+			},
+			"core/query-pagination": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|primary"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/query-pagination-next": {
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/query-pagination-numbers": {
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/query-pagination-previous": {
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/query-title": {
+				"color": {
+					"text": "var:preset|color|primary"
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|x-large"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--primary)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"fontStyle": "normal"
+				}
+			},
+			"core/read-more": {
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var:preset|color|foreground"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|primary"
+						}
+					}
+				}
+			},
+			"core/search": {
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "solid",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"background": "var:preset|color|foreground",
+					"text": "var:preset|color|tertiary"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var:preset|font-size|medium"
+				}
+			},
+			"core/site-title": {
+				"color": {
+					"text": "var:preset|color|secondary"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|secondary"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xxx-large)",
+					"fontWeight": "700"
+				}
+			},
+			"core/social-links": {
+				"spacing": {
+					"blockGap": {
+						"left": "var:preset|spacing|40",
+						"top": "var:preset|spacing|40"
+					}
+				}
+			}
+		},
+		"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": "999px"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--background)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "8px",
+						"left": "32px",
+						"right": "32px",
+						"top": "8px"
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|small",
+					"lineHeight": "1.5"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var:preset|font-size|xxx-large",
+					"lineHeight": "calc(1em + 0.4375rem)"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var:preset|font-size|xx-large",
+					"lineHeight": "calc(1em + 0.5rem)"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "var:preset|font-size|x-large"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "var:preset|font-size|large"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var:preset|font-size|medium"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var:preset|font-size|small"
+				}
+			},
+			"heading": {
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--lato)",
+					"fontStyle": "normal",
+					"fontWeight": "700",
+					"lineHeight": "calc(1em + 0.75rem)"
+				}
+			},
+			"link": {
+				":hover": {
+					"color": {
+						"text": "var:preset|color|secondary"
+					},
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "var:preset|spacing|50",
+			"padding": {
+				"bottom": "var:preset|spacing|50",
+				"left": "var:preset|spacing|50",
+				"right": "var:preset|spacing|50",
+				"top": "var:preset|spacing|50"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--lato)",
+			"fontSize": "var:preset|font-size|medium",
+			"fontStyle": "normal",
+			"fontWeight": "400",
+			"lineHeight": "1.75"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header",
+			"title": "Header"
+		},
+		{
+			"area": "header",
+			"name": "header-front",
+			"title": "Header Front"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		},
+		{
+			"area": "uncategorized",
+			"name": "post-meta",
+			"title": "Post Meta"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}