Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Add archeo (as Blockbase child) #5094

Closed
wants to merge 15 commits into from
Empty file added archeo/assets/theme.css
Empty file.
9 changes: 9 additions & 0 deletions archeo/block-template-parts/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!-- wp:group {"layout":{"type":"flex","justifyContent":"space-between"},"style":{"spacing":{"padding":{"bottom":"100px","top":"100px","left":"80px","right":"80px"}}}} -->
<div class="wp-block-group" style="padding-left: 80px; padding-right: 80px; padding-top: 100px; padding-bottom: 100px;">
<!-- wp:navigation {"__unstableLocation":"primary","className":"is-style-blockbase-navigation-improved-responsive","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"}} /-->

<!-- wp:paragraph {"style":{"spacing":{"margin":{"top":0}}}} -->
<p style="margin-top: 0">Proudly Powered by <a href="https://wordpress.org" rel="nofollow">WordPress</a></p>
<!-- /wp:paragraph -->
</div>
<!-- /wp:group -->
31 changes: 31 additions & 0 deletions archeo/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
=== Archeo ===
Contributors: Automattic
Requires at least: 5.8
Tested up to: 5.8
Requires PHP: 5.7
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

== Description ==

A clean portfolio theme

== Changelog ==

= 1.0.0 =
* Initial release

== Copyright ==

Archeo WordPress Theme, (C) 2021 Automattic
Archeo 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.
Binary file added archeo/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions archeo/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
Theme Name: Archeo
Theme URI: https://github.com/Automattic/themes/tree/trunk/archeo
Author: Automattic
Author URI: https://automattic.com
Description: A clean portfolio theme
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will probably need to update this.

Requires at least: 5.8
Tested up to: 5.8
Requires PHP: 5.7
Version: 0.0.1
License: GNU General Public License v2 or later
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
Template: blockbase
Text Domain: archeo
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
*/
99 changes: 99 additions & 0 deletions archeo/theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
{
"$schema": "https://json.schemastore.org/theme-v1.json",
"version": 1,
"settings": {
"color": {
"palette": [
{
"slug": "foreground",
"color": "#242321",
"name": "Foreground"
},
{
"slug": "background",
"color": "#FCFBF8",
"name": "Background"
},
{
"slug": "primary",
"color": "#71706E",
"name": "Primary"
},
{
"slug": "tertiary",
"color": "#CFCFCF",
"name": "Tertiary"
}
]
},
"custom": {
"heading": {
"typography": {
"fontWeight": 200
}
}
},
"typography": {
"fontFamilies": [
{
"fontFamily": "\"Chivo\", serif",
"fontSlug": "chivo",
"slug": "body-font",
"name": "Body (Chivo)",
"google": "family=Chivo:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900"
},
{
"fontFamily": "\"Chivo\", serif",
"fontSlug": "chivo",
"slug": "heading-font",
"name": "Headings (System Font)",
"google": "family=Chivo:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900"
}
],
"fontSizes": [
{
"name": "Small",
"size": "16px",
"slug": "small"
},
{
"name": "Normal",
"size": "18px",
"slug": "normal"
},
{
"name": "Medium",
"size": "32px",
"slug": "medium"
},
{
"name": "Large",
"size": "48px",
"slug": "large"
},
{
"name": "Huge",
"size": "72px",
"slug": "huge"
}
]
}
},
"styles": {
"blocks": {
"core/site-title": {
"typography": {
"fontWeight": 400,
"textTransform": "uppercase"
}
}
},
"elements": {
"h1": {
"typography": {
"fontSize": "100px"
}
}
}
}
}
2 changes: 1 addition & 1 deletion blockbase/theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@
"fontFamily": "var(--wp--preset--font-family--heading-font)",
"fontWeight": "var(--wp--custom--heading--typography--font-weight)",
"lineHeight": "var(--wp--custom--heading--typography--line-height)",
"fontSize": "32px"
"fontSize": "var(--wp--preset--font-size--huge)"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this coming from elsewhere or just a fix?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's just a fix. I'll create a separate PR for it.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

},
"spacing": {
"margin": {
Expand Down