Changeset 166 for trunk/templates


Ignore:
Timestamp:
11/11/11 17:22:56 (13 years ago)
Author:
Kris Deugau
Message:

/trunk

Preparing for release

  • wrap debugbits output to avoid an XHTML validation warning
  • Makefile cleanup
    • remove mysterious duplication of the whole file
    • remove file list bits levt over from copy-paste from another project
    • set VERSION
    • fix up some pathnames from copy-paste
  • Fix a bunch of minor XHTML validation oopses
  • Fiddle footer again
  • Minor CSS cleanups
  • Drop in-page title heading, push [if IE] conditionals around in <head>
Location:
trunk/templates
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/templates/bulkdomain.tmpl

    r112 r166  
    4040<table>
    4141<tr>
    42 <TMPL_LOOP NAME=domtable><td><input type="checkbox" name="dom_<TMPL_VAR NAME=domid>" value="<TMPL_VAR NAME=domid>"> <TMPL_VAR NAME=domain></td>
     42<TMPL_LOOP NAME=domtable><td><input type="checkbox" name="dom_<TMPL_VAR NAME=domid>" value="<TMPL_VAR NAME=domid>" /> <TMPL_VAR NAME=domain></td>
    4343<TMPL_IF newrow></tr>
    4444<tr>
     
    4747</table>
    4848                </td>
     49        </tr>
     50        <tr class="darkrowheader"><td colspan="2" align="center"><input type="submit" value="Make changes" /></td></tr>
     51    </table>
    4952</td>
    50 </tr>
    51 <tr class="darkrowheader"><td colspan="2" align="center"><input type="submit" value="Make changes" /></td></tr>
    52     </table>
    53     </td>
    5453</tr>
    5554</table>
  • trunk/templates/dns.css

    r163 r166  
    106106        white-space: nowrap;
    107107        border: thin solid #000000;
    108         background-color: #ffccee;
     108        background-color: #f0f0f0;
    109109        vertical-align: top;
    110110}
     
    203203
    204204
    205 #header {
    206         border-bottom: thin solid #000000;
    207         clear: both;
    208         float: left;
    209         width: 100%;
    210 }
    211205#footer {
    212206        border-top: thin solid #000000;
    213207        clear: both;
     208        margin-top: 20px;
    214209}
    215210#contact {
     
    224219        float: right;
    225220        width: 100%;
     221        margin:bottom: 50px;
    226222}
    227223#login {
    228         margin: 50px auto;
     224        margin: 17% auto;
    229225        padding: 3px;
    230226        border: thin solid #000000;
  • trunk/templates/footer.tmpl

    r136 r166  
    33
    44<div id="footer">
    5 <div id="contact">contact: <a href="mailto:kdeugau@deepnet.cx">Kris Deugau</a> (c) 2008-2011 - <a href="http://www.deepnet.cx">deepnet</a><br />
     5<div id="contact">
     6<a href="https://secure.deepnet.cx/trac/dnsadmin">dnsadmin</a>
     7&copy; 2008-2011 <a href="mailto:kdeugau@deepnet.cx">Kris Deugau</a>/<a href="http://www.deepnet.cx">deepnet</a><br />
    68Written for standards-based browsers (eg <a href="http://www.firefox.com">FireFox</a>/<a href="http://www.mozilla.org">Mozilla</a>)
    79</div>
  • trunk/templates/header.tmpl

    r99 r166  
    33    <head>
    44        <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
    5         <title>tinyDNS Administration</title>
     5        <title><TMPL_IF compname><TMPL_VAR NAME=compname> - </TMPL_IF>DNS Administration</title>
    66        <!-- General stylesheet for most content, all browsers -->
    77        <link rel="stylesheet" type="text/css" href="templates/dns.css" />
     
    1313        -->
    1414        <!-- Load a secondary stylesheet for the group tree for IE ... -->
    15         <![if IE]>
     15        <!-- [if IE] -->
    1616        <link rel="stylesheet" type="text/css" href="templates/grouptree-ie.css" />
    17         <![endif]>
     17        <!-- [endif] -->
    1818
    1919        <!-- ... and now override the IE glop with the nifty CSS-only collapsing tree -->
    20         <![if !IE]>
     20        <!-- [if !IE] -->
    2121        <link rel="stylesheet" type="text/css" href="templates/grouptree.css" />
    22         <![endif]>
     22        <!-- [endif] -->
    2323    </head>
    2424<body>
    25 <div id="header">
    26 <p>fobie bar bletch</p>
    27 </div>
    2825<div id="main">
Note: See TracChangeset for help on using the changeset viewer.