aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/templates/src/usertemplates/master.html
blob: 937247dda6b3cdc76639d9bf8c996ec36c0e3efa (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
41
42
43
<ste:load name="some_useful_tags" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta http-equiv="Content-Style-Type" content="text/css" />
	<ste:title>Your Website</ste:title>
	<ste:styles_load />
</head>
<body>
	<div id="maincontainer">
		<div id="heading">
			<h1>Your Website</h1>
			<span id="subheading">A slogan for your website.</span>
		</div>
		<ul id="mainmenu">
			<ste:set var="current_section"><ste:current_section /></ste:set><!-- $current[section][name] -->
			<ste:section_list var="section" include_default="y">
				<ste:menu_elem section="$section[name]" current_section="$current_section"><ste:escape>$section[title]</ste:escape></ste:menu_elem>
			</ste:section_list>
		</ul>
		<div id="contentwrapper">
			<div id="metabar">
				<ste:block name="additional_metabar_modules" />
				<div class="metabar_module">
					<h2><ste:get_translation for="language" /></h2>
					<ul>
						<ste:languages var="lang">
							<li><a href="$lang[url]"><ste:escape>$lang[fullname]</ste:escape></a></li>
						</ste:languages>
					</ul>
				</div>
			</div>
			<div id="content">
				<ste:block name="content" />
			</div>
		</div>
		<div id="footer">
			&copy; Your Copyright informations
		</div>
	</div>
</body>
</html>