diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-06 17:31:00 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-06 17:31:00 +0000 |
commit | 8d03891ebab60eb2db65f26183d06249937d2458 (patch) | |
tree | b2901d276834b97a5c4c5c235b5900b1ecadb5aa /templates/page.tmpl | |
parent | 3bb79c43dad290c979c675203f050ef3bd5e40ea (diff) | |
download | ikiwiki-8d03891ebab60eb2db65f26183d06249937d2458.tar ikiwiki-8d03891ebab60eb2db65f26183d06249937d2458.tar.gz |
* Reorder the icon in the template above the stylesheets, to avoid icon
flashing during page load.
Diffstat (limited to 'templates/page.tmpl')
-rw-r--r-- | templates/page.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl index 61d22723f..aebd6a5c4 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -4,11 +4,11 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><TMPL_VAR TITLE></title> -<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" /> -<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" /> <TMPL_IF NAME="FAVICON"> <link rel="icon" href="<TMPL_VAR BASEURL><TMPL_VAR FAVICON>" type="image/x-icon" /> </TMPL_IF> +<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" /> +<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" /> <TMPL_IF NAME="FEEDLINKS"><TMPL_VAR FEEDLINKS></TMPL_IF> <TMPL_IF NAME="META"><TMPL_VAR META></TMPL_IF> </head> |