diff options
author | Eudyptula <eitan@mosenkis.net> | 2009-07-07 12:08:10 -0400 |
---|---|---|
committer | Eudyptula <eitan@mosenkis.net> | 2009-07-07 12:08:10 -0400 |
commit | 8d29e8c1967698ccc05ae5ccc57727addc70aab2 (patch) | |
tree | f5e3eeed58677886b06b3c9d5e3a436f258901cb /frontend | |
parent | Last changes for multiple backends to be (theoretically) possible (diff) | |
download | ingenue-8d29e8c1967698ccc05ae5ccc57727addc70aab2.tar.gz ingenue-8d29e8c1967698ccc05ae5ccc57727addc70aab2.tar.bz2 ingenue-8d29e8c1967698ccc05ae5ccc57727addc70aab2.zip |
Added linked 'Ingenue' logo using Gimp
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/css/general.css | 4 | ||||
-rw-r--r-- | frontend/images/ingenue.png | bin | 0 -> 62000 bytes | |||
-rw-r--r-- | frontend/include/header.php | 2 | ||||
-rw-r--r-- | frontend/pages/passthrough.php | 3 | ||||
-rw-r--r-- | frontend/routing.csv | 2 |
5 files changed, 9 insertions, 2 deletions
diff --git a/frontend/css/general.css b/frontend/css/general.css index 3496cf3..df0d3a6 100644 --- a/frontend/css/general.css +++ b/frontend/css/general.css @@ -3,6 +3,10 @@ body { margin: 0px; border: 0px; } +h1 a img { + border: none; + width: 100%; +} input { border: 1px solid teal; } diff --git a/frontend/images/ingenue.png b/frontend/images/ingenue.png Binary files differnew file mode 100644 index 0000000..596b832 --- /dev/null +++ b/frontend/images/ingenue.png diff --git a/frontend/include/header.php b/frontend/include/header.php index eb70142..310d229 100644 --- a/frontend/include/header.php +++ b/frontend/include/header.php @@ -32,7 +32,7 @@ if (isset($S['head'])) { </head> <body> <div id="left" class="box"> -<h1>Ingenue</h1> +<h1><a href="<?php echo url(); ?>"><img src="<?php echo url('images/ingenue.png'); ?>" alt="Ingenue" /></a></h1> <ul> <?php echo '<li><a href="'.url().'">Home</a></li>'; diff --git a/frontend/pages/passthrough.php b/frontend/pages/passthrough.php index fd989f1..e444aa2 100644 --- a/frontend/pages/passthrough.php +++ b/frontend/pages/passthrough.php @@ -20,6 +20,9 @@ function init_passthrough() { case 'ico': contenttype('image/x-icon'); break; + case 'png': + contenttype('image/png'); + break; case 'js': contenttype('application/x-javascript'); break; diff --git a/frontend/routing.csv b/frontend/routing.csv index 7b9ea0f..da116a9 100644 --- a/frontend/routing.csv +++ b/frontend/routing.csv @@ -35,7 +35,7 @@ ^invite$ invite # Pass through ^(js)/([0-9a-zA-Z-_]+\.(js))$ passthrough dir file ext -^(images)/([0-9a-zA-Z-_]+\.(gif|jpg|jpeg|ico))$ passthrough dir file ext +^(images)/([0-9a-zA-Z-_]+\.(gif|jpg|jpeg|ico|png))$ passthrough dir file ext # Replace xinha with a directory name to turn it into fairly normal handling like without all this crazy redirecting #^(xinha(?=/)[0-9a-zA-Z-_./]*).(?<=/)([0-9a-zA-Z-_.]+\.([a-zA-Z0-9]+))$ passthrough dir file ext # CSS |