forked from philips/lpcwp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
62 lines (50 loc) · 2.53 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
<div id="primary" class="sidebar">
<ul class="xoxo">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : // begin primary sidebar widgets ?>
<?php endif; // end primary sidebar widgets ?>
<li id="attend-links">
<h3><?php _e( 'Participate', 'sandbox' ) ?></h3>
<ul>
<li class="page_item page-item-1"><a href="http://www.regonline.com/Register/Checkin.aspx?EventID=959018">Register to attend</a></li>
<li class="page_item page-item-2"><a href="/2011/ocw/events/LPC2011/proposals" title="Proposal list">Submit a Presentation</a></li>
<li class="page_item page-item-2"><a href="/2011/ocw/events/LPC2011BOFS/proposals" title="Proposal List">Submit a BoF</a></li>
<li class="page_item page-item-2"><a href="/2011/ocw/events/LPC2011MC/proposals" title="Proposal List">Submit a MicroConference</a></li>
</ul>
</li>
<li id="social-links">
<h3><?php _e( 'Stay Connected', 'sandbox' ) ?></h3>
<ul>
<li><a href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" rel="alternate" type="application/rss+xml"><?php _e( 'Blog Feed', 'sandbox' ) ?></a></li>
<li><a href="https://twitter.com/linuxplumbers">Twitter</a></li>
<li><a href="https://identi.ca/linuxplumbers">identi.ca</a></li>
<li><a href="http://lists.osuosl.org/mailman/listinfo/lpc-announce">Announce list</a></li>
<li><a href="http://planet.linuxplumbersconf.org/">Planet LPC</a></li>
</ul>
</li>
<?php include "sidebar.html"; ?>
</ul>
</div><!-- #primary .sidebar -->
<div id="secondary" class="sidebar">
<ul class="xoxo">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : // begin secondary sidebar widgets ?>
<li id="search">
<h3><label for="s"><?php _e( 'Search', 'sandbox' ) ?></label></h3>
<form id="searchform" class="blog-search" method="get" action="<?php bloginfo('home') ?>">
<div>
<input id="s" name="s" type="text" class="text" value="<?php the_search_query() ?>" size="10" tabindex="1" />
<input type="submit" class="button" value="<?php _e( 'Find', 'sandbox' ) ?>" tabindex="2" />
</div>
</form>
</li>
<?php wp_list_bookmarks('title_before=<h3>&title_after=</h3>&show_images=1') ?>
<li id="meta">
<h3><?php _e( 'Meta', 'sandbox' ) ?></h3>
<ul>
<?php wp_register() ?>
<li><?php wp_loginout() ?></li>
<?php wp_meta() ?>
</ul>
</li>
<?php endif; // end secondary sidebar widgets ?>
</ul>
</div><!-- #secondary .sidebar -->