~sinzui/+junk/essence-wp

« back to all changes in this revision

Viewing changes to themes/samsara/links.php

  • Committer: Curtis Hovey
  • Date: 2013-02-10 18:59:15 UTC
  • Revision ID: sinzui.is@verizon.net-20130210185915-1rw2uckbmtxw2k5w
RemovedĀ oldĀ theme.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/*
3
 
Template Name: Links
4
 
*/
5
 
?>
6
 
<?php require_once get_template_directory()."/samsara_functions.php"; ?>
7
 
<!DOCTYPE html PUBLIC
8
 
    "-//W3C//DTD XHTML 1.0 Transitional//EN"
9
 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
10
 
<html xmlns="http://www.w3.org/1999/xhtml">
11
 
    <head profile="http://gmpg.org/xfn/11">
12
 
        <meta http-equiv="Content-Type"
13
 
        content="text/html; charset=<?php bloginfo('charset'); ?>" />
14
 
        <title><?php bloginfo('name'); ?> - Links</title>
15
 
        <style type="text/css" media="screen">
16
 
            @import url( <?php bloginfo('stylesheet_url'); ?> );
17
 
            <?php get_custom_css() ?>
18
 
        </style>
19
 
        <link rel="alternate" type="application/rss+xml"
20
 
        title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
21
 
        <link rel="alternate" type="application/atom+xml"
22
 
        title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
23
 
        <link rel="shortcut icon" href="/favicon/bullet.ico" />
24
 
        <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
25
 
        <?php wp_head(); ?>
26
 
    </head>
27
 
 
28
 
    <body>
29
 
        <?php get_header() ?>
30
 
 
31
 
        <div id="body">
32
 
            <div id="sidebar">
33
 
                <?php get_sidebar(); ?>
34
 
            </div>
35
 
 
36
 
            <div class="content">
37
 
                <h2>All links</h2>
38
 
 
39
 
                <ul>
40
 
                    <?php get_links_list(); ?>
41
 
                </ul>
42
 
            </div>
43
 
 
44
 
            <?php get_footer(); ?>
45
 
        </div>
46
 
    </body>
47
 
</html>