mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
Add beautiful-jekyll theme using external assets
This commit is contained in:
parent
6fc291a44e
commit
9afb5a27d3
2 changed files with 42 additions and 1 deletions
|
|
@ -1,6 +1,12 @@
|
||||||
repository: ethereum/go-ethereum
|
repository: ethereum/go-ethereum
|
||||||
|
#remote_theme: Phlow/feeling-responsive
|
||||||
|
remote_theme: daattali/beautiful-jekyll
|
||||||
exclude:
|
exclude:
|
||||||
- Gemfile
|
- Gemfile
|
||||||
- Gemfile.lock
|
- Gemfile.lock
|
||||||
- .gitignore
|
- .gitignore
|
||||||
|
|
||||||
|
layout: page
|
||||||
|
navbar-links:
|
||||||
|
Home: ""
|
||||||
|
Documents: "/docs"
|
||||||
|
|
|
||||||
35
_layouts/base.html
Normal file
35
_layouts/base.html
Normal 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>
|
||||||
Loading…
Reference in a new issue