diff options
author | HombreLaser <sebastian-440@live.com> | 2023-08-27 02:40:08 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-08-27 02:40:08 -0600 |
commit | ac6772f292a83217e10e38ba853c76b5666133e0 (patch) | |
tree | d0d4eb27d9482dc275d75f48a2ca029d825e52a6 /_config.yml |
Commit inicial
Diffstat (limited to '_config.yml')
-rw-r--r-- | _config.yml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..277b13a --- /dev/null +++ b/_config.yml @@ -0,0 +1,40 @@ +# Jekyll configuration + +name: My blog +description: A jekyll theme + +# url is currently only used only for the RSS feed in feed.xml +url: https://scotte.github.io/jekyll-clean + +# 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: /jekyll-clean + +# These can be '' to hide the Github or Gitlab nav buttons +github: 'scotte/jekyll-clean' +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: true + +# 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: '' + +permalink: /:year/:month/:title +paginate: 3 + +highlighter: rouge +markdown: kramdown +gems: ['jekyll-paginate'] + +exclude: ['README.md', 'LICENSE'] |