diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-16 22:42:50 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-16 22:42:50 +0000 |
commit | 151cba336bdb78e6b5030c1f2e4cd12e4bf2c5cf (patch) | |
tree | 3b8e116187eb2f6084ac81787e9f4778656fe6b7 /core | |
parent | d8ab17217f8fd7784b35ec4c9924717ed05491a5 (diff) | |
download | troggle-151cba336bdb78e6b5030c1f2e4cd12e4bf2c5cf.tar.gz troggle-151cba336bdb78e6b5030c1f2e4cd12e4bf2c5cf.tar.bz2 troggle-151cba336bdb78e6b5030c1f2e4cd12e4bf2c5cf.zip |
fix absolute addressing in templates
Diffstat (limited to 'core')
-rw-r--r-- | core/views/expo.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/views/expo.py b/core/views/expo.py index 411aaec..b2ab312 100644 --- a/core/views/expo.py +++ b/core/views/expo.py @@ -30,9 +30,7 @@ This is a succession of hacks and needs to be redisgned and refactored. default_head = """<head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>CUCC Expedition - index</title> -<link rel="stylesheet" type="text/css" href="../css/main2.css" /> -<link rel="stylesheet" type="text/css" href="../../css/main2.css" /> -<link rel="stylesheet" type="text/css" href="../../../css/main2.css" /> +<link rel="stylesheet" type="text/css" href="/css/main2.css" /> </head> <body> <h1>Expo</h1> |