forked from gayanvirajith/gaya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (71 loc) · 3.46 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
---
layout: null
title: Your browser is not supported
---
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="lt-ie9 no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{% if page.browser_title %}{{ page.browser_title }}{% elsif page.title %}{{ page.title | append: ' - ' | append: site.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.meta_description %}{{ page.meta_description }}{% else %}{{ site.go.meta_description }}{% endif %}">
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<link rel="shortcut icon" href="{{ "/favicon.ico" | prepend: site.baseurl | prepend: site.baseurl }}">
{% comment %}
The meta tag below is useful when you want to verify the website to
Google web-master tools. Simply configure your site verification key on
_config.yml given by Google web-master tools.
{% endcomment %}
{% if site.google_webmaster_key %}
<meta name="google-site-verification" content="{{ site.google_webmaster_key }}" />
{% endif %}
<link rel="stylesheet" href="{{ '/assets/css/browser-support.css' | prepend: site.baseurl | prepend: site.url }}">
<!-- IE Fixes -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
{% include style.html %}
</head>
<body>
<div class="wrap">
<div class="container content">
<img src="{{ site.baseurl }}/assets/images/logo-big.png">
<h1>{{ page.title }}</h1>
<p>
We are sorry but the website does not support Internet
Explorer 6, 7 and 8.
To get the best experience on
<a href="{{ '' | prepend: site.baseurl | prepend: site.url | append: '/' }}">
<strong>{{ site.url | append: site.baseurl }}</strong>
</a> we recommend using latest version of
<a href="https://www.google.com/chrome">Chrome</a>,
<a href="https://www.mozilla.org/en-US/firefox/new/">Firefox</a>,
<a href="http://www.apple.com/safari/">Safari</a>,
<a href="http://www.opera.com/">Opera</a> Or
<a href="http://windows.microsoft.com/en-us/internet-explorer/download-ie">IE</a>.
</p>
<p>Thanks</p>
</div>
</div>
<script type="text/javascript">
/* To avoid render blocking css */
var cb = function() {
var l = document.createElement('link'); l.rel = 'stylesheet';
l.href = 'http://fonts.googleapis.com/css?family=Open+Sans';
var h = document.getElementsByTagName('head')[0]; h.parentNode.insertBefore(l, h);
};
var raf = requestAnimationFrame || mozRequestAnimationFrame ||
webkitRequestAnimationFrame || msRequestAnimationFrame;
if (raf) raf(cb);
else window.addEventListener('load', cb);
</script>
</body>
</html>