cv-website

Personal website and CV
git clone https://git.in0rdr.ch/cv-website.git
Log | Files | Refs | Pull requests | README | LICENSE

_config.yml (1362B)


      1 # Site settings
      2 title_left    : "CV"
      3 title_txt     : "txt"
      4 title_pdf     : "pdf"
      5 description   : "Andreas Gruhler"
      6 keywords      : "in0rdr, Andreas, Gruhler, CV"
      7 url           : https://cv.in0rdr.ch # site url
      8 baseurl       : "" # apply repo name like "/myproject" if used under gh-pages branch, else (under master branch) just leave empty/blank
      9 cover         : "" # image uri like logo/cover image for site seo
     10 
     11 google_analytics  : UA-XXXXX-XX
     12 twitter_username  : ""
     13 comments_enabled  : false # if enabled (set to true), please provide your disqus_username
     14 disqus_shortname  : ""
     15 postshare_enabled : false
     16 
     17 # Build settings
     18 permalink   : /:year/:title/
     19 markdown    : kramdown
     20 highlighter : rouge
     21 
     22 source      : ./
     23 destination : ./_site
     24 
     25 # Sass configuration
     26 sass:
     27   sass_dir  : assets/scss
     28   style     : compressed # expanded
     29 
     30 # Author settings
     31 author:
     32   name     : "Andreas Gruhler"
     33 
     34 plugins:
     35   - jekyll-sitemap
     36   - bourbon
     37   - jekyll-paginate
     38   - jekyll-octicons
     39 
     40 # navbar pages
     41 navbar:
     42   - slug : about
     43     title: About
     44   - slug : blog
     45     title: Blog
     46 
     47 exclude:
     48   - "gulp"
     49   - "node_modules"
     50   - "bower"
     51   - "bower_components"
     52   - "config.rb"
     53   - "src"
     54   - "Gemfile"
     55   - "Gemfile.lock"
     56   - ".rvmrc"
     57   - ".rbenv-version"
     58   - "package.json"
     59   - "gulpfile.js"
     60   - "README.md"
     61   - "Rakefile"
     62   - "changelog.md"
     63   - "script"
     64   - "vendor"
     65   - "thinkspace.gemspec"