zodiac/example/site/helpers.awk
nuex ad7a86f1c5 custom configuration support
- custom extensions
- custom filters
- ignore files matching given patterns
2011-10-20 14:29:30 -04:00

15 lines
254 B
Awk

{ helpers = "yes" }
function load_helpers() {
data["page_title"] = page_title()
}
function page_title( title) {
if (data["title"]) {
title = data["title"] " - " data["site_title"]
} else {
title = data["site_title"]
}
return title
}