~canonical-website-editors/ubuntu-brand-guidelines/trunk

1 by Steve Edwards
First release version
1
<?php
2
/*
3
Template Name: Web intro
4
*/
5
$template_body_id = 'web-intro';
6
$template_body_class = 'guidelines';
7
?>
8
9
<?php get_header(); ?>
11 by Anthony Dillon
Applying the guidelines to the theme
10
<div class="row no-border">
11
	<div class="two-col">
1 by Steve Edwards
First release version
12
		<div id="accordion">
13
			<h3><a href="#">Web</a></h3>
14
			<div>
11 by Anthony Dillon
Applying the guidelines to the theme
15
				<ul class="list">
1 by Steve Edwards
First release version
16
					<?php wp_list_pages('sort_column=menu_order&title_li=&depth=0&child_of=148'); ?>
17
				</ul>
18
			</div>
19
		</div>
20
	</div>
21
11 by Anthony Dillon
Applying the guidelines to the theme
22
	<div id="loop-guidelines" class="ten-col last-col">
1 by Steve Edwards
First release version
23
		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
24
			<h1><?php the_title(); ?></h1>
25
			<?php the_content(); ?>
26
		<?php endwhile; endif; ?>
27
	</div>
11 by Anthony Dillon
Applying the guidelines to the theme
28
</div>
1 by Steve Edwards
First release version
29
<?php get_footer(); ?>