Skip to content

Instantly share code, notes, and snippets.

@kroatoanweb
Last active August 8, 2016 10:29
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 kroatoanweb/1006745bf4f006acfad14faedf041ccf to your computer and use it in GitHub Desktop.
Save kroatoanweb/1006745bf4f006acfad14faedf041ccf to your computer and use it in GitHub Desktop.
Repetir el contenido de un bloque dentro de una plantilla twig
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{{ block('title') }} | MyPage</title>
{% block stylesheets %}{% endblock %}
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
<meta name="title" content="{{ block('title') }} | MyPage"/>
</head>
<body>
<h1>{% block title %}Bienvenido a mi blog!{% endblock %}</h1>
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
</body>
</html>
{% extends 'base.html.twig' %}
{% block title %}Usos de la función block en twig{% endblock %}
{% block body %}
{# nuestro contenido #}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment