diff options
author | HombreLaser <buran@silosneeded.com> | 2024-05-05 19:51:24 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-05-05 19:51:24 -0600 |
commit | 30c268fdabca62c7c4df6e8db7426666fc2be66a (patch) | |
tree | 8042bfd5d1ebee1ef492b9f1f8cac0e1c4c22438 /_config.yml | |
parent | bf2c057eece0e777036110526eb488b364dff108 (diff) |
Change interface
Diffstat (limited to '_config.yml')
-rw-r--r-- | _config.yml | 105 |
1 files changed, 51 insertions, 54 deletions
diff --git a/_config.yml b/_config.yml index 4578913..b32db36 100644 --- a/_config.yml +++ b/_config.yml @@ -1,60 +1,57 @@ -# Jekyll configuration - -name: Silos Needed -description: Intereses varios - -# url is currently only used only for the RSS feed in feed.xml -url: https://silosneeded.com - -# baseurl will often be '', but for a project page on gh-pages, it needs to -# be the project name. -# *** IMPORTANT: If your local "jekyll serve" throws errors change this to '' or -# run it like so: jekyll serve --baseurl='' -baseurl: '' - -# These can be '' to hide the Github or Gitlab nav buttons -github: '' -gitlab: '' - -# Set this to your UA-# value, or '' to disable the block completely -gaaccount: '' - -# The 'comments' setting enables comments. You'll need to select either -# disqus or isso below to choose a comment system. Individual posts can -# override 'comments' to disable on a post-by-post basis. -comments: false - -# Set this to your public isso URL to enable comments via isso. Set to '' to disable isso. -isso: '' - -# Set this to your disqus shortname to enable comments via disqus. Set to '' to disable disqus. -disqus: '' - -defaults: - - - scope: - path: "" - type: "posts" - values: - layout: "post" - author: "hombrelaser" - - - scope: - path: "" - type: "drafts" - values: - layout: "post" - author: "hombrelaser" - -permalink: /:year/:month/:title -paginate: 5 - -highlighter: rouge -markdown: kramdown +# Welcome to Jekyll! +# +# This config file is meant for settings that affect your whole blog, values +# which you are expected to set up once and rarely edit after that. If you find +# yourself editing this file very often, consider using Jekyll's data files +# feature for the data you need to update frequently. +# +# For technical reasons, this file is *NOT* reloaded automatically when you use +# 'bundle exec jekyll serve'. If you change this file, please restart the server process. +# +# If you need help with YAML syntax, here are some quick references for you: +# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml +# https://learnxinyminutes.com/docs/yaml/ +# +# Site settings +# These are used to personalize your new site. If you look in the HTML files, +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. +# You can create any custom variable you would like, and they will be accessible +# in the templates via {{ site.myvariable }}. + +title: Silos Needed +email: buran@silosneeded.com +description: >- # this means to ignore newlines until "baseurl:" + Silos Needed TM +baseurl: "" # the subpath of your site, e.g. /blog +url: "" # the base hostname & protocol for your site, e.g. http://example.com +pagination_slice: 3 + +# Exclude from processing. +# The following items will not be processed, by default. +# Any item listed under the `exclude:` key here will be automatically added to +# the internal "default list". +# +# Excluded items can be processed by explicitly listing the directories or +# their entries' file path in the `include:` list. +# +# exclude: +# - .sass-cache/ +# - .jekyll-cache/ +# - gemfiles/ +# - Gemfile +# - Gemfile.lock +# - node_modules/ +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ plugins: + - jekyll-feed - jekyll-paginate - jekyll-multiple-languages-plugin - jekyll-seo-tag -exclude: ['README.md', 'LICENSE'] +permalink: /:year/:month/:title +paginate: 5 +paginate_path: "/page:num" languages: ['es', 'en'] |