Made site template mobile friendly and added title to RSS feed
[biaweb2.git] / templates / main.tpl.html
index 804d24c..123729b 100644 (file)
@@ -1,9 +1,11 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
+<!-- change as appropriate - just don't touch anything within the curly braces!! -->
 <title>My Site - {title}</title>
-<meta name="keywords" content="{keywords}">
-<meta name="description" content="{description}">
+<meta name="viewport" content="width=device-width, initial-scale=1.0" />
+<meta name="keywords" content="site key words {keywords}">
+<meta name="description" content="Site Description - {description}">
 <!-- change base href to your site URL -->
 <base href="http://my.site">
 <style>
 </style>
 </head>
 <body>
-    <div id="header"></div>
-    <div id="content">
+    <!-- change My Site to your own header -->
+    <header><h1>My Site</h1></header>
+    <section id="content">
         <div id="modification">Created on: {cdate:%d %b %Y, %H:%M %Z}, 
             last modified: {mdate:%d %b %Y, %H:%M %Z}</div>
+        {navbit}
         {contents}
-    </div>
-    <div id="sidebar">
+    </section>
+    <nav id="sidebar">
         {sidebar}
-    </div>
-    <div id ="footer">
+    </nav>
+    <footer>
+        <!-- change copyright to your own copyright -->
         My copyright
-    </div>
+    </footer>
 </body>
 </html>