mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
0b975fb9a0
git-svn-id: http://svn.automattic.com/wordpress/trunk@2040 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
187 B
PHP
19 lines
187 B
PHP
<?php
|
|
/*
|
|
Template Name: Links
|
|
*/
|
|
?>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
<div id="content" class="widecolumn">
|
|
|
|
<h2>Links:</h2>
|
|
<ul>
|
|
<?php get_links_list(); ?>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|