summaryrefslogtreecommitdiff
path: root/modules/template.tcl
blob: b76c201165b120ae86fc1172928cda058d629d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace eval template {

	variable targets {
		target1 target2
	}

	proc run {request_target} {
		return [string cat \
					[http::start "Title"] \
					"This is a template<br>" \
					"request_target: $request_target" \
					[http::end]]
	}
}