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

Archivo: add theme (#6903)

* Initial commit.

* Archivo: Add Archivo variable font to have all the weights and minor edits in readme.txt

---------

Co-authored-by: Takashi Irie <takashi@automattic.com>
Jeff Ong преди 2 години
родител
ревизия
6f38cf1ad6
променени са 32 файла, в които са добавени 1618 реда и са изтрити 0 реда
  1. BIN
      archivo/assets/fonts/Archivo-Italic-VariableFont_wdth,wght.ttf
  2. BIN
      archivo/assets/fonts/Archivo-VariableFont_wdth,wght.ttf
  3. BIN
      archivo/assets/fonts/courier-prime_700.ttf
  4. BIN
      archivo/assets/fonts/courier-prime_700italic.ttf
  5. BIN
      archivo/assets/fonts/courier-prime_italic.ttf
  6. BIN
      archivo/assets/fonts/courier-prime_regular.ttf
  7. 60 0
      archivo/functions.php
  8. 1 0
      archivo/parts/footer.html
  9. 1 0
      archivo/parts/header.html
  10. 39 0
      archivo/patterns/footer.php
  11. 20 0
      archivo/patterns/header.php
  12. 19 0
      archivo/patterns/hidden-404.php
  13. 54 0
      archivo/patterns/hidden-comments.php
  14. 10 0
      archivo/patterns/hidden-no-results.php
  15. 8 0
      archivo/patterns/hidden-search-field.php
  16. 53 0
      archivo/patterns/post-list.php
  17. 44 0
      archivo/readme.txt
  18. BIN
      archivo/screenshot.png
  19. 256 0
      archivo/style.css
  20. 17 0
      archivo/styles/typewriter.json
  21. 45 0
      archivo/templates/404.html
  22. 29 0
      archivo/templates/archive-product.html
  23. 49 0
      archivo/templates/archive.html
  24. 29 0
      archivo/templates/index.html
  25. 56 0
      archivo/templates/page.html
  26. 29 0
      archivo/templates/product-search-results.html
  27. 109 0
      archivo/templates/search.html
  28. 29 0
      archivo/templates/single-product.html
  29. 85 0
      archivo/templates/single.html
  30. 29 0
      archivo/templates/taxonomy-product_cat.html
  31. 29 0
      archivo/templates/taxonomy-product_tag.html
  32. 518 0
      archivo/theme.json

BIN
archivo/assets/fonts/Archivo-Italic-VariableFont_wdth,wght.ttf


BIN
archivo/assets/fonts/Archivo-VariableFont_wdth,wght.ttf


BIN
archivo/assets/fonts/courier-prime_700.ttf


BIN
archivo/assets/fonts/courier-prime_700italic.ttf


BIN
archivo/assets/fonts/courier-prime_italic.ttf


BIN
archivo/assets/fonts/courier-prime_regular.ttf


+ 60 - 0
archivo/functions.php

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

+ 1 - 0
archivo/parts/footer.html

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

+ 1 - 0
archivo/parts/header.html

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

+ 39 - 0
archivo/patterns/footer.php

@@ -0,0 +1,39 @@
+<?php
+/**
+ * Title: Default footer
+ * Slug: archivo/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ */
+?>
+
+<!-- wp:spacer {"height":"192px"} -->
+<div style="height:192px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:site-logo {"width":96,"shouldSyncIcon":false,"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|50"}}}} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|50"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between","verticalAlignment":"top"}} -->
+<div class="wp-block-group" style="padding-top:0;padding-bottom:var(--wp--preset--spacing--50)">
+	<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-title {"style":{"typography":{"lineHeight":1.388888889}}} /-->
+
+		<!-- wp:paragraph -->
+		<p><a href="#"><?php _e( 'Tumblr', 'archivo' ); ?></a> / <a href="#"><?php _e( 'Instagram', 'archivo' ); ?></a> / <a href="#"><?php _e( 'Email', 'archivo' ); ?></a></p>
+		<!-- /wp:paragraph -->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:paragraph -->
+	<p><?php
+		/* Translators: WordPress link. */
+		$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'archivo' ) ) . '" rel="nofollow">WordPress</a>';
+		echo sprintf(
+			esc_html__( 'Designed with %1$s', 'archivo' ),
+			$wordpress_link
+		);
+	?></p>
+	<!-- /wp:paragraph -->
+</div>
+<!-- /wp:group -->

+ 20 - 0
archivo/patterns/header.php

@@ -0,0 +1,20 @@
+<?php
+/**
+ * Title: Default header
+ * Slug: archivo/header
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+?>
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+	<!-- wp:site-title /-->
+
+	<!-- wp:group {"layout":{"type":"flex","orientation":"vertical"}} -->
+	<div class="wp-block-group">
+		<!-- wp:navigation {"overlayBackgroundColor":"background","overlayTextColor":"foreground","layout":{"type":"flex","orientation":"vertical","justifyContent":"left"},"style":{"spacing":{"blockGap":"0"}}} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 19 - 0
archivo/patterns/hidden-404.php

@@ -0,0 +1,19 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: archivo/hidden-404
+ * Inserter: no
+ */
+?>
+
+<!-- wp:heading {"textAlign":"left","level":1,"style":{"typography":{"fontStyle":"normal","fontWeight":"700","lineHeight":1.666666667}},"fontSize":"medium"} -->
+<h1 class="wp-block-heading has-text-align-left has-medium-font-size" id="oops-that-page-can-t-be-found" style="font-style:normal;font-weight:700;line-height:1.666666667;">
+	<?php echo esc_html__( 'Oops! That page can&rsquo;t be found.', 'archivo' ); ?>
+</h1>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph -->
+<p><?php echo  esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'archivo' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:search {"showLabel":false,"placeholder":"<?php echo esc_attr_x( 'Search...', 'placeholder for search field', 'archivo' ); ?>","buttonText":"<?php esc_attr_e( 'Search', 'archivo' ); ?>"} /-->

+ 54 - 0
archivo/patterns/hidden-comments.php

@@ -0,0 +1,54 @@
+<?php
+/**
+ * Title: Comments
+ * Slug: archivo/hidden-comments
+ * Inserter: no
+ */
+?>
+<!-- wp:spacer {"height":"3rem"} -->
+<div style="height:3rem" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- 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 {"style":{"spacing":{"blockGap":"0.5rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+			<div class="wp-block-group">
+				<!-- wp:avatar {"size":32} /-->
+
+				<!-- 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 {"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:comments -->

+ 10 - 0
archivo/patterns/hidden-no-results.php

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

+ 8 - 0
archivo/patterns/hidden-search-field.php

@@ -0,0 +1,8 @@
+<?php
+/**
+ * Title: Hidden Search Field
+ * Slug: archivo/hidden-search-field
+ * Inserter: no
+ */
+?>
+<!-- wp:search {"showLabel":false,"placeholder":"<?php echo esc_attr_x( 'Search...', 'placeholder for search field', 'archivo' ); ?>","buttonText":"<?php esc_attr_e( 'Search', 'archivo' ); ?>"} /-->

+ 53 - 0
archivo/patterns/post-list.php

@@ -0,0 +1,53 @@
+<?php
+/**
+ * Title: Post List
+ * Slug: archivo/post-list
+ * Categories: posts
+ */
+?>
+
+<!-- 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":"default"}} -->
+<div class="wp-block-query">
+	<!-- wp:post-template -->
+		<!-- wp:columns {"style":{"spacing":{"padding":{"bottom":"3rem"}}}} -->
+		<div class="wp-block-columns" style="padding-bottom:3rem">
+			<!-- wp:column {"width":"34.0137%"} -->
+			<div class="wp-block-column" style="flex-basis:34.0137%">
+				<!-- wp:post-title {"isLink":true} /-->
+
+				<!-- wp:post-excerpt /-->
+
+				<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex"}} -->
+				<div class="wp-block-group">
+					<!-- wp:post-date {"isLink":false} /-->
+
+					<!-- wp:post-author {"showAvatar":false,"isLink":true} /-->
+
+					<!-- wp:post-terms {"term":"category"} /-->
+
+					<!-- wp:post-terms {"term":"post_tag"} /-->
+				</div>
+				<!-- /wp:group -->
+			</div>
+			<!-- /wp:column -->
+
+			<!-- wp:column {"width":"65.9863%"} -->
+			<div class="wp-block-column" style="flex-basis:65.9863%">
+				<!-- wp:post-featured-image {"isLink":true} /-->
+			</div>
+			<!-- /wp:column -->
+		</div>
+		<!-- /wp:columns -->
+	<!-- /wp:post-template -->
+
+	<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+	<div class="wp-block-group">
+		<!-- wp:query-pagination {"paginationArrow":"chevron","layout":{"type":"flex","justifyContent":"space-between","arrow":"chevron"}} -->
+			<!-- wp:query-pagination-previous /-->
+
+			<!-- wp:query-pagination-next /-->
+		<!-- /wp:query-pagination -->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:query -->

+ 44 - 0
archivo/readme.txt

@@ -0,0 +1,44 @@
+=== Archivo ===
+Contributors: Automattic
+Requires at least: 5.8
+Tested up to: 6.1.1
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Archivo is a blog and portfolio theme that shows your featured image large.
+
+== Changelog ==
+
+= 0.0.1 =
+* Initial release
+
+== Copyright ==
+
+Archivo WordPress Theme, (C) 2022 Automattic
+Archivo is distributed under the terms of the GNU GPL.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+Archivo Font
+Licensed under SIL Open Font License, 1.1 (http://scripts.sil.org/OFL)
+Source: https://fonts.google.com/specimen/Archivo
+
+Courier Prime Font
+Licensed under SIL Open Font License, 1.1 (http://scripts.sil.org/OFL)
+Source: https://fonts.google.com/specimen/Courier+Prime
+
+May 1973: Girl with a flower, Fountain Square, Cincinnati by a photographer, Tom Hubbard
+https://upload.wikimedia.org/wikipedia/commons/3/3c/FOUNTAIN_SQUARE_IN_DOWNTOWN_CINCINNATI_IS_A_PUBLIC_SQUARE_THAT_WORKS_FOR_THE_CITY_AND_ITS_PEOPLE_IN_A_MYRIAD_OF_WAYS..._-_NARA_-_553165.jpg
+
+Included in theme screenshot

BIN
archivo/screenshot.png


+ 256 - 0
archivo/style.css

@@ -0,0 +1,256 @@
+/*
+Theme Name: Archivo
+Theme URI: https://wordpress.com/theme/archivo/
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Archivo is a blog and portfolio theme that shows your featured image large.
+Requires at least: 5.8
+Tested up to: 5.9
+Requires PHP: 5.7
+Version: 0.0.1
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Template: 
+Text Domain: archivo
+Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
+*//*
+ * Font smoothing
+ * https://github.com/WordPress/gutenberg/issues/35934
+ */
+body {
+	-moz-osx-font-smoothing: grayscale;
+	-webkit-font-smoothing: antialiased;
+}
+
+/*
+ * Control the hover stylings of outline block style.
+ * Unnecessary once block styles are configurable via theme.json
+ * https://github.com/WordPress/gutenberg/issues/42794
+ */
+.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
+	background-color: var(--wp--preset--color--secondary);
+	color: var(--wp--preset--color--background);
+	border-color: var(--wp--preset--color--secondary);
+}
+
+/**
+ * Currently table styles are only available with 'wp-block-styles' 
+ * theme support (block css) thus the following needs to be included
+ * since 'wp-block-styles' aren't used for this theme.
+ * https://github.com/WordPress/gutenberg/issues/45065
+ */
+.wp-block-table thead {
+	border-bottom: 3px solid;
+}
+.wp-block-table tfoot {
+	border-top: 3px solid;
+}
+.wp-block-table td,
+.wp-block-table th {
+	padding: var(--wp--preset--spacing--30);
+	border: 1px solid;
+	word-break: normal;
+}
+.wp-block-table figcaption {
+	font-size: var(--wp--preset--font-size--small);
+	margin-top: calc( var(--wp--preset--spacing--50) / 4 );
+	text-align: center;
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-color: var(--wp--preset--color--tertiary);
+	text-decoration-thickness: .5px !important;
+	text-underline-offset: .1em;
+}
+
+a:hover {
+	text-decoration-color: var(--wp--preset--color--tertiary) !important;
+}
+
+/* Overrides the Gutenberg styles for the outline button */
+.wp-block-button.is-style-outline>.wp-block-button__link {
+	padding: calc(0.5em - 1px) calc(2em - 1px);
+	border: 1px solid var(--wp--preset--color--foreground);
+}
+
+/* Reset browser default margins for blockquote element */
+.wp-block-pullquote blockquote {
+	margin: 0;
+}
+
+/* Search button inside style */
+.wp-block-search__button-inside .wp-block-search__inside-wrapper {
+	background-color: var(--wp--preset--color--foreground);
+	padding: 2px;
+}
+
+/* Adjust margin top for comment reply title */
+.wp-block-post-comments-form .comment-reply-title {
+	margin-top: var(--wp--preset--spacing--50);
+}
+
+/*
+ * Adjust the position of the close button
+ */
+.wp-block-navigation__responsive-container-close {
+	left: 0;
+}
+
+.has-modal-open .is-menu-open .wp-block-navigation__responsive-dialog {
+	margin-top: 48px;
+}
+
+.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
+	margin-top: 94px;
+}
+
+/*
+ * Responsive menu container padding.
+ * This ensures the responsive container inherits the same
+ * spacing defined above. This behavior may be built into
+ * the Block Editor in the future.
+ */
+.wp-block-navigation__responsive-container.is-menu-open {
+	padding: var(--wp--preset--spacing--50);
+}
+
+/* Adjust the top padding for the menu items */
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
+	padding-top: calc(1.5rem + var(--wp--preset--spacing--50));
+}
+
+/* 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: 0;
+}
+
+/* Adjust the border width for the submenu */
+.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
+	border-width: 0.5px;
+}
+
+/* No option to change the size of avatar */
+.wp-block-post-author__avatar img {
+	height: 40px;
+	width: 40px;
+}
+
+/* Remove browser default margins */
+.wp-block-post-author__bio {
+	margin: 0;
+}
+
+/*
+ * Remove the default margin bottom from term description and post excerpt.
+ */
+.wp-block-term-description p:first-child,
+.wp-block-post-excerpt__excerpt {
+	margin-top: 0;
+}
+
+.wp-block-term-description p:last-child,
+.wp-block-post-excerpt__excerpt {
+	margin-bottom: 0;
+}
+
+.wp-block-post-excerpt__more-text {
+	margin: var(--wp--preset--spacing--50) 0;
+}
+
+/*
+ * Match the style of download button with the button block.
+ */
+.wp-block-file:not(.wp-element-button) {
+	display: inline-block;
+	font-size: inherit;
+}
+
+/*
+ * Normalise font sizes for the latest comments, latest posts, and post author block
+ */
+.wp-block-latest-comments__comment-excerpt p,
+.wp-block-latest-comments__comment-date,
+.wp-block-latest-posts__post-author,
+.wp-block-latest-posts__post-date,
+.wp-block-post-author__byline,
+.wp-block-post-author__name,
+.wp-block-post-author__bio {
+	font-size: inherit;
+}
+
+/*
+ * Adjust font colour in the Calendar widget
+ */
+.wp-block-calendar table:where(:not(.has-text-color)) {
+	color: var(--wp--preset--color--tertiary);
+}
+
+/*
+ * Needed to style Jetpack Contact Form
+ */
+.wp-block-jetpack-contact-form input:not([type=submit]):not([type=checkbox]):not([type=radio]),
+.wp-block-jetpack-contact-form select,
+.wp-block-jetpack-contact-form textarea {
+	border: 1px solid #949494;
+	font-family: inherit;
+	font-size: 1em;
+	margin-bottom: var(--wp--preset--spacing--50);
+	padding: 8px;
+}
+
+.wp-block-jetpack-contact-form .wp-block-jetpack-button button {
+	padding: 0.5em 2em;
+}
+
+.wp-block-jetpack-contact-form.contact-form label {
+	font-weight: 400;
+	margin-bottom: 0;
+	text-transform: none;
+}
+
+.wp-block-jetpack-contact-form.contact-form label span {
+	opacity: 0.7;
+}
+
+.wp-block-jetpack-contact-form.contact-form select {
+	padding: 8px;
+}
+
+.wp-block-jetpack-contact-form.contact-form textarea {
+	margin-bottom: var(--wp--preset--spacing--50);
+}
+
+div[id^="contact-form-"] h3 {
+	font-size: var(--wp--preset--font-size--medium);
+	line-height: 1.666666667;
+}
+
+.contact-form-submission {
+	margin: 0;
+	padding: 0;
+}
+
+.wp-block-jetpack-mailchimp input:not([type=submit]) {
+	border: 1px solid #949494;
+	font-family: inherit;
+	font-size: 1em;
+	padding: 8px;
+}
+
+.wp-block-jetpack-mailchimp .wp-block-jetpack-button button {
+	padding: 0.5em 2em;
+}
+
+.wp-block-jetpack-mailchimp .wp-block-jetpack-button,
+.wp-block-jetpack-mailchimp p {
+	margin-bottom: var(--wp--preset--spacing--50);
+}
+
+.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;
+}

+ 17 - 0
archivo/styles/typewriter.json

@@ -0,0 +1,17 @@
+{
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"version": 2,
+	"title": "Typewriter",
+	"styles": {
+		"elements": {
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--courier-prime)"
+				}
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--courier-prime)"
+		}
+	}
+}

+ 45 - 0
archivo/templates/404.html

@@ -0,0 +1,45 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:columns -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"34.0137%"} -->
+					<div class="wp-block-column" style="flex-basis:34.0137%">
+						<!-- wp:group {"tagName":"main","layout":{"type":"default"}} -->
+						<main class="wp-block-group">
+							<!-- wp:pattern {"slug":"archivo/hidden-404"} /-->
+						</main>
+						<!-- /wp:group -->
+					</div>
+					<!-- /wp:column -->
+					<!-- wp:column {"width":"65.9863%"} -->
+					<div class="wp-block-column" style="flex-basis:65.9863%">
+					</div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
archivo/templates/archive-product.html

@@ -0,0 +1,29 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:woocommerce/legacy-template {"template":"archive-product"} /-->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 49 - 0
archivo/templates/archive.html

@@ -0,0 +1,49 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:columns -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"34.0137%"} -->
+					<div class="wp-block-column" style="flex-basis:34.0137%">
+						<!-- wp:query-title {"type":"archive","showPrefix":false} /-->
+
+						<!-- wp:term-description {"style":{"spacing":{"margin":{"top":"0.5rem"}}},"fontSize":"small"} /-->
+
+						<!-- wp:spacer {"height":"3rem"} -->
+						<div style="height:3rem" aria-hidden="true" class="wp-block-spacer"></div>
+						<!-- /wp:spacer -->
+					</div>
+					<!-- /wp:column -->
+
+					<!-- wp:column {"width":"65.9863%"} -->
+					<div class="wp-block-column" style="flex-basis:65.9863%"></div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+
+				<!-- wp:pattern {"slug":"archivo/post-list"} /-->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
archivo/templates/index.html

@@ -0,0 +1,29 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:pattern {"slug":"archivo/post-list"} /-->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 56 - 0
archivo/templates/page.html

@@ -0,0 +1,56 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:columns -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"34.0137%"} -->
+					<div class="wp-block-column" style="flex-basis:34.0137%">
+						<!-- wp:post-title /-->
+
+						<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"default"}} /-->
+					</div>
+					<!-- /wp:column -->
+					<!-- wp:column {"width":"65.9863%"} -->
+					<div class="wp-block-column" style="flex-basis:65.9863%">
+						<!-- wp:post-featured-image {"align":"full"} /-->
+					</div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+				<!-- wp:columns -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"34.0137%"} -->
+					<div class="wp-block-column" style="flex-basis:34.0137%">
+						<!-- wp:pattern {"slug":"archivo/hidden-comments"} /-->
+					</div>
+					<!-- /wp:column -->
+					<!-- wp:column {"width":"65.9863%"} -->
+					<div class="wp-block-column" style="flex-basis:65.9863%"></div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
archivo/templates/product-search-results.html

@@ -0,0 +1,29 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:woocommerce/legacy-template {"template":"archive-product"} /-->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 109 - 0
archivo/templates/search.html

@@ -0,0 +1,109 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:columns -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"34.0137%"} -->
+					<div class="wp-block-column" style="flex-basis:34.0137%">
+						<!-- wp:query-title {"type":"search"} /-->
+
+						<!-- wp:pattern {"slug":"archivo/hidden-search-field"} /-->
+
+						<!-- wp:spacer {"height":"3rem"} -->
+						<div style="height:3rem" aria-hidden="true" class="wp-block-spacer"></div>
+						<!-- /wp:spacer -->
+					</div>
+					<!-- /wp:column -->
+
+					<!-- wp:column {"width":"65.9863%"} -->
+					<div class="wp-block-column" style="flex-basis:65.9863%"></div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+
+				<!-- 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":"default"}} -->
+				<div class="wp-block-query">
+					<!-- wp:post-template -->
+						<!-- wp:columns {"style":{"spacing":{"padding":{"bottom":"3rem"}}}} -->
+						<div class="wp-block-columns" style="padding-bottom:3rem">
+							<!-- wp:column {"width":"34.0137%"} -->
+							<div class="wp-block-column" style="flex-basis:34.0137%">
+								<!-- wp:post-title {"isLink":true} /-->
+
+								<!-- wp:post-excerpt /-->
+
+								<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex"}} -->
+								<div class="wp-block-group">
+									<!-- wp:post-date {"isLink":false} /-->
+
+									<!-- wp:post-author {"showAvatar":false,"isLink":true} /-->
+
+									<!-- wp:post-terms {"term":"category"} /-->
+
+									<!-- wp:post-terms {"term":"post_tag"} /-->
+								</div>
+								<!-- /wp:group -->
+							</div>
+							<!-- /wp:column -->
+
+							<!-- wp:column {"width":"65.9863%"} -->
+							<div class="wp-block-column" style="flex-basis:65.9863%">
+								<!-- wp:post-featured-image {"isLink":true} /-->
+							</div>
+							<!-- /wp:column -->
+						</div>
+						<!-- /wp:columns -->
+					<!-- /wp:post-template -->
+
+					<!-- wp:query-no-results -->
+						<!-- wp:columns -->
+						<div class="wp-block-columns">
+							<!-- wp:column {"width":"34.0137%"} -->
+							<div class="wp-block-column" style="flex-basis:34.0137%">
+								<!-- wp:pattern {"slug":"archivo/hidden-no-results"} /-->
+							</div>
+							<!-- /wp:column -->
+
+							<!-- wp:column {"width":"65.9863%"} -->
+							<div class="wp-block-column" style="flex-basis:65.9863%"></div>
+							<!-- /wp:column -->
+						</div>
+						<!-- /wp:columns -->
+					<!-- /wp:query-no-results -->
+
+					<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+					<div class="wp-block-group">
+						<!-- wp:query-pagination {"paginationArrow":"chevron","layout":{"type":"flex","justifyContent":"space-between","arrow":"chevron"}} -->
+							<!-- wp:query-pagination-previous /-->
+
+							<!-- wp:query-pagination-next /-->
+						<!-- /wp:query-pagination -->
+					</div>
+					<!-- /wp:group -->
+				</div>
+				<!-- /wp:query -->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
archivo/templates/single-product.html

@@ -0,0 +1,29 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:woocommerce/legacy-template {"template":"single-product"} /-->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 85 - 0
archivo/templates/single.html

@@ -0,0 +1,85 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:columns -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"34.0137%"} -->
+					<div class="wp-block-column" style="flex-basis:34.0137%">
+						<!-- wp:post-title /-->
+
+						<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"default"}} /-->
+
+						<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex"}} -->
+						<div class="wp-block-group">
+							<!-- wp:post-author {"showAvatar":false} /-->
+
+							<!-- wp:post-date {"isLink":true} /-->
+
+							<!-- wp:post-terms {"term":"category"} /-->
+
+							<!-- wp:post-terms {"term":"post_tag"} /-->
+						</div>
+						<!-- /wp:group -->
+					</div>
+					<!-- /wp:column -->
+					<!-- wp:column {"width":"65.9863%"} -->
+					<div class="wp-block-column" style="flex-basis:65.9863%">
+						<!-- wp:post-featured-image {"align":"full"} /-->
+					</div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+
+				<!-- wp:spacer {"height":"3rem"} -->
+				<div style="height:3rem" aria-hidden="true" class="wp-block-spacer"></div>
+				<!-- /wp:spacer -->
+
+				<!-- 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":"chevron"} /-->
+
+					<!-- wp:post-navigation-link {"textAlign":"right","label":"Next Post","arrow":"chevron"} /-->
+				</div>
+				<!-- /wp:group -->
+
+				<!-- wp:columns -->
+				<div class="wp-block-columns">
+					<!-- wp:column {"width":"34.0137%"} -->
+					<div class="wp-block-column" style="flex-basis:34.0137%">
+						<!-- wp:group {"layout":{"type":"default"}} -->
+						<div class="wp-block-group">
+							<!-- wp:pattern {"slug":"archivo/hidden-comments"} /-->
+						</div>
+						<!-- /wp:group -->
+					</div>
+					<!-- /wp:column -->
+					<!-- wp:column {"width":"65.9863%"} -->
+					<div class="wp-block-column" style="flex-basis:65.9863%"></div>
+					<!-- /wp:column -->
+				</div>
+				<!-- /wp:columns -->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
archivo/templates/taxonomy-product_cat.html

@@ -0,0 +1,29 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:woocommerce/legacy-template {"template":"taxonomy-product_cat"} /-->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
archivo/templates/taxonomy-product_tag.html

@@ -0,0 +1,29 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:columns {"align":"wide"} -->
+	<div class="wp-block-columns alignwide">
+		<!-- wp:column {"width":"25%"} -->
+		<div class="wp-block-column" style="flex-basis:25%">
+			<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+
+		<!-- wp:column {"width":"75%"} -->
+		<div class="wp-block-column" style="flex-basis:75%">
+			<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+			<main class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
+				<!-- wp:woocommerce/legacy-template {"template":"taxonomy-product_tag"} /-->
+			</main>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:column -->
+	</div>
+	<!-- /wp:columns -->
+
+	<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
+</div>
+<!-- /wp:group -->

+ 518 - 0
archivo/theme.json

@@ -0,0 +1,518 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"custom": true,
+			"customGradient": true,
+			"palette": [
+				{
+					"color": "#ffffff",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#898989",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#090909",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#787878",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		},
+		"layout": {
+			"contentSize": "400px",
+			"wideSize": "1624px"
+		},
+		"spacing": {
+			"spacingScale": {
+				"steps": 0
+			},
+			"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": "4rem",
+					"slug": "80"
+				}
+			],
+			"units": ["%", "px", "em", "rem", "vh", "vw"]
+		},
+		"typography": {
+			"customFontSize": true,
+			"dropCap": false,
+			"fluid": false,
+			"fontFamilies": [
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Archivo",
+							"fontStretch": "normal",
+							"fontStyle": "normal",
+							"fontWeight": "100 900",
+							"src": [
+								"file:./assets/fonts/Archivo-VariableFont_wdth,wght.ttf"
+							]
+						},
+						{
+							"fontFamily": "Archivo",
+							"fontStretch": "normal",
+							"fontStyle": "italic",
+							"fontWeight": "100 900",
+							"src": [
+								"file:./assets/fonts/Archivo-Italic-VariableFont_wdth,wght.ttf"
+							]
+						}
+					],
+					"fontFamily": "Archivo",
+					"name": "Archivo",
+					"slug": "archivo"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Courier Prime",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": ["file:./assets/fonts/courier-prime_700.ttf"]
+						},
+						{
+							"fontFamily": "Courier Prime",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/courier-prime_regular.ttf"
+							]
+						},
+						{
+							"fontFamily": "Courier Prime",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/courier-prime_italic.ttf"
+							]
+						},
+						{
+							"fontFamily": "Courier Prime",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/courier-prime_700italic.ttf"
+							]
+						}
+					],
+					"fontFamily": "Courier Prime",
+					"name": "Courier Prime",
+					"slug": "courier-prime"
+				}
+			],
+			"fontSizes": [
+				{
+					"name": "Extra Small",
+					"size": "0.625rem",
+					"slug": "x-small"
+				},
+				{
+					"name": "Small",
+					"size": "0.75rem",
+					"slug": "small"
+				},
+				{
+					"name": "Medium",
+					"size": "0.9rem",
+					"slug": "medium"
+				},
+				{
+					"name": "Large",
+					"size": "1.296rem",
+					"slug": "large"
+				},
+				{
+					"name": "Extra Large",
+					"size": "1.866rem",
+					"slug": "x-large"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/avatar": {
+				"typography": {
+					"lineHeight": "0"
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--foreground)",
+					"radius": "0",
+					"style": "solid",
+					"width": "0.5px"
+				},
+				"spacing": {
+					"padding": "var(--wp--preset--spacing--30)"
+				},
+				"typography": {
+					"fontFamily": "monospace"
+				}
+			},
+			"core/columns": {
+				"spacing": {
+					"blockGap": "var(--wp--preset--spacing--50)",
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/comment-author-name": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-date": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-edit-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-reply-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comments-pagination": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comments-title": {
+				"spacing": {
+					"margin": {
+						"top": "0",
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.666666667"
+				}
+			},
+			"core/file": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/gallery": {
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/latest-comments": {
+				"spacing": {
+					"padding": {
+						"left": "0"
+					}
+				}
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/navigation": {
+				"elements": {
+					"link": {
+						":active": {
+							"typography": {
+								"textDecoration": "none"
+							}
+						},
+						":focus": {
+							"typography": {
+								"textDecoration": "underline dotted"
+							}
+						},
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/paragraph": {
+				"typography": {
+					"lineHeight": "calc(1em + 0.5rem)"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.666666667"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--foreground)",
+					"style": "solid",
+					"width": "1px 0"
+				},
+				"elements": {
+					"cite": {
+						"typography": {
+							"fontSize": "var(--wp--preset--font-size--x-small)",
+							"fontStyle": "normal",
+							"textTransform": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": "calc( var(--wp--preset--spacing--50) - 1em )"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"fontStyle": "italic"
+				}
+			},
+			"core/query-title": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.666666667"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--foreground)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"spacing": {
+					"margin": {
+						"right": "0",
+						"left": "0"
+					},
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "normal"
+				}
+			},
+			"core/read-more": {
+				"spacing": {
+					"margin": {
+						"top": "var(--wp--preset--spacing--50)",
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/search": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "solid",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			},
+			"core/site-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontWeight": "700",
+					"lineHeight": "1.666666667"
+				}
+			}
+		},
+		"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--secondary)",
+						"text": "var(--wp--preset--color--background)"
+					}
+				},
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--background)"
+					}
+				},
+				"border": {
+					"radius": "9999px"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--background)"
+				},
+				"spacing": {
+					"padding": "0.5em 2em"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"lineHeight": "1.205787781"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"lineHeight": "1.350308642"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.666666667"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"lineHeight": "1.2",
+					"textTransform": "uppercase"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"lineHeight": "1.2"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--archivo)",
+					"fontWeight": "700",
+					"lineHeight": "calc(1em + 0.5rem)"
+				}
+			},
+			"link": {
+				":hover": {
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "1.5rem",
+			"padding": {
+				"right": "var(--wp--style--block-gap)",
+				"left": "var(--wp--style--block-gap)"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--archivo)",
+			"fontSize": "var(--wp--preset--font-size--small)",
+			"lineHeight": "1.666666667"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}