Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Created May 2, 2012 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coreymcmahon/2576268 to your computer and use it in GitHub Desktop.
Save coreymcmahon/2576268 to your computer and use it in GitHub Desktop.
Simple Twig base template - http://www.symfonycentral.com
{# app/MyCompany/BlogBundle/Resources/views/layout.html.twig #}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment