Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Created May 2, 2012 12:37
Show Gist options
  • Select an option

  • Save coreymcmahon/2576268 to your computer and use it in GitHub Desktop.

Select an option

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