34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
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">
|
|
|
|
<title>{% if page.title %}{{ page.title }} | {% endif %}Go Ethereum</title>
|
|
<!-- debug root:{% include link.html url="/debug-path" %} -->
|
|
|
|
<link rel="icon" type="image/png" href="{% include link.html url=site.favicon %}" />
|
|
{% if layout.common-css %}
|
|
{% for css in layout.common-css %}
|
|
<link rel="stylesheet" href="{% include link.html url=css %}" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.css %}
|
|
{% for css in page.css %}
|
|
<link rel="stylesheet" href="{% include link.html url=css %}" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if layout.common-js %}
|
|
{% for js in layout.common-js %}
|
|
<script src="{% include link.html url=js %}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.js %}
|
|
{% for js in page.js %}
|
|
<script src="{% include link.html url=js %}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
</head> |