2019-03-21 10:35:00 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<title>{% if page.title %}{{ page.title }} | {% endif %}Go Ethereum</title>
|
2019-03-22 16:19:33 +01:00
|
|
|
<!-- debug root:{% include link.html url="/debug-path" %} -->
|
2019-03-21 10:35:00 +01:00
|
|
|
|
2019-03-21 15:33:28 +01:00
|
|
|
<link rel="icon" type="image/png" href="{% include link.html url=site.favicon %}" />
|
2019-03-21 10:35:00 +01:00
|
|
|
{% if layout.common-css %}
|
|
|
|
{% for css in layout.common-css %}
|
2019-03-22 15:55:03 +01:00
|
|
|
<link rel="stylesheet" href="{% include link.html url=css %}" />
|
2019-03-21 10:35:00 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.css %}
|
|
|
|
{% for css in page.css %}
|
2019-03-22 15:55:03 +01:00
|
|
|
<link rel="stylesheet" href="{% include link.html url=css %}" />
|
2019-03-21 10:35:00 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if layout.common-js %}
|
|
|
|
{% for js in layout.common-js %}
|
2019-03-21 15:33:28 +01:00
|
|
|
<script src="{% include link.html url=js %}"></script>
|
2019-03-21 10:35:00 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.js %}
|
|
|
|
{% for js in page.js %}
|
2019-03-21 15:33:28 +01:00
|
|
|
<script src="{% include link.html url=js %}"></script>
|
2019-03-21 10:35:00 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</head>
|