Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?php
/*
Template Name: Guide Search Page
* Displays all "Pages" in the site, in alphabetical order, seperated by letter.
*/
get_header(); ?>
<div id="page-az">
<div class="row">
<div id="primary" class="content-area subpage">
<main id="main" class="site-main" role="main">
<h1>Hello</h1>
<form>
<input type="text">
<input type="button" value="search">
</form>
<?php bloginfo('description');?>
<hr/><hr/><hr/>
<h1><?php the_title(); ?></h1>
<?php the_content();?>
</main>
</div>
</div>
</div>
<?php get_footer(); ?>