summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-07-07 13:26:36 -0400
committerLuke Macken <lmacken@redhat.com>2008-07-07 13:26:36 -0400
commit7356e54f1332b6a0cdf06cd18f3df338311fb61a (patch)
tree39688d6d6cc25cedf4b3c1019bd343e7d5911849
parent094de0d1311e00fc5414d74442a67fd979760ec1 (diff)
downloadmanas-7356e54f1332b6a0cdf06cd18f3df338311fb61a.tar.gz
manas-7356e54f1332b6a0cdf06cd18f3df338311fb61a.tar.xz
manas-7356e54f1332b6a0cdf06cd18f3df338311fb61a.zip
Clean up our master and index templates
-rw-r--r--manas/templates/index.html29
-rw-r--r--manas/templates/master.html16
2 files changed, 14 insertions, 31 deletions
diff --git a/manas/templates/index.html b/manas/templates/index.html
index 95e7d8b..44d01e4 100644
--- a/manas/templates/index.html
+++ b/manas/templates/index.html
@@ -11,32 +11,13 @@
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
- <title>Welcome to TurboGears 2.0, standing on the
- shoulders of giants, since 2007</title>
+ <title>Manas</title>
</head>
<body>
- ${sidebar_top()}
- <div id="getting_started">
- <p>TurboGears 2 is rapid web application development toolkit designed to make your life easier.</p>
- <ol id="getting_started_steps">
- <li class="getting_started">
- <h3>Code your data model</h3>
- <p> Design your data model, Create the database, and Add some bootstrap data.</p>
- </li>
- <li class="getting_started">
- <h3>Design your URL architecture</h3>
- <p> Decide your URLs, Program your controller methods, Design your
- templates, and place some static files (CSS and/or JavaScript). </p>
- </li>
- <li class="getting_started">
- <h3>Distribute your app</h3>
- <p> Test your source, Generate project documents, Build a distribution.</p>
- </li>
- </ol>
- </div>
- <div class="clearingdiv" />
- <div class="notice"> Thank you for choosing TurboGears.
+ ${sidebar_left()}
+ ${sidebar_right()}
+ <div class="main" id="main">
</div>
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/manas/templates/master.html b/manas/templates/master.html
index 3c5a5d8..341b54c 100644
--- a/manas/templates/master.html
+++ b/manas/templates/master.html
@@ -16,13 +16,15 @@ tg_flash = tg.get_flash()
</head>
<body py:match="body" py:attrs="select('@*')">
- ${header()}
- <div id="main_content">
- <div id="status_block" py:if="tg_flash" class="flash" py:content="tg_flash"></div>
- <div py:replace="select('*|text()')"/>
- <!-- End of main_content -->
- <div class="clearingdiv" />
- ${footer()}
+ <div class="wrapper">
+ ${header()}
+ <div id="content">
+ <div id="status_block" py:if="tg_flash" class="flash" py:content="tg_flash"></div>
+ <div py:replace="select('*|text()')"/>
+ <!-- End of main_content -->
+ <div class="clearingdiv" />
+ </div>
</div>
+ ${footer()}
</body>
</html>