-
-
Save AsaAyers/1129800 to your computer and use it in GitHub Desktop.
base.html.twig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>{% block title %}Welcome!{% endblock %}</title> | |
{% block stylesheet_block %} | |
{% stylesheets | |
'@SedlmayrReportsBundle/Resources/public/css/styles.css' | |
'@SedlmayrReportsBundle/Resources/public/css/reset.css' | |
%} | |
{% endblock %} | |
<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