summaryrefslogtreecommitdiffstats
path: root/includes/header.php
diff options
context:
space:
mode:
authorraylu <raylu@mixpanel.com>2011-09-11 03:36:52 -0700
committerraylu <raylu@mixpanel.com>2011-09-11 03:37:43 -0700
commiteb3e11068965f2bd9428e0d15147b8086e5ab026 (patch)
tree59738901c8a1f5bc9b862ef0189f0d774bfcc842 /includes/header.php
parent183773d794a5d3ec5b5e6a0897b384bb16540a92 (diff)
downloadpathery-eb3e11068965f2bd9428e0d15147b8086e5ab026.tar.xz
new font: cantarell
also fix some css properties, reorder the header, and other minor fixes
Diffstat (limited to 'includes/header.php')
-rw-r--r--includes/header.php41
1 files changed, 21 insertions, 20 deletions
diff --git a/includes/header.php b/includes/header.php
index b386cfa..adfc211 100644
--- a/includes/header.php
+++ b/includes/header.php
@@ -3,28 +3,29 @@
function htmlHeader() {
?>
<!DOCTYPE html>
-<html xml:lang="en" lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <link href="css/mapstyle.css" rel="stylesheet" type="text/css" />
- <link href="css/pagestyle.css" rel="stylesheet" type="text/css" />
- <link href="css/statsstyle.css" rel="stylesheet" type="text/css" />
- <title>pathery.com</title>
+<html xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+ <title>pathery.com</title>
- <script src="js/ajax.js" type="text/javascript"></script>
- <script src="js/mapspecs.js" type="text/javascript"></script>
-
-<script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-371072-3']);
- _gaq.push(['_trackPageview']);
+ <link href="http://fonts.googleapis.com/css?family=Cantarell:400,400italic,700" rel="stylesheet" type="text/css">
+ <link href="css/mapstyle.css" rel="stylesheet" type="text/css" />
+ <link href="css/pagestyle.css" rel="stylesheet" type="text/css" />
+ <link href="css/statsstyle.css" rel="stylesheet" type="text/css" />
+ <script src="js/ajax.js" type="text/javascript"></script>
+ <script src="js/mapspecs.js" type="text/javascript"></script>
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
-</script>
+ <script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-371072-3']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+ </script>
</head>
<?
}