Add beautiful-jekyll theme using external assets

This commit is contained in:
Adam Schmideg 2018-12-18 12:01:08 +01:00
parent 6fc291a44e
commit 9afb5a27d3
2 changed files with 42 additions and 1 deletions

View file

@ -1,6 +1,12 @@
repository: ethereum/go-ethereum
#remote_theme: Phlow/feeling-responsive
remote_theme: daattali/beautiful-jekyll
exclude:
- Gemfile
- Gemfile.lock
- .gitignore
layout: page
navbar-links:
Home: ""
Documents: "/docs"

35
_layouts/base.html Normal file
View file

@ -0,0 +1,35 @@
---
common-css:
- "https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
- "/css/bootstrap-social.css"
- "https://deanattali.com/css/main.css"
common-ext-css:
- "//maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css"
common-googlefonts:
- "Lora:400,700,400italic,700italic"
- "Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800"
common-js:
- "https://code.jquery.com/jquery-1.12.4.min.js"
- "https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
- "https://deanattali.com/js/main.js"
---
<!DOCTYPE html>
<html lang="en">
<!-- Beautiful Jekyll | MIT license | Copyright Dean Attali 2016 -->
{% include head.html %}
<body>
{% include gtm_body.html %}
{% include nav.html %}
{{ content }}
{% include footer.html %}
{% include footer-scripts.html %}
</body>
</html>