70 lines
2.8 KiB
HTML
70 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- Standard -->
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
|
|
<meta name="description" content="{{ site.description }}">
|
|
|
|
<!-- Twitter Card -->
|
|
<meta name='twitter:card' content='summary_large_image'>
|
|
<meta name='twitter:site' content='{{ site.twitter_username }}'>
|
|
<meta name='twitter:title' content='{{ site.tagline }}'>
|
|
<meta name='twitter:description' content="{{ site.description }}">
|
|
<meta name='twitter:image:src' content='{{ site.card_image }}'>
|
|
<meta name='twitter:domain' content='www.algolia.com'>
|
|
<meta name="twitter:label1" content="Speed">
|
|
<meta name="twitter:data1" content="Blazzing Fast ⚡⚡⚡">
|
|
<meta name="twitter:label2" content="Price">
|
|
<meta name="twitter:data2" content="FREE!">
|
|
|
|
<!-- OpenGraph -->
|
|
<meta property='og:title' content='{{ site.tagline }}'>
|
|
<meta property='og:site_name' content='Algolia Community'>
|
|
<meta property='og:url' content='https://www.algolia.com/'>
|
|
<meta property='og:description' content="{{ site.description }}">
|
|
<meta property='og:image' content='{{ site.card_image }}'>
|
|
<meta property="og:locale" content="en_US">
|
|
<meta property="og:type" content="website">
|
|
|
|
<!-- Favicons -->
|
|
<link rel="icon" type="image/png" href="/img/favicon/zeplin-192x192.png" sizes="192x192">
|
|
<link rel="icon" type="image/png" href="/img/favicon/favicon-96x96.png" sizes="96x96">
|
|
<link rel="icon" type="image/png" href="/img/favicon/favicon-32x32.png" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="/img/favicon/favicon-16x16.png" sizes="16x16">
|
|
|
|
<!-- Fonts -->
|
|
<link rel="stylesheet" media="screen" href="//fonts.googleapis.com/css?family=Raleway:300,800" />
|
|
<link rel="stylesheet" media="screen" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600" />
|
|
|
|
<link rel="stylesheet" media="screen" href="{{ "/css/main.css" | prepend: site.baseurl }}" />
|
|
<link rel="stylesheet" media="screen" href="//cdn.jsdelivr.net/fontawesome/4.4.0/css/font-awesome.min.css" />
|
|
</head>
|
|
|
|
<body>
|
|
{% include header.html %}
|
|
|
|
{{ content }}
|
|
|
|
{%if page.noFooter == null %}
|
|
{% include footer.html %}
|
|
{% endif %}
|
|
|
|
<script src="//cdn.jsdelivr.net/jquery/2.1/jquery.min.js"></script>
|
|
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
|
|
|
|
{% if site.env == 'development' %}
|
|
<script>
|
|
document.write('\x3Cscript src="//' + window.location.hostname +':35731/livereload.js">\x3C/script>');
|
|
</script>
|
|
{% endif %}
|
|
|
|
{% include marketing.html %}
|
|
|
|
{% contentblock site-footer %}
|
|
</body>
|
|
|
|
</html>
|