This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
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?
uc-guides/page-guidesearch.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
28 lines (24 sloc)
572 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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(); ?> |