-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (118 loc) · 5.73 KB
/
index.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!--
Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<!-- ANALYTICS
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73943527-16', 'auto');
ga('send', 'pageview');
</script> -->
<!-- SERVICE WORKER
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js');
});
}
</script> -->
<!-- TITILE -->
<title>Mark Carrot</title>
<!-- THEME COLOR -->
<meta name="theme-color" content="#2a3f54">
<!-- Webcomponents-loader / check and load any polyfills your browser needs -->
<script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<!-- BASE -->
<base href="/">
<!-- CANONICAL -->
<link rel="canonical" href="https://markcarrot.com/" />
<!-- MANIFEST -->
<link rel="manifest" href="manifest.json">
<!-- AUTHOR -->
<meta name="author" content="Modern Projects">
<!-- TIME -->
<meta http-equiv="If-Modified-Since" content="Tue, 01 May 2018 12:00:59 GMT" />
<!-- HTTPS REFERRER TAG-->
<meta name="referrer" content="no-referrer-when-downgrade">
<!-- DESCRIPTION -->
<meta name="description" content="Mark-Carrot Photography, displays Warszawa, Poland 1980's">
<!-- KEYWORDS -->
<meta name="keywords" content="photography, camera, light">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Mark-Carrot">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Mark-Carrot">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="/images/manifest/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/manifest/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="/images/manifest/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/manifest/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="/images/manifest/icon-192x192.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="/images/manifest/icon-144x144.png">
<meta name="msapplication-TileColor" content="#3f51b5">
<meta name="msapplication-tap-highlight" content="no">
<!--TWITTER -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@ ">
<meta name="twitter:creator" content="@ ">
<meta name="twitter:title" content="Mark-Carrot Photography">
<meta name="twitter:description" content="Photography from Warsza">
<meta name="twitter:image" content="https://pixabay.com/p-158268/?no_redirect">
<script> window.Polymer = {rootPath: '/'}; </script>
<!-- OPEN SANS CONDENSED -->
<link href="https://fonts.googleapis.com/css?family=Archivo+Narrow:700" rel="stylesheet">
<!-- JSON -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebApplication",
"datePublished": "2018-04-04T11:10:59Z",
"name": "Mark-Carrot",
"about": "Photography, Warszawa, Poland",
"operatingSystem": "HTML 5",
"applicationCategory": "Photography",
"applicationSubCategory": "Mark Carrot",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "5"
},
"offer": "$0.00"
}
</script>
<style>
body {
color: #303030;
font-family: 'Archivo Narrow', sans-serif;
background-color: #e8e8e8;
margin: 0px;
}
</style>
</head>
<body>
<!-- APPLICATION SHELL ELEMENT -->
<application-shell></application-shell>
<!-- NO-SCRIPT -->
<noscript>
This website requires JavaScript to be turned on!
</noscript>
<!-- LOAD APPLICATION SHELL -->
<script type="module" src="src/application-shell.js" async></script>
</body>
</html>