Skip to content

Instantly share code, notes, and snippets.

@catchamonkey
Created August 5, 2011 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save catchamonkey/1128525 to your computer and use it in GitHub Desktop.
Save catchamonkey/1128525 to your computer and use it in GitHub Desktop.
base.html.twig
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{% block title %}Welcome!{% endblock %}</title>
{% stylesheets
'@SedlmayrReportsBundle/Resources/public/css/styles.css'
'@SedlmayrReportsBundle/Resources/public/css/reset.css'
%}
<link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
{% endstylesheets %}
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment