blob: 275ea4068021d05cb6a7497e113253b012a56352 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Chelsea Rogers" />
<title>{{block "title" .}}Page{{end}} - Chelsea Rogers</title>
<meta name="description" content="{{block "description" .}}Alex's personal site{{end}}" />
<meta name="keywords" content="{{block "keywords" .}}personal site{{end}}">
<link rel="canonical" href="https://www.chelsea-rogers.com{{block "canonical" .}}{{end}}">
<link rel="stylesheet" href="/static/style.css" />
<link rel="shortcut icon" href="/static/assets/favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<div class="main-nav-position">
<input type="checkbox" class="toggler">
<div class="hamburger"><div></div></div>
<nav aria-labelledby="global-navigation" class="main-nav">
<a href="/">HOME</a>
<a href="/about">ABOUT</a>
<a href="/static/Resume_Chelsea_Rogers.pdf">RESUME</a>
</nav>
</div>
<a href="/" class="logo-w-name">
<span class="name">Chelsea Rogers</span>
<span class="sub-head">Communication Designer</span>
</a>
</header>
<main>
{{ template "main" . }}
</main>
<footer>
<img src="/static/assets/logo.svg" alt="Logo" class="footer-logo"/>
<address>
<p>CONTACT: <a href="mailto:crogers16@ccsdetroit.edu">crogers16@ccsdetroit.edu</a></p>
<p>LINKEDIN: <a href="https://linkedin.com/in/chelsea-rogers-b9997a227" target="_blank" rel="noopener noreferrer">linkedin.com/in/chelsea-rogers-b9997a227</a></p></p>
<p>RESUME: <a href="/static/Resume_Scerba.pdf">view</a></p>
</address>
</footer>
</body>
</html>
|