Skip to content

Instantly share code, notes, and snippets.

@ger86
Created November 7, 2018 07:42
Show Gist options
  • Save ger86/9df223d3161af2ccc10867827a1b92ea to your computer and use it in GitHub Desktop.
Save ger86/9df223d3161af2ccc10867827a1b92ea to your computer and use it in GitHub Desktop.
{# download-specifications/pdf.html.twig #}
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('build/base.css') }}">
{% block stylesheets %}{% endblock %}
<title>Hello, world!</title>
</head>
<body>
<div class="container main-container">
{% block body %}
<p>Esto es una prueba</p>
{% endblock %}
</div>
<script src="{{ asset('build/manifest.js') }}"></script>
<script src="{{ asset('build/base.js') }}"></script>
{% block javascripts %}{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment