16 lines
208 B
PHP
16 lines
208 B
PHP
|
<?php /*
|
||
|
Template Name: Links
|
||
|
*/
|
||
|
?>
|
||
|
<?php include "header.php"; ?>
|
||
|
|
||
|
<div id="content" class="widecolumn">
|
||
|
|
||
|
<h2>Links:</h2>
|
||
|
<ul>
|
||
|
<?php get_links_list(); ?>
|
||
|
</ul>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<?php include "footer.php"; ?>
|