
* Calyx: Initial commit. * Calyx: Add image assets. * Calyx: Update homepage pattern to use included image assets. * Calyx: Remove unused code. * Calyx: Update header spacing. * Calyx: Removing a bunch of templates, as this is meant to be a simple single-page, single-purpose theme. * Calyx: Add readme.txt file. * Calyx: Update index template to display full post/page content.
16 lines
506 B
PHP
16 lines
506 B
PHP
<?php
|
|
/**
|
|
* Title: A 404 page
|
|
* Slug: calyx/404
|
|
* Inserter: no
|
|
*/
|
|
|
|
?>
|
|
|
|
<!-- wp:heading {"textAlign":"center","level":1,"fontSize":"medium"} -->
|
|
<h1 class="has-text-align-center has-medium-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'calyx' ); ?></h1>
|
|
<!-- /wp:heading -->
|
|
|
|
<!-- wp:paragraph -->
|
|
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'calyx' ); ?></p>
|
|
<!-- /wp:paragraph -->
|