|
| 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 | +# If you need help with YAML syntax, here are some quick references for you: |
| 12 | +# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml |
| 13 | +# https://learnxinyminutes.com/docs/yaml/ |
| 14 | +# |
| 15 | +# Site settings |
| 16 | +# These are used to personalize your new site. If you look in the HTML files, |
| 17 | +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. |
| 18 | +# You can create any custom variable you would like, and they will be accessible |
| 19 | +# in the templates via {{ site.myvariable }}. |
| 20 | + |
| 21 | +title:"RustPython" |
| 22 | +description:"An open source Python-3 (CPython >= 3.5.0) Interpreter written in Rust 🐍 😱 🤘" |
| 23 | +baseurl:"/website"# the subpath of your site, e.g. /blog |
| 24 | +url:"https://mireille-raad.github.io/rustpython.github.io/website"# the base hostname & protocol for your site, e.g. http://example.com |
| 25 | +github_username:RustPython |
| 26 | +disclaimer:"The disclaimer not to use this in production. Update this in the config.yml file at the root." |
| 27 | +github:https://github.com/RustPython/RustPython/ |
| 28 | +docs:https://github.com/RustPython/docs/ |
| 29 | +gitter:https://gitter.im/rustpython/Lobby |
| 30 | +show_excerpts:true |
| 31 | +contributor_excerpt:"edit me in config.yml file at the root folder." |
| 32 | + |
| 33 | +navigation: |
| 34 | + -title:Blog |
| 35 | +url:"blog" |
| 36 | + -title:Docs |
| 37 | +url:https://github.com/RustPython/docs/ |
| 38 | + -title:GitHub |
| 39 | +url:https://github.com/RustPython/RustPython/ |
| 40 | + -title:Gitter |
| 41 | +url:"https://gitter.im/rustpython/Lobby" |
| 42 | + |
| 43 | +# Build settings |
| 44 | +theme:minima |
| 45 | +plugins: |
| 46 | + -jekyll-feed |
| 47 | + |
| 48 | +# Exclude from processing. |
| 49 | +# The following items will not be processed, by default. |
| 50 | +# Any item listed under the `exclude:` key here will be automatically added to |
| 51 | +# the internal "default list". |
| 52 | +# |
| 53 | +# Excluded items can be processed by explicitly listing the directories or |
| 54 | +# their entries' file path in the `include:` list. |
| 55 | +# |
| 56 | +# exclude: |
| 57 | +# - .sass-cache/ |
| 58 | +# - .jekyll-cache/ |
| 59 | +# - gemfiles/ |
| 60 | +# - Gemfile |
| 61 | +# - Gemfile.lock |
| 62 | +# - node_modules/ |
| 63 | +# - vendor/bundle/ |
| 64 | +# - vendor/cache/ |
| 65 | +# - vendor/gems/ |
| 66 | +# - vendor/ruby/ |