public
Description: Wordpress template based on the default template but modified for use as a starting point for theme designers.
Homepage: http://www.poweredbygeek.com/
Clone URL: git://github.com/lwallenstein/designers-default.git
designers-default / links.php
100755 30 lines (18 sloc) 0.339 kb
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
<?php
/*
Template Name: Links
*/
?>
 
 
<!-- links.php start -->
 
<?php get_header(); ?>
 
<div id="main_wrapper">
<div id="content" class="widecolumn">
 
<h2>Links:</h2>
<ul>
<?php wp_list_bookmarks(); ?>
</ul>
 
</div>
<div class="clear"></div>
</div>
 
<?php get_footer(); ?>
 
<!-- links.php end -->