mirror of
https://github.com/graphql-python/graphene.git
synced 2025-04-27 13:03:41 +03:00
24 lines
795 B
HTML
24 lines
795 B
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
|
||
|
||
{% include meta.html %}
|
||
|
||
<!--[if lt IE 9]>
|
||
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||
<![endif]-->
|
||
|
||
<link rel="shortcut icon" href="{{ site.baseurl }}/favicon.png" />
|
||
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
|
||
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
|
||
<link href='https://fonts.googleapis.com/css?family=Raleway:400,600,200,100' rel='stylesheet' type='text/css'>
|
||
|
||
</head>
|
||
|
||
<body>
|
||
{{ content }}
|
||
{% include analytics.html %}
|
||
</body>
|
||
</html>
|