Rename to curriculum. (#7223)
This commit is contained in:
parent
94095bdcda
commit
20f5931341
33 changed files with 59 additions and 59 deletions
Before Width: | Height: | Size: 267 KiB After Width: | Height: | Size: 267 KiB |
|
@ -1,60 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* Effigy functions and definitions
|
||||
* Curriculum functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package Effigy
|
||||
* @since Effigy 1.0
|
||||
* @package Curriculum
|
||||
* @since Curriculum 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'effigy_support' ) ) :
|
||||
if ( ! function_exists( 'curriculum_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* @since Effigy 1.0
|
||||
* @since Curriculum 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function effigy_support() {
|
||||
function curriculum_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'effigy' );
|
||||
load_theme_textdomain( 'curriculum' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_setup_theme', 'effigy_support' );
|
||||
add_action( 'after_setup_theme', 'curriculum_support' );
|
||||
|
||||
if ( ! function_exists( 'effigy_styles' ) ) :
|
||||
if ( ! function_exists( 'curriculum_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since Effigy 1.0
|
||||
* @since Curriculum 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function effigy_styles() {
|
||||
function curriculum_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'effigy-style',
|
||||
'curriculum-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'effigy-style' );
|
||||
wp_enqueue_style( 'curriculum-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'effigy_styles' );
|
||||
add_action( 'wp_enqueue_scripts', 'curriculum_styles' );
|
1
curriculum/parts/footer.html
Normal file
1
curriculum/parts/footer.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"curriculum/footer"} /-->
|
|
@ -1,19 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: home
|
||||
* Slug: effigy/bio
|
||||
* Slug: curriculum/bio
|
||||
* Categories: text
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:heading {"level":1} -->
|
||||
<h1 class="wp-block-heading"><?php echo esc_html__( 'A renowned English novelist, best known for my novel Frankenstein; or, The Modern Prometheus, which is considered an early example of science fiction.', 'effigy' ); ?></h1>
|
||||
<h1 class="wp-block-heading"><?php echo esc_html__( 'A renowned English novelist, best known for my novel Frankenstein; or, The Modern Prometheus, which is considered an early example of science fiction.', 'curriculum' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:heading {"level":1} -->
|
||||
<h1 class="wp-block-heading"><?php echo esc_html__( 'I also edited and promoted the works of my husband, Romantic poet and philosopher Percy Bysshe Shelley.', 'effigy' ); ?></h1>
|
||||
<h1 class="wp-block-heading"><?php echo esc_html__( 'I also edited and promoted the works of my husband, Romantic poet and philosopher Percy Bysshe Shelley.', 'curriculum' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:heading {"level":1} -->
|
||||
<h1 class="wp-block-heading"><?php echo esc_html__( 'My father was the political philosopher William Godwin, and my mother was the women\'s rights advocate Mary Wollstonecraft.', 'effigy' ); ?></h1>
|
||||
<h1 class="wp-block-heading"><?php echo esc_html__( 'My father was the political philosopher William Godwin, and my mother was the women\'s rights advocate Mary Wollstonecraft.', 'curriculum' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Comments
|
||||
* slug: effigy/comments
|
||||
* slug: curriculum/comments
|
||||
* inserter: no
|
||||
*/
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Default footer
|
||||
* Slug: effigy/footer
|
||||
* Slug: curriculum/footer
|
||||
* Categories: footer
|
||||
* Block Types: core/template-part/footer
|
||||
*/
|
||||
|
@ -19,9 +19,9 @@
|
|||
<p class="has-text-align-center">
|
||||
<?php
|
||||
/* Translators: WordPress link. */
|
||||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'effigy' ) ) . '" rel="nofollow">WordPress</a>';
|
||||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'curriculum' ) ) . '" rel="nofollow">WordPress</a>';
|
||||
echo sprintf(
|
||||
esc_html__( 'Designed with %1$s', 'effigy' ),
|
||||
esc_html__( 'Designed with %1$s', 'curriculum' ),
|
||||
$wordpress_link
|
||||
);
|
||||
?>
|
|
@ -1,16 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Default footer
|
||||
* Slug: effigy/hidden-404
|
||||
* Slug: curriculum/hidden-404
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:heading {"textAlign":"left","level":1,"fontSize":"x-large","anchor":"oops-that-page-can-t-be-found"} -->
|
||||
<h1 class="wp-block-heading has-text-align-left has-x-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'effigy' ); ?></h1>
|
||||
<h1 class="wp-block-heading has-text-align-left has-x-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'curriculum' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'effigy' ); ?></p>
|
||||
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'curriculum' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: page-home-alt
|
||||
* Slug: effigy/page-home-alt
|
||||
* Slug: curriculum/page-home-alt
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
|
@ -9,18 +9,18 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"2rem","left":"2rem"}}},"backgroundColor":"primary","textColor":"background"} -->
|
||||
<div class="wp-block-columns has-background-color has-primary-background-color has-text-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"width":"65%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:65%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|70","left":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)"><!-- wp:pattern {"slug":"effigy/header"} /-->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)"><!-- wp:pattern {"slug":"curriculum/header"} /-->
|
||||
|
||||
<!-- wp:heading {"level":1,"style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
|
||||
<h1 class="wp-block-heading has-background-color has-text-color has-link-color"><?php echo esc_html__( 'A renowned English novelist, best known for my novel Frankenstein; or, The Modern Prometheus, which is considered an early example of science fiction.', 'effigy' ); ?></h1>
|
||||
<h1 class="wp-block-heading has-background-color has-text-color has-link-color"><?php echo esc_html__( 'A renowned English novelist, best known for my novel Frankenstein; or, The Modern Prometheus, which is considered an early example of science fiction.', 'curriculum' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:heading {"level":1,"style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
|
||||
<h1 class="wp-block-heading has-background-color has-text-color has-link-color"><?php echo esc_html__( 'I also edited and promoted the works of my husband, Romantic poet and philosopher Percy Bysshe Shelley.', 'effigy' ); ?></h1>
|
||||
<h1 class="wp-block-heading has-background-color has-text-color has-link-color"><?php echo esc_html__( 'I also edited and promoted the works of my husband, Romantic poet and philosopher Percy Bysshe Shelley.', 'curriculum' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:heading {"level":1,"style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
|
||||
<h1 class="wp-block-heading has-background-color has-text-color has-link-color"><?php echo esc_html__( 'My father was the political philosopher William Godwin, and my mother was the women\'s rights advocate Mary Wollstonecraft.', 'effigy' ); ?></h1>
|
||||
<h1 class="wp-block-heading has-background-color has-text-color has-link-color"><?php echo esc_html__( 'My father was the political philosopher William Godwin, and my mother was the women\'s rights advocate Mary Wollstonecraft.', 'curriculum' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:group {"style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background","layout":{"type":"constrained"}} -->
|
||||
|
@ -29,7 +29,7 @@
|
|||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:heading -->
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Experience', 'effigy' ); ?></h2>
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Experience', 'curriculum' ); ?></h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:query {"queryId":12,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[3]}},"displayLayout":{"type":"list"}} -->
|
||||
|
@ -53,7 +53,7 @@
|
|||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:heading -->
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Education', 'effigy' ); ?></h2>
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Education', 'curriculum' ); ?></h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:query {"queryId":12,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[4]}},"displayLayout":{"type":"list"}} -->
|
||||
|
@ -77,7 +77,7 @@
|
|||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:heading -->
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Skills', 'effigy' ); ?></h2>
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Skills', 'curriculum' ); ?></h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:query {"queryId":12,"query":{"perPage":"4","pages":0,"offset":0,"postType":"post","order":"asc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[5]}},"displayLayout":{"type":"list"}} -->
|
||||
|
@ -101,7 +101,7 @@
|
|||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:heading -->
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Interests', 'effigy' ); ?></h2>
|
||||
<h2 class="wp-block-heading"><?php echo esc_html__( 'Interests', 'curriculum' ); ?></h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:query {"queryId":12,"query":{"perPage":"4","pages":0,"offset":0,"postType":"post","order":"asc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[6]}},"displayLayout":{"type":"list"}} -->
|
||||
|
@ -119,13 +119,13 @@
|
|||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:pattern {"slug":"effigy/footer"} /--></div>
|
||||
<!-- wp:pattern {"slug":"curriculum/footer"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%">
|
||||
<!-- wp:pattern {"slug":"effigy/self"} /-->
|
||||
<!-- wp:pattern {"slug":"curriculum/self"} /-->
|
||||
</div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: 404
|
||||
* Slug: effigy/self
|
||||
* Slug: curriculum/self
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
|
@ -1,4 +1,4 @@
|
|||
=== Effigy ===
|
||||
=== Curriculum ===
|
||||
Contributors: the WordPress team
|
||||
Requires at least: 5.8
|
||||
Tested up to: 6.2
|
||||
|
@ -8,7 +8,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|||
|
||||
== Description ==
|
||||
|
||||
Effigy is a blog theme that echoes the structure of a professional profile with original visuals and interesting navigation. It's suitable for the general public displaying information, experiences, and education. And it's super easy to be customized.
|
||||
Curriculum is a blog theme that echoes the structure of a professional profile with original visuals and interesting navigation. It's suitable for the general public displaying information, experiences, and education. And it's super easy to be customized.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
|
@ -20,9 +20,9 @@ Effigy is a blog theme that echoes the structure of a professional profile with
|
|||
|
||||
== Copyright ==
|
||||
|
||||
Effigy WordPress Theme, (C) 2023 the WordPress team
|
||||
Effigy is distributed under the terms of the GNU GPL.
|
||||
Effigy is based on Effigy (https://github.com/wordpress/effigy/), (C) the WordPress team, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
|
||||
Curriculum WordPress Theme, (C) 2023 the WordPress team
|
||||
Curriculum is distributed under the terms of the GNU GPL.
|
||||
Curriculum is based on Curriculum (https://github.com/wordpress/curriculum/), (C) the WordPress team, [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
|
Before Width: | Height: | Size: 649 KiB After Width: | Height: | Size: 649 KiB |
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
Theme Name: Effigy
|
||||
Theme URI: https://github.com/wordpress/effigy/
|
||||
Theme Name: Curriculum
|
||||
Theme URI: https://github.com/wordpress/curriculum/
|
||||
Author: the WordPress team
|
||||
Author URI: https://wordpress.org/themes/effigy
|
||||
Description: Effigy is a blog theme that echoes the structure of a professional profile with original visuals and interesting navigation. It\\\'s suitable for the general public displaying information, experiences, and education. And it\\\'s super easy to be customized.
|
||||
Author URI: https://wordpress.org/themes/curriculum
|
||||
Description: Curriculum is a blog theme that echoes the structure of a professional profile with original visuals and interesting navigation. It\\\'s suitable for the general public displaying information, experiences, and education. And it\\\'s super easy to be customized.
|
||||
Requires at least: 5.8
|
||||
Tested up to: 6.2
|
||||
Requires PHP: 5.7
|
||||
|
@ -11,7 +11,7 @@ Version: 1.0.1
|
|||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Template:
|
||||
Text Domain: effigy
|
||||
Text Domain: curriculum
|
||||
Tags: blog, education, two-columns, wide-blocks, block-patterns, custom-colors, custom-logo, custom-menu, editor-style, featured-image-header, featured-images, full-site-editing, full-width-template, rtl-language-support, style-variations, theme-options, threaded-comments, translation-ready, profile,professional-profile,linkedin-page,personal-profile,education,experiences,biography,biography-site
|
||||
*//*
|
||||
* Control the hover stylings of outline block style.
|
|
@ -3,7 +3,7 @@
|
|||
<div class="wp-block-column" style="flex-basis:65%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|70","left":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:pattern {"slug":"effigy/hidden-404"} /-->
|
||||
<!-- wp:pattern {"slug":"curriculum/hidden-404"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:spacer {"height":"2rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
|
||||
|
@ -18,6 +18,6 @@
|
|||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"effigy/self"} /--></div>
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"curriculum/self"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
|
@ -36,6 +36,6 @@
|
|||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"effigy/self"} /--></div>
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"curriculum/self"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
|
@ -3,7 +3,7 @@
|
|||
<div class="wp-block-column" style="flex-basis:65%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|70","left":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:pattern {"slug":"effigy/bio"} /-->
|
||||
<!-- wp:pattern {"slug":"curriculum/bio"} /-->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:spacer {"height":"4rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
|
||||
|
@ -106,6 +106,6 @@
|
|||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"effigy/self"} /--></div>
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"curriculum/self"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
|
@ -38,6 +38,6 @@
|
|||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"effigy/self"} /--></div>
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"curriculum/self"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
1
curriculum/templates/page-home-alt.html
Normal file
1
curriculum/templates/page-home-alt.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"curriculum/page-home-alt"} /-->
|
|
@ -66,6 +66,6 @@
|
|||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"effigy/self"} /--></div>
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"curriculum/self"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
|
@ -43,7 +43,7 @@
|
|||
<!-- wp:query-no-results -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5rem"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px">
|
||||
<!-- wp:pattern {"slug":"effigy/hidden-404"} /-->
|
||||
<!-- wp:pattern {"slug":"curriculum/hidden-404"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:query-no-results --></main>
|
||||
|
@ -54,6 +54,6 @@
|
|||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"effigy/self"} /--></div>
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%"><!-- wp:pattern {"slug":"curriculum/self"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;flex-basis:35%">
|
||||
<!-- wp:pattern {"slug":"effigy/self"} /-->
|
||||
<!-- wp:pattern {"slug":"curriculum/self"} /-->
|
||||
</div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
|
@ -1 +0,0 @@
|
|||
<!-- wp:pattern {"slug":"effigy/footer"} /-->
|
|
@ -1 +0,0 @@
|
|||
<!-- wp:pattern {"slug":"effigy/page-home-alt"} /-->
|
Loading…
Reference in a new issue