This repository has been archived by the owner on Sep 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
64 lines (56 loc) · 2.06 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
// Check the user agent
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$user_agent_checker = array(
'iphone' => preg_match('/iPhone|iPod/', $user_agent),
'android' => preg_match('/Android/', $user_agent),
);
?>
<!DOCTYPE html>
<html>
<head>
<title><?= SITE_NAME ?></title>
<meta name="description" content="<?= SITE_DESC ?>" />
<meta name="keywords" content="<?= SITE_KEYWORDS ?>" />
<?php if ($user_agent_checker['iphone'] || $user_agent_checker['android']): ?>
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, height=device-height,
user-scalable=no" />
<link rel="stylesheet" type="text/css" href="styles/mobi.css" media="all" />
<?php else: ?>
<link rel="stylesheet" type="text/css" href="styles/style.css" media="screen"
/>
<?php endif; ?>
</head>
<body>
<div id="ribbon"> </div>
<header id="page-header">
<div class="inner">
<div id="meta">
<h1>
<a href="index.php"><img src="images/logo.png" title="ACM" />
<span id="chapter_tag">UC Irvine Chapter</span></a>
</h1>
<nav id="page-nav">
<a href="index.php" title="Home">Home</a>
<a
href="http://www.facebook.com/groups/228954137162541/events/"
title="Facebook Events">Events</a>
<a href="projects.php" title="Projects">Projects</a>
<a href="about.php" title="About Us">About</a>
<a href="contact.php" title="Contact Us">Contact Us</a>
</nav>
</div>
<div id="tagline">We compete in intercollegiate competitions and
develop your ideas into projects</div>
<p>Interested? There are no requirements to join; in fact, we encourage
you to join if you have no experience. Consider attending one of our
meetings that we hold once a week at <strong><?= ORG_ROOM ?></strong>
at <strong><?= ORG_TIME ?></strong>. Our chapter hosts a variety of
events including workshops by UCI students to share knowledge and
presentations by distinguished speakers about new ideas. <strong>We
also love coffee.</strong></p>
<a href="http://www.facebook.com/groups/228954137162541/"
class="button">Join ACM</a>
</div>
</header>