Created
November 28, 2012 07:34
-
-
Save silentworks/4159644 to your computer and use it in GitHub Desktop.
Twig in MODX
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
| ## Base Template | |
| <html> | |
| <head> | |
| <title>{{ site_name }} - {{ pagetitle }}</title> | |
| <base href="{{ site_url }}" /> | |
| </head> | |
| <body> | |
| <ul> | |
| {% for page in getPages() %} | |
| <li>{{ page.pagetitle }} - ({{ page.tv.testTV }})</li> | |
| {% endfor %} | |
| </ul> | |
| {% block content %} | |
| [[*content]] | |
| {% endblock %} | |
| </body> | |
| </html> | |
| ## Template that extend base | |
| {% extends 'base.html' %} | |
| {% block content %} | |
| This is a test Block | |
| [[*content]] | |
| {{ site_name }} | |
| {% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment