Skip to content

Instantly share code, notes, and snippets.

@rossriley
Created August 5, 2014 09:21
Show Gist options
  • Save rossriley/326d5af7d5db5454d0b9 to your computer and use it in GitHub Desktop.
Save rossriley/326d5af7d5db5454d0b9 to your computer and use it in GitHub Desktop.
Example template
{% extends 'base.twig' %}
{% block title %}Custom Page Title{% endblock %}
{% block css %}
{{ parent() }}
<link rel="stylesheet" type="text/css" href="/my/custom/file.css">
{% endblock %}
{% block content %}
all content goes in here
{% endblock %}
{% block js %}
{{ parent() }}
<script src="/custom/file.js"></script>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment