0727bdf133
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
45 lines
2.0 KiB
Twig
45 lines
2.0 KiB
Twig
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>OpenScrum{% block title %}{% endblock %}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('skins/default/css/mobile.css') }}" media="handheld" />
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('skins/default/css/main.css') }}" media="screen" />
|
|
<link rel="shortcut icon" href="{{ asset('images/favicon.png') }}" />
|
|
</head>
|
|
<body>
|
|
<div id="appbar-wrapper">
|
|
<div id="appbar">
|
|
<div id="appbar-logo">
|
|
<h1><a href="{{ path('OpenScrumInfoBundle_infopage', { 'page': 'index', '_format': 'html' }) }}"><img src="{{ asset('images/logo-small.png') }}" alt="OpenScrum.org" /></a></h1>
|
|
</div>
|
|
<div id="appbar-siteinfo">
|
|
<ul>
|
|
<li><a href="{{ path('OpenScrumInfoBundle_infopage', { 'page': 'about', '_format': 'html' }) }}">About</a></li>
|
|
<li><a href="{{ path('OpenScrumInfoBundle_infopage', { 'page': 'terms', '_format': 'html' }) }}">Terms and Definitions</a></li>
|
|
<li><a href="{{ path('OpenScrumInfoBundle_infopage', { 'page': 'faq', '_format': 'html'}) }}">FAQ</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="appbar-login">
|
|
Sign In!
|
|
</div>
|
|
|
|
<div id="appbar-search">
|
|
<input type="text" value="search" /><input type="submit" value="" />
|
|
</div>
|
|
</div>
|
|
<div id="appbar-padding"></div>
|
|
</div>
|
|
<div id="container">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<div id="footer-wrapper">
|
|
<div id="footer-padding"></div>
|
|
<div id="footer"{% if app.environment == 'dev' %} style="bottom: 40px;"{% endif %}>
|
|
Copyright © 2012, Gergely POLONKAI :: <a href="{{ path('OpenScrumInfoBundle_infopage', { 'page': 'privacypolicy', '_format': 'html' }) }}">Privacy Policy</a> :: <a href="{{ path('OpenScrumInfoBundle_infopage', { 'page': 'disclaimers', '_format': 'html' }) }}">Disclaimers</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|