~gbancroft-canonical/juju-website/homepage-realignment

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
<?php
/*
Template Name: Resources child
*/
$template_id = 'child-resources';
?>

<?php get_header(); ?>

	<div class="grid-12">
		<div class="grid-3">
			<?php get_template_part('part', 'accordion-resources'); ?>
		</div>
		<div class="grid-9">
	 		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
				<article>
					<h1><?php wp_title(''); ?></h1>
					<?php the_content(); ?>
				</article>
			<?php endwhile; endif; ?>
                        <div class="pagelink"><?php wp_link_pages('before=<p><strong>Pages:</strong>'); ?></div>
			<div class="box-orange clearfix">
				<h3>We need your help!</h3>
				<a class="link-action-small" href="/community/submit-a-tutorial/">
					<span class="cta-left"></span>
					<span class="cta-center">Submit a tutorial</span>
					<span class="cta-right"></span>
				</a>
				<p>With your help, we can make this site grow to meet each developer's needs. Contribute by sharing your programming knowledge!</p>
			</div>
		</div>
	</div>

<?php get_footer(); ?>