~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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/*
Template Name: Community
*/
$template_id = 'community';
?>

<?php get_header(); ?>

<div class="row no-border">
	<div class="inner-wrapper">
		<div class="box clearfix">
			<h2>Contribute</h2>
			<ul>
				<li>
					<a href="/docs/write-charm.html">
						<img src="<?php echo get_template_directory_uri(); ?>/img/pictogram-cog.png" width="47" height="49" alt="" />
						<h4>Write a charm &rsaquo;</h4>
					</a>
					<p>The best way to contribute to Juju is by writing Charms!</p>
				</li>
				<li>
					<a href="/docs">
						<img src="<?php echo get_template_directory_uri(); ?>/img/pictogram-bird.png" width="61" height="49" alt="" />
						<h4>Help with documentation &rsaquo;</h4>
					</a>
					<p>Help others get started using Juju and writing Charms.</p>
				</li>
				<li class="last">
					<a href="/community/charmers">
						<img src="<?php echo get_template_directory_uri(); ?>/img/pictogram-star.png" width="49" height="49" alt="" />
						<h4>Become a Juju Charmer &rsaquo;</h4>
					</a>
					<p>Mentor new charm authors, review incoming charms, and maintain the charm store.</p>
				</li>
			</ul>
		</div>
		<div class="grid-4 alpha">
			<div class="box-orange">
				<h3><a href="http://www.askubuntu.com">Participate on Ask Ubuntu &rsaquo;</a></h3>
				<p>A collaboratively-edited question and answer site for Juju users and developers.</p>
				<p><a href="http://www.askubuntu.com/questions/ask?tags=juju">Ask a question now &rsaquo;</a></p>
				<p>And check out our list of <a href="http://askubuntu.com/questions/tagged/juju?sort=faq&pagesize=50">Frequently Asked Questions</a>.</p>
			</div>
		</div>
		<div class="grid-8 omega">
			<div class="box-padded">
				<h3>Other ways to get involved</h3>
				<div>
					<ul class="clearfix">
						<li class="no-border"><a href="http://webchat.freenode.net/?channels=juju"  class="irc">IRC channel (web version available)&nbsp;&rsaquo;</a></li>
						<li><a href="https://lists.ubuntu.com/mailman/listinfo/juju"  class="mail">Join the Juju mailing list&nbsp;&rsaquo;</a></li>
						<li class="last"><a href="/?&amp;feed=rss2"class="rss">Subscribe to the Juju Blog&nbsp;&rsaquo;</a></li>
					</ul>
				</div>
			</div>
		</div>	
	</div><!-- /.inner-wrapper -->
</div><!-- /.row -->
	
<hr />
<div id="contextual-footer" class="row no-border no-padding-bottom">
	<div class="inner-wrapper vertical-divider">
		<div class="grid-4 alpha">
			<h2>Explore further</h2>
			<ul class="list">
				<li><a href="<?php echo site_url(); ?>/charm-store">Visit the Charm Store &rsaquo;</a></li>
				<li><a href="<?php echo site_url(); ?>/docs/write-charm.html">Write your own Charms &rsaquo;</a></li>
				<li><a href="<?php echo site_url(); ?>/docs/">Juju documentation &rsaquo;</a></li>
			</ul>
		</div>
		<div class="grid-4">
			<div class="container-tweet">
				<div class="tweet clearfix"></div>
				<a class="tweet-follow" href="http://twitter.com/ubuntucloud">Follow <span>@ubuntucloud</span> on Twitter</a>
			</div>
		</div>
		<div class="grid-4 omega">
			<h2>Further reading from the Juju blog</h2>
				<ul>
					<?php get_template_part('part', 'blog-latest-articles'); ?>
				</ul>
				<h2>Events</h2>
				<?php get_template_part('part', 'blog-latest-events'); ?>
		</div>
	</div><!-- /.inner-wrapper -->
</div><!-- /.row -->

<?php get_footer(); ?>