mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
a2df97240f
git-svn-id: http://svn.automattic.com/wordpress/trunk@8999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
24 lines
249 B
PHP
24 lines
249 B
PHP
<?php
|
|
/**
|
|
* @package WordPress
|
|
* @subpackage Default_Theme
|
|
*/
|
|
|
|
/*
|
|
Template Name: Links
|
|
*/
|
|
?>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
<div id="content" class="widecolumn">
|
|
|
|
<h2>Links:</h2>
|
|
<ul>
|
|
<?php wp_list_bookmarks(); ?>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|