-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (64 loc) · 3.04 KB
/
index.html
File metadata and controls
72 lines (64 loc) · 3.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE HTML>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="_/css/style.css" />
<!--
See http://ogp.me/ for configuration options.
-->
<meta property="og:site_name" content="<?php bloginfo("name"); ?>" />
<meta property="og:title" content="<?php the_title(); ?>" />
<meta property="og:url" content="<?php the_permalink(); ?>" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<!--
If the page is an article, include this.]
<meta property="og:type" content="article" />
-->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="" />
<meta name="twitter:site" content="" />
<title>Page Title | Site Name</title>
<meta name="description" content="Your description here.">
<!-- See http://schema.org/ for configuration options. -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"name": "<?php bloginfo("name"); ?>",
"@type": "Organization",
"logo": "_/icons/apple-icon-180x180.png" // Can be replaced with company logo.
"url": "<?php echo site_url(); ?>"//,
// "sameAs": [
// "FACEBOOK PAGE URL HERE",
// "TWITTER ACCOUNT",
// "PUCLIC LINKEDIN PAGE",
// "ETC"
// ]
}
</script>
<!-- Favions generated at http://www.favicon-generator.org/ - generate your own and place in the icons directory. -->
<link rel="apple-touch-icon" sizes="57x57" href="_/icons/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="_/icons/apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="_/icons/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="_/icons/apple-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="_/icons/apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="_/icons/apple-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="_/icons/apple-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="_/icons/apple-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="_/icons/apple-icon-180x180.png" />
<link rel="icon" type="image/png" sizes="192x192" href="_/icons/android-icon-192x192.png" />
<link rel="icon" type="image/png" sizes="32x32" href="_/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="_/icons/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="_/icons/favicon-16x16.png" />
<link rel="manifest" href="_/icons/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="_/icons/ms-icon-144x144.png" />
<meta name="theme-color" content="#ffffff" />
<script src="_/js/dist/modernizr.js"></script>
</head>
<body>
<script src="_/js/dist/site-min.js"></script>
</body>
</html>