Skip to content
This repository has been archived by the owner on Dec 2, 2020. It is now read-only.

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Lyschik authored and Jessica Lyschik committed Sep 14, 2020
1 parent 44567fb commit 956a317
Show file tree
Hide file tree
Showing 178 changed files with 32,474 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules/
27 changes: 27 additions & 0 deletions 404.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package WordPress
* @subpackage Twenty_Twenty_One
* @since 1.0.0
*/

get_header();
?>

<div class="error-404 not-found default-max-width">
<header class="page-header">
<h1 class="page-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'twentytwentyone' ); ?></h1>
</header><!-- .page-header -->

<div class="page-content">
<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentytwentyone' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .page-content -->
</div><!-- .error-404 -->

<?php
get_footer();
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions archive.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package WordPress
* @subpackage Twenty_Twenty_One
* @since 1.0.0
*/

get_header();

if ( have_posts() ) {
?>

<header class="page-header blog-max-width">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
?>
</header><!-- .page-header -->

<?php
// Start the Loop.
while ( have_posts() ) :
the_post();

/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content/content-excerpt' );
// End the loop.
endwhile;

// Previous/next page navigation.
twenty_twenty_one_the_posts_navigation();

// If no content, include the "No posts found" template.
} else {
get_template_part( 'template-parts/content/content-none' );

}

get_footer();
5 changes: 5 additions & 0 deletions assets/css/custom-color-overrides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* Custom Color Overrides
*
* This file is automatically populated if the user chooses custom colors in the Customzier.
*/
Loading

0 comments on commit 956a317

Please sign in to comment.