forked from owncloud-archive/owncloud.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.php
More file actions
41 lines (33 loc) · 964 Bytes
/
support.php
File metadata and controls
41 lines (33 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/*
Template Name: Support Centre
*/
?>
<?php get_header(); ?>
<div class="page-header"><h1><a href="<?php echo home_url( '/' ); ?>/support/">Support Centre</a></h1>
<form role="search" method="get" class="headersearch" id="searchform" action="<?php echo home_url( '/' ); ?>">
<input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
<input type="submit" id="searchsubmit" class="btn" value="Search" />
</form>
</div>
<div class="row">
<div class="span3">
<div class="sidebar">
<div class="well">
<?php
wp_nav_menu(array('theme_location' => 'support-nav'));
?>
</div>
</div>
</div>
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class="span9">
<h1><?php the_title();?></h1>
<hr class="pagetitle">
<div class="page-content">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_footer(); ?>