<?php
# type: template
# title: default variables for templates
# version: 0.1
// escape all local variables
extract( html( get_defined_vars() ) );
// define a gettext/webtext reference
$_ = "_"; // could be used in heredocs and strings as " {$_('text')} "
// text and html snippets
$site_title = "Example website";
$html5_meta = '<meta charset="utf-8" />';
// can also hold custom template/output functions right here
# ...
#include(template("functions"));
?>