[Swift-commit] r4916 - in wwwdev: . template_info
vytas at ci.uchicago.edu
vytas at ci.uchicago.edu
Mon Aug 1 09:34:42 CDT 2011
Author: vytas
Date: 2011-08-01 09:34:40 -0500 (Mon, 01 Aug 2011)
New Revision: 4916
Added:
wwwdev/template_info/
wwwdev/template_info/template.php
Log:
new look & feel
Added: wwwdev/template_info/template.php
===================================================================
--- wwwdev/template_info/template.php (rev 0)
+++ wwwdev/template_info/template.php 2011-08-01 14:34:40 UTC (rev 4916)
@@ -0,0 +1,57 @@
+<!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">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+ <title>Swift</title>
+ <link href="../css/style2.css" rel="stylesheet" type="text/css" />
+ </head>
+ <!-- Change body id name to title of new content. There is an body id style in the css where you can add the new name -->
+ <body id="Name_of_page">
+ <!-- entire page container -->
+ <div id="container">
+ <!-- header -->
+ <div id="header">
+ <?php require('../inc/header.php') ?>
+ </div>
+ <!-- end header -->
+ <!-- nav -->
+ <div id="nav">
+ <?php require('../inc/nav.php') ?>
+ </div>
+ <!-- end nav -->
+ <!-- content container -->
+ <div id="content">
+ <!-- left side content -->
+ <div id="left">
+
+<h1>PAGENAME</h1>
+<h2>H2</h2>
+<h3>H3</h3>
+<p>
+ content goes here
+</p>
+<ul>
+ list:
+ <li>bullet point</li>
+</ul>
+<p>
+ <span class="highlight"> something stands out</span>
+</p>
+
+ </div>
+ <!-- end left side content -->
+ <!-- right side content -->
+ <div id="right">
+ <?php require('../inc/side_content.php') ?>
+ </div>
+ <!-- end right side content -->
+ </div>
+ <!-- end content container-->
+ <!-- footer -->
+ <div id="footer"><?php require('../inc/footer.php') ?></div>
+ <!-- end footer -->
+
+ </div>
+ <!-- end entire page container -->
+ </body>
+</html>
More information about the Swift-commit
mailing list