aboutsummaryrefslogtreecommitdiff
path: root/app/layout
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-04-28 13:30:34 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-04-28 13:30:34 +0200
commita0d9d93ad2f6a174c0476bd596d6fddda77d0b04 (patch)
tree637621a07479e69ecd00da487d78869a01ee1cce /app/layout
parent21dc4ceace513a0d6cd934f5fc4bb9cc643bb570 (diff)
Fix issue #62 : création d'un logo (temporaire ?)
Diffstat (limited to 'app/layout')
-rw-r--r--app/layout/header.phtml1
-rw-r--r--app/layout/layout.phtml3
2 files changed, 4 insertions, 0 deletions
diff --git a/app/layout/header.phtml b/app/layout/header.phtml
index cab56e7d8..d6fe41950 100644
--- a/app/layout/header.phtml
+++ b/app/layout/header.phtml
@@ -11,6 +11,7 @@
<div class="header">
<div class="item title">
<h1><a href="<?php echo _url ('index', 'index'); ?>"><?php echo Configuration::title (); ?></a></h1>
+ <img class="logo" src="<?php echo Url::display ('/logo.png'); ?>" alt="" />
</div>
<div class="item search">
diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml
index a515217d6..331570873 100644
--- a/app/layout/layout.phtml
+++ b/app/layout/layout.phtml
@@ -3,6 +3,9 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
+ <link rel="icon" type="image/x-icon" href="<?php echo Url::display ('/favicon.ico'); ?>" />
+ <link rel="icon" type="image/png" href="<?php echo Url::display ('/favicon.ico'); ?>" />
+
<?php echo self::headTitle (); ?>
<?php echo self::headStyle (); ?>
<?php echo self::headScript (); ?>