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