openscrum/app/Resources/views/base.html.twig
Polonkai Gergely e2649bbfb6 Initial commit
Empty Symfony install with no vendors and the Acme Bundle deleted

Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
2012-04-13 19:16:29 +00:00

14 lines
375 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}{% endblock %}
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
</body>
</html>