diff options
author | martin speleo <martin.speleo@gmail.com> | 2009-07-03 21:29:02 +0100 |
---|---|---|
committer | martin speleo <martin.speleo@gmail.com> | 2009-07-03 21:29:02 +0100 |
commit | 7dce545b4cfa628423c1fcc8a5c0ca0e9bc7b324 (patch) | |
tree | 2c9b98fcee4256ff821a634925c0ba44845123f7 /templates | |
parent | 50ae2a27f2d1798449fdff8d1ee47f2b45adcfd2 (diff) | |
download | troggle-7dce545b4cfa628423c1fcc8a5c0ca0e9bc7b324.tar.gz troggle-7dce545b4cfa628423c1fcc8a5c0ca0e9bc7b324.tar.bz2 troggle-7dce545b4cfa628423c1fcc8a5c0ca0e9bc7b324.zip |
[svn] Fixed setContentHeight to work properly for eye candy view, whilst removing it from the non-eyecandy view
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html index 5be9d0f..23e90ae 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,7 +3,7 @@ <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/main3.css" title="eyeCandy"/>
-<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/mainplain.css" title="plain"/>
+<link rel="alternate stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/mainplain.css" title="plain"/>
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/dropdownNavStyle.css" />
<title>{% block title %}Troggle{% endblock %}</title>
<script src="{{ settings.MEDIA_URL }}js/jquery.js" type="text/javascript"></script>
@@ -13,7 +13,7 @@ {% block head %}{% endblock %}
</head>
-<body onLoad="contentHeight();">
+<body>
<div id="header">
<h1>CUCC Expeditions to Austria: 1976 - 2009</h1>
|