thrashr888 (owner)

Revisions

gist: 233348 Download_button fork
public
Public Clone URL: git://gist.github.com/233348.git
Embed All Files: show embed
snippet.html #
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title>Wishcraft Admin Interface</title>
    <link rel="shortcut icon" href="/favicon.ico" />
    <?php use_stylesheet('admin.css') ?>
    <?php include_javascripts() ?>
    <?php include_stylesheets() ?>
  </head>
  <body>
    <div id="container">
      <div id="header">
        <h1>
          <a href="<?php echo url_for('@homepage') ?>">&nbsp;</a>
        </h1>
      </div>
 
      <div id="menu">
        <div style="float:right;"><a href="/">Wishcraft Home &raquo;</a></div>
        <ul>
          <li>
            <?php echo link_to('Admin Home', '@homepage') ?>
          </li>
          <li>|</li>
          <li>
            <?php echo link_to('Accounts', '@account') ?>
          </li>
          <li>
            <?php echo link_to('User Logins', '@sf_guard_user') ?>
          </li>
          <li>
            <?php echo link_to('Lyra Content', '@lyra_content') ?>
          </li>
          <li>
            <?php echo link_to('Lyra Versions', '@lyra_version') ?>
          </li>
        </ul>
      </div>
 
      <div id="content">
        <?php echo $sf_content ?>
      </div>
 
      <div id="footer">
        Wishcraft Admin
        powered by <a href="http://www.symfony-project.org/">symfony framework</a>
      </div>
    </div>
  </body>
</html>