Initial import

This commit is contained in:
3wc 2023-02-25 22:15:43 -05:00
commit ec59097be0
7 changed files with 225 additions and 0 deletions

9
parts/footer.html Normal file
View File

@ -0,0 +1,9 @@
<!-- wp:separator {"className":"is-style-wide"} -->
<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide"/>
<!-- /wp:separator -->
<!-- wp:social-links -->
<ul class="wp-block-social-links"><!-- wp:social-link {"url":"https://www.patreon.com/reproutopia","service":"patreon"} /-->
<!-- wp:social-link {"url":"https://nitter.net/reproutopia","service":"twitter"} /--></ul>
<!-- /wp:social-links -->

25
parts/header.html Normal file
View File

@ -0,0 +1,25 @@
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","right":"0","bottom":"var:preset|spacing|40","left":"0"}}},"layout":{"type":"constrained"}} -->
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-right:0;padding-bottom:var(--wp--preset--spacing--40);padding-left:0"><!-- wp:columns -->
<div class="wp-block-columns"><!-- wp:column {"width":"50%"} -->
<div class="wp-block-column" style="flex-basis:50%"><!-- wp:group -->
<div class="wp-block-group"><!-- wp:site-title {"level":0} /-->
<!-- wp:site-tagline {"style":{"spacing":{"margin":{"top":"0px"}},"typography":{"fontStyle":"normal","fontWeight":"200"}}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"width":"50%"} -->
<div class="wp-block-column" style="flex-basis:50%"><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button {"className":"is-style-outline"} -->
<div class="wp-block-button is-style-outline"><a class="wp-block-button__link wp-element-button" href="https://lasophielle.org/abolish-the-family-a-manifesto-for-care-and-liberation/"><strong>NEW BOOK</strong>&nbsp;Abolish the Family</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons --></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- wp:navigation {"ref":10,"overlayMenu":"never","hasIcon":false,"layout":{"type":"flex","orientation":"horizontal","justifyContent":"space-between"}} /-->
<!-- wp:separator {"className":"is-style-wide"} -->
<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide"/>
<!-- /wp:separator -->

31
readme.txt Normal file
View File

@ -0,0 +1,31 @@
=== lasophielle ===
Contributors: Autonomic Co-operative / 3wordchant
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 ==
A Full-Site Editing / Gutenberg Blocks theme for lasophielle.org
== Changelog ==
= 0.0.1 =
* Initial release
== Copyright ==
lasophielle WordPress Theme, (C) 2023 Autonomic Co-operative / 3wordchant
lasophielle 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.

16
style.css Normal file
View File

@ -0,0 +1,16 @@
/*
Theme Name: lasophielle
Theme URI: https://git.autonomic.zone/autonomic-cooperative/lasophielle-theme/
Author: Autonomic Co-operative / 3wordchant
Author URI: https://autonomic.zone
Description: A Full-Site Editing / Gutenberg Blocks theme for lasophielle.org
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: twentytwentythree
Text Domain: lasophielle
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
*/

15
templates/front-page.html Normal file
View File

@ -0,0 +1,15 @@
<!-- wp:columns -->
<div class="wp-block-columns"><!-- wp:column {"width":"66.66%","layout":{"type":"constrained"}} -->
<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:template-part {"slug":"header","tagName":"header","theme":"lasophielle"} /-->
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} -->
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30)"><!-- wp:post-content {"layout":{"type":"constrained"}} /--></main>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer","tagName":"footer","theme":"lasophielle"} /--></div>
<!-- /wp:column -->
<!-- wp:column {"width":"33.33%","layout":{"type":"constrained"}} -->
<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:post-featured-image {"width":"100%","scale":"contain"} /--></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->

17
templates/page.html Normal file
View File

@ -0,0 +1,17 @@
<!-- wp:columns -->
<div class="wp-block-columns"><!-- wp:column {"width":"66.66%","layout":{"type":"constrained"}} -->
<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:template-part {"slug":"header","tagName":"header","theme":"lasophielle"} /-->
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} -->
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30)"><!-- wp:post-title {"style":{"typography":{"textTransform":"uppercase"},"spacing":{"margin":{"bottom":"0px"}}},"fontSize":"large"} /-->
<!-- wp:post-content {"layout":{"type":"constrained"}} /--></main>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer","tagName":"footer","theme":"lasophielle"} /--></div>
<!-- /wp:column -->
<!-- wp:column {"width":"33.33%","layout":{"type":"constrained"}} -->
<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:post-featured-image {"width":"100%","scale":"contain"} /--></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->

112
theme.json Normal file
View File

@ -0,0 +1,112 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#ffffff",
"name": "Base",
"slug": "base"
},
{
"color": "#1f1f1f",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#eb2b2b",
"name": "Primary",
"slug": "primary"
},
{
"color": "#485fc7",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#4a4a4a",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"radius": "4px"
},
"spacing": {
"padding": {
"bottom": "0.5em",
"left": "1em",
"right": "1em",
"top": "0.5em"
}
}
},
"core/navigation": {
"typography": {
"textTransform": "uppercase"
}
},
"core/site-tagline": {
"typography": {
"fontStyle": "normal",
"fontWeight": "200"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var:preset|font-family|ibm-plex-serif",
"fontSize": "var:preset|font-size|x-large",
"fontStyle": "italic",
"fontWeight": "300"
}
}
},
"css": ".current-menu-item {\nfont-weight: bold;\n}",
"elements": {
"button": {
"color": {
"text": "var:preset|color|base"
}
},
"h1": {
"typography": {
"fontSize": "clamp(1.75rem, 1.75rem + ((1vw - 0.48rem) * 0.24), 1.875rem)",
"textTransform": "uppercase"
}
},
"h2": {
"typography": {
"fontSize": "clamp(1.75rem, 1.75rem + ((1vw - 0.48rem) * 0.24), 1.875rem)"
}
},
"h3": {
"typography": {
"fontSize": "clamp(1rem, 1rem + ((1vw - 0.48rem) * 0.24), 1.125rem)"
}
},
"heading": {
"typography": {
"fontStyle": "normal",
"fontWeight": "700"
}
}
},
"spacing": {
"padding": {
"bottom": "var(--wp--preset--spacing--40)",
"left": "var(--wp--preset--spacing--30)",
"right": "var(--wp--preset--spacing--30)",
"top": "0px"
}
},
"typography": {
"fontFamily": "var:preset|font-family|ibm-plex-sans"
}
},
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}