-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebar.php
67 lines (51 loc) · 1.77 KB
/
sidebar.php
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
<?php
/** sidebar.php
*
* @author Konstantin Obenland
* @package The Bootstrap
* @since 1.0.0 - 05.02.2012
*/
tha_sidebars_before(); ?>
<div class="span3" id="column">
<section id="secondary" class="widget-area" role="complementary">
<div id="join-donate" style="padding-bottom: 0px;" class="hidden-phone hidden-tablet">
<a href="<?php echo join_page_uri() ?>" class="button button-orange sidebar-action-item">
<i class="is2-group"></i>
Join us
</a>
<a href="<?php echo donate_page_uri() ?>" class="button button-red sidebar-action-item pig">
<i class="is2-donate"></i>
Donate
</a>
</div>
<aside class="we-are hidden-phone">
<span>We are</span> a movement based around the core tenets of:
<ul>
<li>freedom of information and culture</li>
<li>civil and digital liberties</li>
<li>privacy and anonymity</li>
<li>government transparency</li>
<li>participatory democracy</li>
</ul>
</aside>
<aside>
<header>Pirate Party Webcasts</header>
<p>
Our weekly show talking pirate politics from the Australian perspective. Hosted by Sam Kearns.
<a href="<?php echo get_category_link(get_category_by_slug('webcasts')->term_id) ?>">Previous episodes and downloads.</a>
</p>
<?php /*
<div id="next-broadcast">
<p class="centre next"><strong>Next broadcast</strong></p>
<p class="centre time">Sunday 9pm AEDT</p>
</div>
*/ ?>
</aside>
<?php tha_sidebar_top();
dynamic_sidebar( 'main' );
tha_sidebar_bottom(); ?>
</section><!-- #secondary .widget-area -->
</div>
<?php tha_sidebars_after();
/* End of file sidebar.php */
/* Location: ./wp-content/themes/the-bootstrap/sidebar.php */