Browse Source

clickable esir logo

master
AmarOk 10 years ago
parent
commit
f7b12e819b
5 changed files with 8 additions and 13 deletions
  1. +1
    -4
      addEvent.php
  2. +1
    -4
      day.php
  3. +1
    -4
      event.php
  4. +4
    -0
      header.php
  5. +1
    -1
      index.php

+ 1
- 4
addEvent.php View File

@ -27,10 +27,7 @@ $db = connect();
<!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /><![endif]-->
</head>
<body>
<header id="title">
<img alt="logo ESIR" src="./images/esir.png" />
<a href="./index.php"><img class="rightLogo" alt="logo Kiwi" src="./images/KiWiCalendar.png" /></a>
</header>
<?php include('header.php'); ?>
<div id="descEvent">
<h1>Ajouter un Évènement</h1>


+ 1
- 4
day.php View File

@ -15,10 +15,7 @@ $date = strtotime(htmlspecialchars($_GET['date']));
<!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /><![endif]-->
</head>
<body>
<header id="title">
<img alt="logo ESIR" src="./images/esir.png" />
<a href="./index.php"><img class="rightLogo" alt="logo Kiwi" src="./images/KiWiCalendar.png" /></a>
</header>
<?php include('header.php'); ?>
<div id="descEvent">
<h1><?php echo date('d M Y', $date); ?></h1>


+ 1
- 4
event.php View File

@ -24,10 +24,7 @@ $dtend = strtotime($event['event_dtend']);
<!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /><![endif]-->
</head>
<body>
<header id="title">
<img alt="logo ESIR" src="./images/esir.png" />
<a href="./index.php"><img class="rightLogo" alt="logo Kiwi" src="./images/KiWiCalendar.png" /></a>
</header>
<?php include('header.php'); ?>
<div id="descEvent">
<h1><?php echo $event["event_title"]; ?></h1>


+ 4
- 0
header.php View File

@ -0,0 +1,4 @@
<header id="title">
<a href="./index.php"><img alt="logo ESIR" src="./images/esir.png" /></a>
<a href="./index.php"><img class="rightLogo" alt="logo Kiwi" src="./images/KiWiCalendar.png" /></a>
</header>

+ 1
- 1
index.php View File

@ -23,7 +23,7 @@ else
<body>
<header id="title">
<a id="hamburgerButton" href="#"><img alt="menu" src="./images/menu.png" /></a>
<img alt="logo ESIR" src="./images/esir.png" />
<a href="./index.php"><img alt="logo ESIR" src="./images/esir.png" /></a>
<a href="./index.php"><img class="rightLogo" alt="logo Kiwi" src="./images/KiWiCalendar.png" /></a>
</header>


Loading…
Cancel
Save