/ _config.yml
_config.yml
1 # Welcome to Jekyll! 2 # 3 # This config file is meant for settings that affect your whole blog, values 4 # which you are expected to set up once and rarely edit after that. If you find 5 # yourself editing this file very often, consider using Jekyll's data files 6 # feature for the data you need to update frequently. 7 # 8 # For technical reasons, this file is *NOT* reloaded automatically when you use 9 # 'bundle exec jekyll serve'. If you change this file, please restart the server process. 10 11 # Site settings 12 # These are used to personalize your new site. If you look in the HTML files, 13 # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. 14 # You can create any custom variable you would like, and they will be accessible 15 # in the templates via {{ site.myvariable }}. 16 title: Ethereum Improvement Proposals 17 description: >- 18 Ethereum Improvement Proposals (EIPs) describe standards for the Ethereum 19 platform, including core protocol specifications, client APIs, and contract 20 standards. 21 url: "https://eips.ethereum.org" 22 twitter_username: ethereum 23 github_username: ethereum 24 header_pages: 25 - all.html 26 - core.html 27 - networking.html 28 - interface.html 29 - erc.html 30 - meta.html 31 - informational.html 32 twitter: 33 card: summary 34 username: ethereum 35 36 # Build settings 37 markdown: kramdown 38 theme: minima 39 kramdown: 40 parse_block_html: false 41 # This is the default, but be explicit as some EIPs depend on it 42 auto_ids: true 43 # This is to ensure more determistic behaviour 44 auto_id_stripping: true 45 46 permalink: /:slug 47 48 defaults: 49 - 50 scope: 51 path: "EIPS" 52 values: 53 layout: "eip" 54 55 exclude: 56 - Gemfile 57 - Gemfile.lock 58 - node_modules 59 - vendor/bundle/ 60 - vendor/cache/ 61 - vendor/gems/ 62 - vendor/ruby/ 63 - eip-template.md 64 - ISSUE_TEMPLATE.md 65 - PULL_REQUEST_TEMPLATE.md 66 - README.md