Files
jami-daemon/www/header.php
Alexandre Bourget b5dd993222 Move images + Create page Donate, fix Home (add button Home) + Add footer (donate)
Moved images from doc/images to www/images since they are backend specific, and
need not be sitted beside the actual documentation (the 'NOTE' icon might
not be taken from the same place when rendered to a PDF later).

That way, we'll be able to use those icons elsewhere on the website, without
fetching them from the repository. They aren't going to be updated, also,
and thus don't need versioning very much.
2007-09-10 11:08:11 -04:00

22 lines
679 B
PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="sflphone.css" />
<title><?= ($title ? $title.' :: ' : '') ?> SFLphone</title>
</head>
<body>
<div id="page_wrapper">
<div id="header">
<a href="."><img src="images/logoSFLphone<?= ($module == 'home' ? '512x149' : '312x91') ?>.png" /></a>
<?php if ($module != 'home') { ?>
<div id="homebutton">
<a href="index.php"><img src="images/home.png" alt="Home" /></a>
</div>
<?php } ?>
</div>