Move wiki pages to github pages (#18497)
This commit is contained in:
committed by
Felix Lange
parent
02c039f102
commit
40eb803de1
33
_includes/head.html
Normal file
33
_includes/head.html
Normal file
@ -0,0 +1,33 @@
|
||||
<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>
|
||||
|
||||
<link rel="icon" type="image/png" href="{{ site.favicon | prepend: site.baseurl | replace: '//', '/'}}" />
|
||||
{% if layout.common-css %}
|
||||
{% for css in layout.common-css %}
|
||||
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if page.css %}
|
||||
{% for css in page.css %}
|
||||
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if layout.common-js %}
|
||||
{% for js in layout.common-js %}
|
||||
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if page.js %}
|
||||
{% for js in page.js %}
|
||||
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
</head>
|
1
_includes/link.html
Normal file
1
_includes/link.html
Normal file
@ -0,0 +1 @@
|
||||
{{ include.url | remove: ".html" | prepend: site.baseurl | replace: '//', '/' }}
|
1
_includes/title.html
Normal file
1
_includes/title.html
Normal file
@ -0,0 +1 @@
|
||||
{{ include.doc.title | remove_first: include.coll.label | remove_first: "/ " }}
|
Reference in New Issue
Block a user