Created
December 18, 2013 18:31
-
-
Save clone1018/8027353 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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