diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-01-11 22:06:51 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-01-11 22:06:51 -0800 |
commit | 0c5e8f740fcf610158e610899db4264d5259f5e0 (patch) | |
tree | c8c212c5dc47ba98478faee53ca710e74c0881e4 /includes/header.php | |
parent | 4de2151306cee8ad7983f201a74d15a44d2b06b7 (diff) | |
download | pathery-0c5e8f740fcf610158e610899db4264d5259f5e0.tar.xz |
Social buttons
Diffstat (limited to 'includes/header.php')
-rw-r--r-- | includes/header.php | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/includes/header.php b/includes/header.php index 6e29cbe..2a6e940 100644 --- a/includes/header.php +++ b/includes/header.php @@ -8,7 +8,7 @@ function htmlHeader($css = array(), $title = 'Pathery', $desc = '', $scripts = a <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title><? echo $title; ?></title>
- <link href="css/page.css" rel="stylesheet" type="text/css" />
+ <link href="css/page.css?v=011013" rel="stylesheet" type="text/css" />
<link href="css/maps.css?v=121212" rel="stylesheet" type="text/css" />
<?php
foreach ($css as $c) {
@@ -62,7 +62,16 @@ function htmlFooter() { global $footerLinks;
- echo "<div class='divide'> </div>";
+ echo "<div class='divide'>
+
+ <div class='socialButtons buttons'>
+ <a href='http://www.facebook.com/Pathery' target='top' title='Facebook'><img alt='Facebook' src='images/btns/facebook.png' /></a>
+ <a href='http://www.reddit.com/r/Pathery' target='top' title='Reddit'><img alt='Reddit' src='images/btns/reddit.png' /></a>
+ <a href='https://twitter.com/Pathery' target='top' title='Twitter'><img alt='Twitter' src='images/btns/twitter.png' /></a>
+ <a href='https://plus.google.com/105148482605711831543' target='top' title='Google Plus'><img alt='Google Plus' src='images/btns/googleplus.png' /></a>
+ </div>
+
+ </div>";
echo " <div class='footerArea' style='width:100%;clear: both'><ul id='triple'>";
foreach ($footerLinks as $key => $value) {
echo "<li><a href='$key'>$value</a></li>";
|