public
Description: Midgard Components Framework 3rd generation
Homepage: http://www.midgard-project.org
Clone URL: git://github.com/bergie/midcom.git
midcom / midcom_core / templates / ROOT.php
100644 38 lines (38 sloc) 1.547 kb
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
<?php
/**
* The default HTML5 layout template for Midgard
*
* @todo convert to XHTML5 as soon as MidCOM 3 javascripts are compatible with it
* @package midcom_core
*/
?>
<!DOCTYPE html>
<html>
<head>
<title tal:content="page/title">Midgard CMS</title>
<span tal:replace="php: MIDCOM.head.print_elements()" />
<link rel="stylesheet" type="text/css" href="/midcom-static/midcom_core/midgard/screen.css" media="screen,projection,tv" />
<link rel="stylesheet" type="text/css" href="/midcom-static/midcom_core/midgard/content.css" media="all" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="shortcut icon" href="/midcom-static/midcom_core/midgard/midgard.ico" type="image/vnd.microsoft.icon" />
</head>
<body>
<div id="container">
<header>
<div class="grouplogo">
<a href="/"><img src="/midcom-static/midcom_core/midgard/midgard.gif" alt="Midgard" width="135" height="138" /></a>
</div>
</header>
<section id="content">
<!-- beginning of content-text -->
<div id="content-text">
<(content)>
</div>
</section>
</div>
<footer>
<a href="http://www.midgard-project.org/" rel="powered">Midgard CMS</a> power since 1999.
<a href="http://www.gnu.org/licenses/lgpl.html" rel="license">Free software</a>.
</footer>
</body>
</html>