-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage-viewer.html
More file actions
50 lines (44 loc) · 2.1 KB
/
image-viewer.html
File metadata and controls
50 lines (44 loc) · 2.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127556846-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127556846-1');
</script>
<link href="css/base.css" type="text/css" rel="stylesheet"/>
<script src="scripts/jquery-3.3.1.min.js" type="text/javascript"></script>
<script src="scripts/image-loader.js" type="text/javascript"></script>
<script>
var directory = location.href.substr(location.href.lastIndexOf('?') + 1);
$(document).ready(function() {
$('body').append('<div class="image-loader image-fill image-fit" image-src="' + directory + '" image-pos="top" style="height: 100%;"></div>');
loadContentForElement($('.image-loader'));
});
</script>
<!-- Metadata -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Image | Josh Ford</title>
<meta name="description" content="The personal website of Josh Ford">
<meta name="viewport" content="width=deivce-width, initial-scale=1">
<meta property="og:title" content="Image"/>
<meta property="og:site_name" content="Josh Ford" />
<meta property="og:description" content="The personal website of Josh Ford
" />
<!-- Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="apple-mobile-web-app-title" content="Josh Ford">
<meta name="application-name" content="Josh Ford">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="theme-color" content="#f4f4f4">
</head>
<body style="background: white;" class="image-nav-viewer">
<div class="image-nav-bar blurred-background"></div>
</body>
</html>