Browse Source

Revise the template to exclude HTML not needed for fortunes test

Keith R. Gustafson 11 years ago
parent
commit
52bddccdc7
1 changed files with 6 additions and 32 deletions
  1. 6 32
      luminus/hello/src/hello/views/templates/base.html

+ 6 - 32
luminus/hello/src/hello/views/templates/base.html

@@ -1,35 +1,9 @@
 <!DOCTYPE html>
 <!DOCTYPE html>
 <html>
 <html>
-<head>
-	<title>Welcome to hello</title>
-	<link href="{{context}}/css/screen.css" rel="stylesheet" type="text/css"></link>
-	<script type="text/javascript">
-	var context = "{{context}}";
-	</script>
-</head>
-<body>
-    <div id="wrap">
-		<div class="navbar navbar-fixed-top navbar-inverse">
-			<div class="navbar-inner">
-				<ul class="nav">
-					<li><a href="{{context}}/">Home</a></li>
-					<li><a href="{{context}}/about">About</a></li>
-				</ul>
-			</div>
-		</div>
-		<div class="container">		
-			
-{% block content %}
-
-{% endblock %}
-
-		</div>		
-	    <div id="push"></div>
-	</div>
-	<div id="footer">
-         <div class="container">                
-             <p class="muted footer-text">Footer content.</p>
-         </div>
-    </div>        
-</body>
+  <head>
+    <title>Fortunes</title>
+  </head>
+  <body>
+    {% block content %}
+  </body>
 </html>
 </html>