瀏覽代碼

Kigen: Add theme for review (#7017)

Co-authored-by: Jason Crist <jcrist@pbking.com>
Matias Benedetto 2 年之前
父節點
當前提交
66a3646dc2
共有 45 個文件被更改,包括 1882 次插入0 次删除
  1. 二進制
      kigen/assets/fonts/newsreader_italic_200.ttf
  2. 二進制
      kigen/assets/fonts/newsreader_italic_300.ttf
  3. 二進制
      kigen/assets/fonts/newsreader_italic_400.ttf
  4. 二進制
      kigen/assets/fonts/newsreader_italic_500.ttf
  5. 二進制
      kigen/assets/fonts/newsreader_italic_600.ttf
  6. 二進制
      kigen/assets/fonts/newsreader_italic_700.ttf
  7. 二進制
      kigen/assets/fonts/newsreader_italic_800.ttf
  8. 二進制
      kigen/assets/fonts/newsreader_normal_200.ttf
  9. 二進制
      kigen/assets/fonts/newsreader_normal_300.ttf
  10. 二進制
      kigen/assets/fonts/newsreader_normal_400.ttf
  11. 二進制
      kigen/assets/fonts/newsreader_normal_500.ttf
  12. 二進制
      kigen/assets/fonts/newsreader_normal_600.ttf
  13. 二進制
      kigen/assets/fonts/newsreader_normal_700.ttf
  14. 二進制
      kigen/assets/fonts/newsreader_normal_800.ttf
  15. 二進制
      kigen/assets/images/11410posdl0.jpg
  16. 二進制
      kigen/assets/images/11410posdl1.jpg
  17. 二進制
      kigen/assets/images/11410posdl2.jpg
  18. 二進制
      kigen/assets/images/11410posdl3.jpg
  19. 二進制
      kigen/assets/images/11410posdl4.jpg
  20. 二進制
      kigen/assets/images/11410posdl5.jpg
  21. 二進制
      kigen/assets/images/11410posdl6.jpg
  22. 二進制
      kigen/assets/images/11410posdl7.jpg
  23. 60 0
      kigen/functions.php
  24. 1 0
      kigen/parts/footer.html
  25. 1 0
      kigen/parts/header.html
  26. 14 0
      kigen/patterns/404.php
  27. 35 0
      kigen/patterns/border.php
  28. 59 0
      kigen/patterns/comments.php
  29. 21 0
      kigen/patterns/footer-2.php
  30. 33 0
      kigen/patterns/footer.php
  31. 94 0
      kigen/patterns/front-page.php
  32. 24 0
      kigen/patterns/header.php
  33. 10 0
      kigen/patterns/no-results-content.php
  34. 9 0
      kigen/patterns/search.php
  35. 73 0
      kigen/readme.txt
  36. 二進制
      kigen/screenshot.png
  37. 55 0
      kigen/style.css
  38. 10 0
      kigen/templates/404.html
  39. 55 0
      kigen/templates/archive.html
  40. 3 0
      kigen/templates/front-page.html
  41. 47 0
      kigen/templates/index.html
  42. 23 0
      kigen/templates/page.html
  43. 57 0
      kigen/templates/search.html
  44. 53 0
      kigen/templates/single.html
  45. 1145 0
      kigen/theme.json

二進制
kigen/assets/fonts/newsreader_italic_200.ttf


二進制
kigen/assets/fonts/newsreader_italic_300.ttf


二進制
kigen/assets/fonts/newsreader_italic_400.ttf


二進制
kigen/assets/fonts/newsreader_italic_500.ttf


二進制
kigen/assets/fonts/newsreader_italic_600.ttf


二進制
kigen/assets/fonts/newsreader_italic_700.ttf


二進制
kigen/assets/fonts/newsreader_italic_800.ttf


二進制
kigen/assets/fonts/newsreader_normal_200.ttf


二進制
kigen/assets/fonts/newsreader_normal_300.ttf


二進制
kigen/assets/fonts/newsreader_normal_400.ttf


二進制
kigen/assets/fonts/newsreader_normal_500.ttf


二進制
kigen/assets/fonts/newsreader_normal_600.ttf


二進制
kigen/assets/fonts/newsreader_normal_700.ttf


二進制
kigen/assets/fonts/newsreader_normal_800.ttf


二進制
kigen/assets/images/11410posdl0.jpg


二進制
kigen/assets/images/11410posdl1.jpg


二進制
kigen/assets/images/11410posdl2.jpg


二進制
kigen/assets/images/11410posdl3.jpg


二進制
kigen/assets/images/11410posdl4.jpg


二進制
kigen/assets/images/11410posdl5.jpg


二進制
kigen/assets/images/11410posdl6.jpg


二進制
kigen/assets/images/11410posdl7.jpg


+ 60 - 0
kigen/functions.php

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

+ 1 - 0
kigen/parts/footer.html

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

+ 1 - 0
kigen/parts/header.html

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

+ 14 - 0
kigen/patterns/404.php

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

+ 35 - 0
kigen/patterns/border.php

@@ -0,0 +1,35 @@
+<?php
+/**
+ * Title: Border
+ * Slug: kigen/border
+ * Categories: featured
+ */
+?>
+
+<!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"top":"0px","left":"0px"},"margin":{"top":"var:preset|spacing|70"}}}} -->
+<div class="wp-block-columns alignfull" style="margin-top:var(--wp--preset--spacing--70)">
+	<!-- wp:column {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"border":{"top":{"color":"#fb977a","style":"solid","width":"12px"}}}} -->
+	<div class="wp-block-column" style="border-top-color:#fb977a;border-top-style:solid;border-top-width:12px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"></div>
+	<!-- /wp:column -->
+
+	<!-- wp:column {"style":{"border":{"top":{"color":"#a33a8f","style":"solid","width":"12px"}}}} -->
+	<div class="wp-block-column" style="border-top-color:#a33a8f;border-top-style:solid;border-top-width:12px"></div>
+	<!-- /wp:column -->
+
+	<!-- wp:column {"style":{"border":{"color":null,"style":null,"width":null,"top":{"color":"#f4b924","style":"solid","width":"12px"},"right":[],"bottom":[],"left":[]}}} -->
+	<div class="wp-block-column" style="border-top-color:#f4b924;border-top-style:solid;border-top-width:12px"></div>
+	<!-- /wp:column -->
+
+	<!-- wp:column {"style":{"border":{"color":null,"style":null,"width":null,"top":{"color":"#c3336e","style":"solid","width":"12px"},"right":[],"bottom":[],"left":[]}}} -->
+	<div class="wp-block-column" style="border-top-color:#c3336e;border-top-style:solid;border-top-width:12px"></div>
+	<!-- /wp:column -->
+
+	<!-- wp:column {"style":{"border":{"color":null,"style":null,"width":null,"top":{"color":"#e8613a","style":"solid","width":"12px"},"right":[],"bottom":[],"left":[]}}} -->
+	<div class="wp-block-column" style="border-top-color:#e8613a;border-top-style:solid;border-top-width:12px"></div>
+	<!-- /wp:column -->
+
+	<!-- wp:column {"style":{"border":{"color":null,"style":null,"width":null,"top":{"color":"#38ada6","style":"solid","width":"12px"},"right":[],"bottom":[],"left":[]}}} -->
+	<div class="wp-block-column" style="border-top-color:#38ada6;border-top-style:solid;border-top-width:12px"></div>
+	<!-- /wp:column -->
+</div>
+<!-- /wp:columns -->

+ 59 - 0
kigen/patterns/comments.php

@@ -0,0 +1,59 @@
+<?php
+/**
+ * Title: Comments
+ * Slug: kigen/comments
+ * Inserter: no
+ */
+?>
+<!-- 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:comments {"className":"wp-block-comments-query-loop"} -->
+	<div class="wp-block-comments wp-block-comments-query-loop">
+		<!-- wp:group {"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group">
+			<!-- wp:comments-title {"level":3} /-->
+
+			<!-- wp:comment-template {"style":{"spacing":{"padding":{"left":"0px"}}}} -->
+				<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"1.5rem"}}}} -->
+				<div class="wp-block-group" style="margin-top:0;margin-bottom:1.5rem">
+					<!-- wp:group {"style":{"spacing":{"blockGap":"0.5em"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+					<div class="wp-block-group">
+						<!-- wp:avatar {"size":40} /-->
+
+						<!-- wp:group -->
+						<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 -->
+						</div>
+						<!-- /wp:group -->
+					</div>
+					<!-- /wp:group -->
+
+					<!-- wp:comment-content /-->
+
+					<!-- wp:comment-reply-link /-->
+				</div>
+				<!-- /wp:group -->
+			<!-- /wp:comment-template -->
+
+			<!-- wp:comments-pagination {"paginationArrow":"chevron","layout":{"type":"flex","justifyContent":"space-between"}} -->
+				<!-- wp:comments-pagination-previous /-->
+
+				<!-- wp:comments-pagination-next /-->
+			<!-- /wp:comments-pagination -->
+
+			<!-- wp:post-comments-form /-->
+		</div>
+		<!-- /wp:group -->
+	</div>
+	<!-- /wp:comments -->
+</div>
+<!-- /wp:group -->

+ 21 - 0
kigen/patterns/footer-2.php

@@ -0,0 +1,21 @@
+<?php
+/**
+ * Title: Footer 2
+ * Slug: kigen/footer-2
+ * Categories: featured, footer
+ * Block Types: core/template-part/footer
+ */
+?>
+
+<!-- wp:paragraph {"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"fontSize":"x-small"} -->
+<p class="has-x-small-font-size" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px">
+<?php
+	$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'lineup' ) ) . '" rel="nofollow">WordPress</a>';
+	echo sprintf(
+		/* Translators: WordPress link. */
+		esc_html__( 'Designed with %1$s', 'lineup' ),
+		$wordpress_link
+	);
+	?>
+	</p>
+<!-- /wp:paragraph -->

+ 33 - 0
kigen/patterns/footer.php

@@ -0,0 +1,33 @@
+<?php
+/**
+ * Title: Default footer
+ * Slug: kigen/footer
+ * Categories: featured, footer
+ * Block Types: core/template-part/footer
+ */
+?>
+
+<!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignfull">
+	<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+	<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)">
+		<!-- wp:navigation {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"fontSize":"x-small"} /-->
+
+		<!-- wp:paragraph {"align":"right","className":"has-x-small-font-size","fontSize":"x-small"} -->
+		<p class="has-text-align-right has-x-small-font-size">
+		<?php
+			$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'lineup' ) ) . '" rel="nofollow">WordPress</a>';
+			echo sprintf(
+				/* Translators: WordPress link. */
+				esc_html__( 'Designed with %1$s', 'lineup' ),
+				$wordpress_link
+			);
+			?>
+			</p>
+		<!-- /wp:paragraph -->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:pattern {"slug":"kigen/border"} /-->
+</div>
+<!-- /wp:group -->

+ 94 - 0
kigen/patterns/front-page.php

@@ -0,0 +1,94 @@
+<?php
+/**
+ * Title: Front Page
+ * Slug: kigen/front-page
+ * Categories: featured
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-bottom:var(--wp--preset--spacing--70)">
+	<!-- wp:gallery {"columns":4,"imageCrop":false,"linkTo":"media","sizeSlug":"full","align":"wide"} -->
+	<figure class="wp-block-gallery alignwide has-nested-images columns-4">
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"media"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl6.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl6.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"media"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl3.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl3.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"media"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl5.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl5.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"media"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl4.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl4.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"none"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl0.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl0.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"media"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl7.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl7.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"media"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl2.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl2.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+
+		<!-- wp:image {"sizeSlug":"full","linkDestination":"media"} -->
+		<figure class="wp-block-image size-full"><a href="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl1.jpg"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/11410posdl1.jpg" alt="" /></a></figure>
+		<!-- /wp:image -->
+	</figure>
+	<!-- /wp:gallery -->
+
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column -->
+		<div class="wp-block-column">
+			<!-- wp:group {"style":{"dimensions":{"minHeight":"100%"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"space-between"}} -->
+			<div class="wp-block-group" style="min-height:100%">
+				<!-- wp:group {"layout":{"type":"constrained","justifyContent":"left"}} -->
+				<div class="wp-block-group">
+					<!-- wp:paragraph -->
+					<p><?php echo esc_html__( 'Get in touch:', 'kigen' ); ?></p>
+					<!-- /wp:paragraph -->
+
+					<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
+					<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30)">
+						<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","orientation":"vertical"},"style":{"spacing":{"blockGap":"0px"}}} /-->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:group -->
+
+				<!-- wp:pattern {"slug":"kigen/footer-2"} /-->
+
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column -->
+		<div class="wp-block-column">
+			<!-- wp:paragraph -->
+			<p><?php echo esc_html__( "Hi, my name is Augustus Jansson, born in 1866 in Somerville, Massachusetts. As a passionate illustrator, I pursued a career in greeting cards and advertisements. By 1903, I was known for my original poster work and also excelled as a postcard artist, table designer, cartoonist, and children's book author.", 'kigen' ); ?></p>
+			<!-- /wp:paragraph -->
+
+			<!-- wp:paragraph -->
+			<p><?php echo esc_html__( 'In 1903, I began a seven-year collaboration with Queen City Publishing, creating full-page layouts like the renowned Ink Beasts Parade, feakigenring the orange-yellow Ibexiakigencus and Magenta Ponies. I designed a series of doll-like figures and advertisements that were striking and ahead of their time, with an art deco feel. My style resembled playing card figures, which I used in a series of American Revolution stories published in The Sunday Herald around 1904.', 'kigen' ); ?></p>
+			<!-- /wp:paragraph -->
+
+			<!-- wp:paragraph -->
+			<p><?php echo esc_html__( "As an artist, I pushed boundaries and left a lasting impact on illustration and design. My journey taught me the importance of perseverance, creativity, and staying true to one's unique vision.", 'kigen' ); ?></p>
+			<!-- /wp:paragraph -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+</div>
+<!-- /wp:group -->
+
+<!-- wp:pattern {"slug":"kigen/border"} /-->

+ 24 - 0
kigen/patterns/header.php

@@ -0,0 +1,24 @@
+<?php
+/**
+ * Title: Header
+ * Slug: kigen/header
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70)">
+	<!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+	<div class="wp-block-group alignwide">
+		<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50"}}},"layout":{"type":"flex"}} -->
+		<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50)">
+			<!-- wp:site-logo {"shouldSyncIcon":false} /-->
+
+			<!-- wp:site-title /-->
+		</div>
+		<!-- /wp:group -->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 10 - 0
kigen/patterns/no-results-content.php

@@ -0,0 +1,10 @@
+<?php
+/**
+ * Title: No Results Content
+ * Slug: kigen/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', 'kigen' ); ?></p>
+<!-- /wp:paragraph -->

+ 9 - 0
kigen/patterns/search.php

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

+ 73 - 0
kigen/readme.txt

@@ -0,0 +1,73 @@
+=== Kigen ===
+Contributors: Automattic
+Requires at least: 5.8
+Tested up to: 5.9
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Kigen is a simple portfolio theme
+
+== Changelog ==
+
+= 1.0 =
+* Initial release
+
+== Copyright ==
+
+Kigen WordPress Theme, (C) 2023 Automattic
+Kigen is distributed under the terms of the GNU GPL.
+Kigen is based on Tú (https://wordpress.com/theme/tu/), (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:
+
+Newsreader Font
+Licensed under SIL Open Font License, 1.1 (http://scripts.sil.org/OFL)
+Source: https://fonts.google.com/specimen/Newsreader
+
+Included in theme screenshot:
+
+Queen City Ink, Ad. 23 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-23/
+
+Queen City Ink, Ad. 24 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-24/
+
+Queen City Ink, Ad. 25 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-25/
+
+Queen City Ink, Ad. 26 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-26/
+
+Queen City Ink, Ad. 27 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-27/
+
+Queen City Ink, Ad. 30 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-30/
+
+Queen City Ink, Ad. 32 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-32/
+
+Queen City Ink, Ad. 36 (1890-1913) by Augustus Jansson (Swedish, 1863 - 1931)
+https://artvee.com/dl/queen-city-ink-ad-36/
+
+
+
+
+
+
+
+
+

二進制
kigen/screenshot.png


+ 55 - 0
kigen/style.css

@@ -0,0 +1,55 @@
+/*
+Theme Name: Kigen
+Theme URI: https://wordpress.com/theme/kigen
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Kigen is a simple portfolio theme
+Requires at least: 5.8
+Tested up to: 6.1.1
+Requires PHP: 5.7
+Version: 1.0
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Template: 
+Text Domain: kigen
+Tags: blog, portfolio, one-column, wide-blocks, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, template-editing, 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--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: 1.5px;
+}
+
+/*
+ * Avatar Block
+ * Fix border radius setting for the avatar block
+ * https://github.com/WordPress/gutenberg/issues/48253
+ */
+.wp-block-avatar a,
+.wp-block-avatar img {
+	border-radius: inherit;
+}
+
+/*
+ * Pull quote Block
+ * Reset the browser default margins for blockquote element
+ * https://github.com/WordPress/gutenberg/issues/44129
+ */
+.wp-block-pullquote blockquote {
+	margin: 0;
+}

+ 10 - 0
kigen/templates/404.html

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

+ 55 - 0
kigen/templates/archive.html

@@ -0,0 +1,55 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- 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":"archive","showPrefix":false} /-->
+
+		<!-- wp:term-description {"style":{"spacing":{"margin":{"top":"0.5rem"}}},"fontSize":"small"} /-->
+	</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":[]},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-query">
+		<!-- wp:post-template -->
+			<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|80"}}}} -->
+			<div class="wp-block-group" style="padding-bottom:var(--wp--preset--spacing--80)">
+				<!-- wp:post-featured-image {"isLink":true} /-->
+
+				<!-- wp:post-title {"isLink":true} /-->
+
+				<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
+
+				<!-- wp:post-excerpt /-->
+
+				<!-- wp:group {"layout":{"type":"constrained"}} -->
+				<div class="wp-block-group">
+					<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex"}} -->
+					<div class="wp-block-group">
+						<!-- wp:post-terms {"term":"category"} /-->
+
+						<!-- wp:post-terms {"term":"post_tag"} /-->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:group -->
+			</div>
+			<!-- /wp:group -->
+		<!-- /wp:post-template -->
+
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-top:0px">
+			<!-- 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 -->
+	</div>
+	<!-- /wp:query -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 3 - 0
kigen/templates/front-page.html

@@ -0,0 +1,3 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:pattern {"slug":"kigen/front-page"} /-->

+ 47 - 0
kigen/templates/index.html

@@ -0,0 +1,47 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-query">
+		<!-- wp:post-template -->
+			<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|70"}}}} -->
+			<div class="wp-block-group" style="padding-bottom:var(--wp--preset--spacing--70)">
+				<!-- wp:post-featured-image {"isLink":true} /-->
+
+				<!-- wp:post-title {"isLink":true} /-->
+
+				<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
+
+				<!-- wp:post-excerpt /-->
+
+				<!-- wp:group {"layout":{"type":"constrained"}} -->
+				<div class="wp-block-group">
+					<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex"}} -->
+					<div class="wp-block-group">
+						<!-- wp:post-terms {"term":"category"} /-->
+
+						<!-- wp:post-terms {"term":"post_tag"} /-->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:group -->
+			</div>
+			<!-- /wp:group -->
+		<!-- /wp:post-template -->
+
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-top:0px">
+			<!-- 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 -->
+	</div>
+	<!-- /wp:query -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 23 - 0
kigen/templates/page.html

@@ -0,0 +1,23 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:group {"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:post-featured-image /-->
+
+		<!-- wp:post-title /-->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:group -->
+	<div class="wp-block-group">
+		<!-- wp:post-content {"layout":{"type":"constrained"}} /-->
+	</div>
+	<!-- /wp:group -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:pattern {"slug":"kigen/comments"} /-->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 57 - 0
kigen/templates/search.html

@@ -0,0 +1,57 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- 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:pattern {"slug":"kigen/search"} /-->
+	</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":[]},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-query">
+		<!-- wp:post-template -->
+			<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|80"}}}} -->
+			<div class="wp-block-group" style="padding-bottom:var(--wp--preset--spacing--80)">
+				<!-- wp:post-featured-image {"isLink":true} /-->
+
+				<!-- wp:post-title {"isLink":true} /-->
+
+				<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
+
+				<!-- wp:post-excerpt /-->
+
+				<!-- wp:group {"layout":{"type":"constrained"}} -->
+				<div class="wp-block-group">
+					<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex"}} -->
+					<div class="wp-block-group">
+						<!-- wp:post-terms {"term":"category"} /-->
+
+						<!-- wp:post-terms {"term":"post_tag"} /-->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:group -->
+			</div>
+			<!-- /wp:group -->
+		<!-- /wp:post-template -->
+
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-top:0px">
+			<!-- 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":"kigen/no-results-content"} /-->
+		<!-- /wp:query-no-results -->
+	</div>
+	<!-- /wp:query -->
+</main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 53 - 0
kigen/templates/single.html

@@ -0,0 +1,53 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:group {"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:post-featured-image /-->
+
+		<!-- wp:post-title /-->
+
+		<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:group -->
+	<div class="wp-block-group">
+		<!-- wp:post-content {"layout":{"type":"constrained"}} /-->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:group {"layout":{"type":"flex"}} -->
+		<div class="wp-block-group">
+			<!-- wp:post-terms {"term":"category"} /-->
+
+			<!-- wp:post-terms {"term":"post_tag"} /-->
+		</div>
+		<!-- /wp:group -->
+
+		<!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-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","label":"Previous Post","arrow":"arrow"} /-->
+
+					<!-- wp:post-navigation-link {"textAlign":"right","label":"Next Post","arrow":"arrow"} /-->
+				</div>
+				<!-- /wp:group -->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:group -->
+	</main>
+	<!-- /wp:group -->
+
+	<!-- wp:pattern {"slug":"kigen/comments"} /-->
+</div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 1145 - 0
kigen/theme.json

@@ -0,0 +1,1145 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"background": true,
+			"custom": true,
+			"customDuotone": true,
+			"customGradient": true,
+			"defaultDuotone": true,
+			"defaultGradients": true,
+			"defaultPalette": true,
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#fffbee",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#454545",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#000000",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#d5d0c8",
+					"name": "Secondary",
+					"slug": "secondary"
+				}
+			],
+			"text": true
+		},
+		"layout": {
+			"contentSize": "488px",
+			"definitions": {
+				"constrained": {
+					"baseStyles": [
+						{
+							"rules": {
+								"float": "left",
+								"margin-inline-end": "2em",
+								"margin-inline-start": "0"
+							},
+							"selector": " > .alignleft"
+						},
+						{
+							"rules": {
+								"float": "right",
+								"margin-inline-end": "0",
+								"margin-inline-start": "2em"
+							},
+							"selector": " > .alignright"
+						},
+						{
+							"rules": {
+								"margin-left": "auto !important",
+								"margin-right": "auto !important"
+							},
+							"selector": " > .aligncenter"
+						},
+						{
+							"rules": {
+								"margin-left": "auto !important",
+								"margin-right": "auto !important",
+								"max-width": "var(--wp--style--global--content-size)"
+							},
+							"selector": " > :where(:not(.alignleft):not(.alignright):not(.alignfull))"
+						},
+						{
+							"rules": {
+								"max-width": "var(--wp--style--global--wide-size)"
+							},
+							"selector": " > .alignwide"
+						}
+					],
+					"className": "is-layout-constrained",
+					"name": "constrained",
+					"slug": "constrained",
+					"spacingStyles": [
+						{
+							"rules": {
+								"margin-block-end": "0",
+								"margin-block-start": "0"
+							},
+							"selector": " > *"
+						},
+						{
+							"rules": {
+								"margin-block-end": "0",
+								"margin-block-start": null
+							},
+							"selector": " > * + *"
+						}
+					]
+				},
+				"default": {
+					"baseStyles": [
+						{
+							"rules": {
+								"float": "left",
+								"margin-inline-end": "2em",
+								"margin-inline-start": "0"
+							},
+							"selector": " > .alignleft"
+						},
+						{
+							"rules": {
+								"float": "right",
+								"margin-inline-end": "0",
+								"margin-inline-start": "2em"
+							},
+							"selector": " > .alignright"
+						},
+						{
+							"rules": {
+								"margin-left": "auto !important",
+								"margin-right": "auto !important"
+							},
+							"selector": " > .aligncenter"
+						}
+					],
+					"className": "is-layout-flow",
+					"name": "default",
+					"slug": "flow",
+					"spacingStyles": [
+						{
+							"rules": {
+								"margin-block-end": "0",
+								"margin-block-start": "0"
+							},
+							"selector": " > *"
+						},
+						{
+							"rules": {
+								"margin-block-end": "0",
+								"margin-block-start": null
+							},
+							"selector": " > * + *"
+						}
+					]
+				},
+				"flex": {
+					"baseStyles": [
+						{
+							"rules": {
+								"align-items": "center",
+								"flex-wrap": "wrap"
+							},
+							"selector": ""
+						},
+						{
+							"rules": {
+								"margin": "0"
+							},
+							"selector": " > *"
+						}
+					],
+					"className": "is-layout-flex",
+					"displayMode": "flex",
+					"name": "flex",
+					"slug": "flex",
+					"spacingStyles": [
+						{
+							"rules": {
+								"gap": null
+							},
+							"selector": ""
+						}
+					]
+				}
+			},
+			"wideSize": "1000px"
+		},
+		"shadow": {
+			"defaultPresets": true,
+			"presets": []
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"increment": 1.5,
+				"mediumStep": 1.5,
+				"operator": "*",
+				"steps": 0,
+				"unit": "rem"
+			},
+			"spacingSizes": [
+				{
+					"name": "1",
+					"size": "0.75rem",
+					"slug": "30"
+				},
+				{
+					"name": "2",
+					"size": "1rem",
+					"slug": "40"
+				},
+				{
+					"name": "3",
+					"size": "1.5rem",
+					"slug": "50"
+				},
+				{
+					"name": "4",
+					"size": "2rem",
+					"slug": "60"
+				},
+				{
+					"name": "5",
+					"size": "3rem",
+					"slug": "70"
+				},
+				{
+					"name": "6",
+					"size": "4.5rem",
+					"slug": "80"
+				}
+			],
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"customFontSize": true,
+			"dropCap": true,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "800",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_800.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "800",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_800.ttf"
+							]
+						}
+					],
+					"fontFamily": "Newsreader",
+					"slug": "newsreader"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": false,
+					"name": "Extra Small",
+					"size": "0.833rem",
+					"slug": "x-small"
+				},
+				{
+					"fluid": {
+						"max": "1rem",
+						"min": "0.833rem"
+					},
+					"name": "Small",
+					"size": "1rem",
+					"slug": "small"
+				},
+				{
+					"fluid": {
+						"max": "1.2rem",
+						"min": "1rem"
+					},
+					"name": "Medium",
+					"size": "1.2rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": {
+						"max": "1.44rem",
+						"min": "1.2rem"
+					},
+					"name": "Large",
+					"size": "1.44rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "1.728rem",
+						"min": "1.44rem"
+					},
+					"name": "Extra Large",
+					"size": "1.728rem",
+					"slug": "x-large"
+				},
+				{
+					"fluid": {
+						"max": "2.074rem",
+						"min": "1.728rem"
+					},
+					"name": "2X Large",
+					"size": "1.901rem",
+					"slug": "xx-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"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "var:preset|spacing|40"
+					}
+				}
+			},
+			"core/avatar": {
+				"border": {
+					"radius": "999px"
+				},
+				"typography": {
+					"lineHeight": "0"
+				}
+			},
+			"core/button": {
+				"spacing": {
+					"padding": {
+						"bottom": "16px",
+						"left": "28px",
+						"right": "28px",
+						"top": "18px"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"width": "1px"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "15px",
+								"left": "27px",
+								"right": "27px",
+								"top": "17px"
+							}
+						}
+					}
+				}
+			},
+			"core/buttons": {
+				"spacing": {
+					"blockGap": "var:preset|spacing|40"
+				}
+			},
+			"core/calendar": {
+				"css": ".wp-block-calendar table:where(:not(.has-text-color)) td,.wp-block-calendar table:where(:not(.has-text-color)) th {border-color: var(--wp--preset--color--secondary);}: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"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "var:preset|spacing|40"
+					}
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--secondary)",
+					"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"
+				}
+			},
+			"core/comment-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-date": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-edit-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-reply-link": {
+				"elements": {
+					"link": {
+						"border": {
+							"color": "var(--wp--preset--color--contrast)",
+							"radius": "2px",
+							"style": "solid",
+							"width": "1px"
+						},
+						"spacing": {
+							"padding": "5px 8px"
+						},
+						"typography": {
+							"fontSize": "var(--wp--preset--font-size--x-small)",
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"fontWeight": "500",
+					"letterSpacing": "0.04em",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/comments-pagination": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline solid"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/comments-title": {
+				"spacing": {
+					"margin": {
+						"top": "0px",
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)"
+				}
+			},
+			"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/image": {
+				"css": " .wp-element-caption{text-align:center;}"
+			},
+			"core/latest-comments": {
+				"css": ".wp-block-latest-comments__comment-date {font-size: var(--wp--preset--font-size--x-small);}.wp-block-latest-comments__comment-excerpt p{font-size: var(--wp--preset--font-size--small);}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "0px"
+					}
+				}
+			},
+			"core/latest-posts": {
+				"css": ".wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date {font-size: var(--wp--preset--font-size--x-small);}",
+				"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);} .wp-block-navigation__submenu-container.has-background {padding:0;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/page-list": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/paragraph": {
+				"typography": {
+					"lineHeight": "calc(1em + 0.5rem)"
+				}
+			},
+			"core/post-author": {
+				"css": ".wp-block-post-author .wp-block-post-author__byline, .wp-block-post-author .wp-block-post-author__bio {font-size:inherit;} .wp-block-post-author__avatar img {vertical-align:middle;} .wp-block-post-author__bio {margin:0;} .wp-block-post-author__avatar img {border-radius: 999px;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-comments-count": {
+				"css": ".wp-block-post-comments-form .form-submit {margin-bottom: 0;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-comments-form": {
+				"css": ".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]), .wp-block-post-comments-form .comment-form textarea {line-height: inherit;}",
+				"spacing": {
+					"margin": {
+						"top": "var(--wp--preset--spacing--70)"
+					}
+				}
+			},
+			"core/post-comments-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-date": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-navigation-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-terms": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none",
+							"fontWeight": "400"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"fontWeight": "400"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--secondary)",
+					"style": "solid",
+					"width": "1px 0"
+				},
+				"spacing": {
+					"padding": "var(--wp--preset--spacing--50)"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "italic"
+				}
+			},
+			"core/query-pagination": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline solid"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/query-title": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "italic"
+				}
+			},
+			"core/read-more": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/rss": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/search": {
+				"css": ".wp-block-search__button-inside .wp-block-search__inside-wrapper {padding: 2px;} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {background-color: #ffffff;border-color: #949494;} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {padding: 0 0 0 var(--wp--preset--spacing--40);} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button {padding-right: var(--wp--preset--spacing--40);} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button, :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button {background-color: #ffffff; color: var(--wp--preset--color--primary);} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button:hover, :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button:focus {background-color: #ffffff;}",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"lineHeight": "1"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "solid",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/site-title": {
+				"color": {
+					"text": "var:preset|color|contrast"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var:preset|color|contrast"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "italic",
+					"fontWeight": "400"
+				}
+			},
+			"core/social-links": {
+				"spacing": {
+					"blockGap": {
+						"left": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				}
+			},
+			"core/table": {
+				"css": " + .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 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--contrast);}"
+			},
+			"core/term-description": {
+				"css": ".wp-block-term-description p:first-child {margin-top: 0;} .wp-block-term-description p:last-child {margin-bottom: 0;}"
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--base)",
+			"text": "var(--wp--preset--color--contrast)"
+		},
+		"elements": {
+			"button": {
+				":active": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				":focus": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				"border": {
+					"radius": "2px"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--contrast)",
+					"text": "var(--wp--preset--color--base)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "16px",
+						"left": "28px",
+						"right": "28px",
+						"top": "18px"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"fontWeight": "500",
+					"letterSpacing": "0.04em",
+					"lineHeight": "1",
+					"textTransform": "uppercase"
+				}
+			},
+			"caption": {
+				"color": {
+					"text": "var:preset|color|contrast"
+				},
+				"spacing": {
+					"margin": {
+						"top": "var(--wp--preset--spacing--30)",
+						"bottom": "var(--wp--preset--spacing--50)"
+					},
+					"padding": {
+						"right" : "var(--wp--preset--spacing--50)",
+						"left" : "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var:preset|font-size|x-small"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xx-large)"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"lineHeight": "1.125"
+				}
+			},
+			"link": {
+				":hover": {
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"typography": {
+					"fontWeight": "500"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "var:preset|spacing|50",
+			"padding": {
+				"bottom": "0",
+				"left": "var:preset|spacing|50",
+				"right": "var:preset|spacing|50",
+				"top": "var:preset|spacing|70"
+			}
+		},
+		"typography": {
+			"fontFamily": "var:preset|font-family|newsreader",
+			"fontSize": "var:preset|font-size|small",
+			"lineHeight": "1.5"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}