some page templates

This commit is contained in:
2018-08-10 18:48:11 -05:00
parent be874660e3
commit 6bac3c395b
11 changed files with 178 additions and 28 deletions

20
category.php Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<?php get_header(); ?>
<body>
<a class="skip-nav sr-only" href="#main-content">Skip to main</a>
<?php get_template_part('global-head'); ?>
<main id="main-content" class="container" role="main">
<h1><?php single_cat_title(); ?></h1>
<div class="grid col-100">
<?php get_template_part('loop'); ?>
</div>
<?php get_template_part('pagination'); ?>
</main>
<?php // get_sidebar(); ?>
<?php get_footer(); ?>
</body>
</html>