Skip to content

Instantly share code, notes, and snippets.

@idcmardelplata
Created March 12, 2013 05:35
Show Gist options
  • Save idcmardelplata/5140585 to your computer and use it in GitHub Desktop.
Save idcmardelplata/5140585 to your computer and use it in GitHub Desktop.
Estructura basica de una plantilla twig
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}{% endblock %}
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
</head>
<body>
{% block body %}<p>Contenido del archivo </p>{% endblock %}
{% block javascripts %}{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment