Move wiki pages to github pages (#18497)

This commit is contained in:
Adam Schmideg
2019-03-21 10:35:00 +01:00
committed by Felix Lange
parent 02c039f102
commit 40eb803de1
83 changed files with 10461 additions and 186 deletions

33
_includes/head.html Normal file
View 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
View File

@ -0,0 +1 @@
{{ include.url | remove: ".html" | prepend: site.baseurl | replace: '//', '/' }}

1
_includes/title.html Normal file
View File

@ -0,0 +1 @@
{{ include.doc.title | remove_first: include.coll.label | remove_first: "/ " }}