Skip to content

Instantly share code, notes, and snippets.

@clone1018
Created December 18, 2013 18:31
Show Gist options
  • Save clone1018/8027353 to your computer and use it in GitHub Desktop.
Save clone1018/8027353 to your computer and use it in GitHub Desktop.
templates/base.spt
<html>
<head>
{% block scripts %}{% end %}
</head>
</html>
templates/about.spt
{% extends "base.spt" %}
{% block scripts %}
<script>
My /about global scripts
</script>
{% end %}
www/about/charts.spt
{% extends "templates/about.spt" %}
{% block scripts %}
<script>
My /about/charts specific scripts
</script>
{% end %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment