diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-29 07:24:03 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-29 07:24:03 +0000 |
commit | 5591d621b90855beeb5460f0ac11279d19835699 (patch) | |
tree | ed8dea922eece54aad4b6f3e9da8597e894c2481 /templates/recentchanges.tmpl | |
parent | ce48f18a3b63ca82a835c151093b8bede5c856c1 (diff) | |
download | ikiwiki-5591d621b90855beeb5460f0ac11279d19835699.tar ikiwiki-5591d621b90855beeb5460f0ac11279d19835699.tar.gz |
css support
Diffstat (limited to 'templates/recentchanges.tmpl')
-rw-r--r-- | templates/recentchanges.tmpl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl index 4ab53b892..9836e1f2a 100644 --- a/templates/recentchanges.tmpl +++ b/templates/recentchanges.tmpl @@ -1,15 +1,20 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> -<head><title><TMPL_VAR TITLE></title></head> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title><TMPL_VAR TITLE></title> +<link rel="stylesheet" href="<TMPL_VAR STYLEURL>" type="text/css" /> +</head> <body> +<div id="header"> <h1> <TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE> </h1> +</div> -<hr /> - +<div id="content"> <ul> <TMPL_LOOP NAME="CHANGELOG"> <li> <!-- <TMPL_VAR NAME="REV"> --> @@ -32,6 +37,7 @@ </li> </TMPL_LOOP> </ul> +</div> <!-- from <TMPL_VAR NAME=WIKINAME> --> |