summaryrefslogtreecommitdiff
path: root/templates/main.tmpl
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-19 13:29:08 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-19 13:29:08 +0200
commit7fd19157644534d004a5ef4ca450fa7a3d3eb4b0 (patch)
treec9c0189d72380cdf942fb7e4a24dab43b943d8a5 /templates/main.tmpl
parent1543cd3d0c0e6b54440c6a895f2f283dc3688913 (diff)
downloadaCms-7fd19157644534d004a5ef4ca450fa7a3d3eb4b0.tar.gz
aCms-7fd19157644534d004a5ef4ca450fa7a3d3eb4b0.tar.bz2
completed login/logout
Diffstat (limited to 'templates/main.tmpl')
-rw-r--r--templates/main.tmpl40
1 files changed, 0 insertions, 40 deletions
diff --git a/templates/main.tmpl b/templates/main.tmpl
deleted file mode 100644
index 48b6984..0000000
--- a/templates/main.tmpl
+++ /dev/null
@@ -1,40 +0,0 @@
-<% c++ #include "content.hpp" %>
-<% skin view %>
-<% view master uses content::master %>
-
-<% template title( ) %><%= title %><% end %>
-<% template page_content( ) %>Override Me<% end %>
-
-<% template render( ) %>
-<html>
- <head>
- <title><% include title( ) %></title>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <link rel="stylesheet" type="text/css" href="/media/basic-profile.css" title="Basic Profile" media="all" />
- </head>
- <body>
- <div id="wrap">
-
- <div id="sidebar">
- <img src="/media/images/strus_big.jpg" width="280" height="280" alt="Strus logo" /></a>
- <h1><a href="index.htm">Strus CMS</a></h1>
- <p class="slogan">A simple demo CMS showing the power of the following software:</p>
- <ul>
- <li><a href="http://project-strus.net">Strus</a><br/>a collection of C++ libraries for building a full-text search engine</li>
- <li><a href="http://cppcms.com/wikipp/en/page/main">CppCMS</a><br/>a C++ web programming framework</li>
- </ul>
- </div>
-
- <div id="content">
- <h2><% include title( ) %></h2>
- <% include page_content( ) %>
-
- <p class="credits">&copy; 2015 Patrick Frey<br />
- Template design by <a href="http://andreasviklund.com/">Andreas Viklund</a> / Best hosted at <a href="https://www.svenskadomaner.se/?ref=mall&amp;ling=en" title="Svenska Domäner AB">www.svenskadomaner.se</a></p>
- </div>
-
- </body>
-</html>
-<% end template %>
-<% end view %>
-<% end skin %>