PHP Classes

File: tests/assert_templates/base.tpl

Recommend this page to a friend!
  Classes of Cesar D. Rodas   Haanga   tests/assert_templates/base.tpl   Download  
File: tests/assert_templates/base.tpl
Role: Auxiliary data
Content type: text/plain
Description: Testing file
Class: Haanga
Template engine to process Django style templates
Author: By
Last change: Update of tests/assert_templates/base.tpl
Date: 4 years ago
Size: 409 bytes
 

Contents

Class file image Download
<html> <head> <title>{% block title %}Default Title{% endblock %}</title> </head> <body> <h1>Menu</h1> {% block main.menu %} <ul> {% for item in menu %} <li><a href="{{ item.url|safe }}">{{ item.name }}</a></li> {% endfor %} </ul> {% endblock %} {% block main['include-end'] %}{% include "assert_templates/partial.tpl" %}{% endblock %} </body> </html>