summaryrefslogtreecommitdiff
path: root/templates/main.tmpl
blob: 0d949d7ebcff0d0f0917bd70ef210ae47b59429a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<% 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">
      <h2><% include title( ) %></h2>  
      <div id="content">
        <% 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>
    
      <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>
      
  </body>
</html>
<% end template %>
<% end view %>
<% end skin %>