diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-12 03:29:09 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-12 03:29:09 +0000 |
commit | bbabbca9d1943421117a6625fc81c02d5b66def4 (patch) | |
tree | a89b0aa695e99726db3079440aaeb5dc69604ef3 /templates | |
parent | 94eab28a86d518c39d8a71accee7b25818e38e63 (diff) | |
download | ikiwiki-bbabbca9d1943421117a6625fc81c02d5b66def4.tar ikiwiki-bbabbca9d1943421117a6625fc81c02d5b66def4.tar.gz |
template for recentchanges
Diffstat (limited to 'templates')
-rw-r--r-- | templates/recentchanges.tmpl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl new file mode 100644 index 000000000..72e243c60 --- /dev/null +++ b/templates/recentchanges.tmpl @@ -0,0 +1,25 @@ +<html> +<head><title><TMPL_VAR TITLE></title></head> +<body> + +<h1> +<a href="<TMPL_VAR INDEXLINK>"><TMPL_VAR WIKINAME></a>/ <TMPL_VAR TITLE> +</h1> + +<hr> + +<ul> +<TMPL_LOOP NAME="CHANGELOG"> + <li> + <TMPL_LOOP NAME="PAGES"> + <TMPL_VAR NAME="LINK"></a> + </TMPL_LOOP> + <br> + changed <TMPL_LOOP NAME="WHEN"> by <TMPL_LOOP NAME="USER">: + <i><TMPL_LOOP NAME="MESSAGE"></i> + </li> +</TMPL_LOOP> +</ul> + +</body> +</html> |