-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
33 lines (30 loc) · 1.71 KB
/
header.php
File metadata and controls
33 lines (30 loc) · 1.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php // set time zone
date_default_timezone_set('America/Los_Angeles');
// static page titler; remove instances from WP template
$pageName = substr(basename($_SERVER['PHP_SELF']), 0, -4);
if ($pageName === 'index') $pageName = 'home'; ?>
<title>Alison McKay | Front End Developer</title>
<meta name="description" content="A portfolio website for Alison McKay's front end development skillz.">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="i/favicon.png" type="image/png" />
<link href="https://fonts.googleapis.com/css?family=Abhaya+Libre:400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body id="body" class="<?php echo $pageName; ?>">
<div class="content-wrap">
<header class="about">
<div class="grid">
<div class="column image">
<img src="i/alison-mckay-by-cassandra-croft.jpg" alt="photo of Alison McKay by Cassandra Croft">
</div>
<div class="column text">
<h1>Alison McKay</h1>
<p>A professional front end developer for seven years, I have experience freelancing, contracting, and working full-time as part of an agency team. I'm currently based in Oaxaca, Mexico and looking for remote part-time work or freelance projects.</p>
<p>I'm detail-oriented, love writing clean code, and am particularly passionate about web accessibility and inclusivity. The possibilities of the internet are beautiful and endless—but only if everyone can access the content.</p>
</div>
</div>
</header>