-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
68 lines (54 loc) · 2.45 KB
/
default.hbs
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
64
65
66
67
68
<!DOCTYPE html>
<!-- Code by Scott Smith
_____
/ ___ \
/ / \_\ _ _
| | | | | |
\ \____ _____ _____ __| |__ __| |__
\____ \ / ___ \ / ___ \ |__ __| |__ __|
\ \ / / \_\ / / \ \ | | | |
| | | | | | | | | | | |
__ / / | | __ | | | | | | | |
\ \__/ / \ \___/ / \ \___/ / | | | |
\____/ \_____/ \_____/ |_| |_|
-->
<html lang="{{lang}}" class="no-js">
<head>
{{! Page Meta }}
<title>Scott Smith | {{meta_title}}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<link rel="manifest" href="/manifest.webmanifest">
<!-- Icons -->
<link rel="icon" href="/assets/images/icon.png">
<link rel="mask-icon" href="/assets/images/icon.svg" color="#009BCD">
<link rel="apple-touch-icon-precomposed" href="/assets/images/ScottPic.jpg">
<meta name="msapplication-TileColor" content="#ECEEF0">
<meta name="msapplication-TileImage" content="/assets/images/icon.png">
<!-- CSS -->
<link rel="stylesheet" href="/assets/styles/build/partials/global.css?2018-07-15">
<link rel="stylesheet" href="/assets/styles/build/partials/project.css?2018-07-15">
<link rel="stylesheet" href="{{asset "styles/build/portfolio.css"}}">
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header>
<div class="nav">
<a href="/"><span class="sr-text">Back to </span>Scott<span class="sr-text"> Smith homepage</span></a>
{{#is "index"}}<h1>{{t "Portfolio"}}</h1>{{else}}<h2><a href="{{@site.url}}">{{t "Portfolio"}}</a></h2>{{/is}}</div>
{{#is "index"}}
<div class="desc hire">
<p>{{{t "These are projects I have built both individually and in collaboration with talented teams. Feel free to contact me through any means available on my <a href='{homepagelink}'>home page</a> and by <a href='{emaillink}'>email</a>." homepagelink="/" emaillink="mailto:[email protected]"}}}</p>
</div>
{{/is}}
</header>
{{! Everything else gets inserted here }}
{{{body}}}
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<script async type="text/javascript" src="/assets/scripts/build/global.js?2018-07-15"></script>
{{#is "index, post, page"}}
<script async type="text/javascript" src="{{asset "scripts/build/portfolio.js"}}"></script>
{{/is}}
</body>
</html>