_config.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. # --- General options --- #
  2. # url is the full website URL
  3. # baseurl is the website's URL without the hostname
  4. # If you are building a simple GitHub user page (http://username.github.io) then use these settings:
  5. url: "https://bryanroessler.com"
  6. baseurl: ""
  7. # Name of website
  8. title: Bryan Roessler
  9. # Short description of your site
  10. description: Ordo ab chao
  11. # --- Navigation bar options --- #
  12. # List of links in the navigation bar
  13. navbar-links:
  14. Home: "https://bryanroessler.com"
  15. Blog: "https://blog.bryanroessler.com"
  16. CV: "https://cv.bryanroessler.com"
  17. Repos: "https://git.bryanroessler.com"
  18. Services:
  19. - Syncthing: "https://syncthing.bryanroessler.com"
  20. - Panel: "https://panel.bryanroessler.com"
  21. # Image to show in the navigation bar - image must be a square (width = height)
  22. # Remove this parameter if you don't want an image in the navbar
  23. avatar: "/img/me_square_sepia_small.jpg"
  24. # If you want to have an image logo in the top-left corner instead of the title text,
  25. # then specify the following parameter
  26. #title-img: "./img/me_square_sepia_small.jpg"
  27. # --- Background colour/image options --- #
  28. # Personalize the colors in your website. Colour values can be any valid CSS colour
  29. navbar-col: "#F5F5F5"
  30. navbar-text-col: "#404040"
  31. navbar-children-col: "#F5F5F5"
  32. page-col: "#FFFFFF"
  33. link-col: "#008AFF"
  34. hover-col: "#0085A1"
  35. footer-col: "#F5F5F5"
  36. footer-text-col: "#777777"
  37. footer-link-col: "#404040"
  38. # Alternatively, the navbar, footer, and page background can be set to use background images
  39. # instead of colour
  40. # navbar-img: "/img/bgimage.png"
  41. # footer-img: "/img/bgimage.png"
  42. # page-img: "/img/bgimage.png"
  43. # --- Footer options --- #
  44. # Change all these values or delete the ones you don't want.
  45. # Important: you must keep the "name" parameter, everything else you can remove
  46. author:
  47. name: Bryan Roessler
  48. # Select your active Social Network Links.
  49. # Uncomment the links you want to show in the footer and add your information to each link.
  50. # You can reorder the items to define the link order.
  51. # If you want to add a new link that isn't here, you'll need to also edit the file _data/SocialNetworks.yml
  52. social-network-links:
  53. rss: true
  54. email: "bryanroessler@gmail.com"
  55. # facebook: daattali
  56. github: "https://git.bryanroessler.com"
  57. # twitter: daattali
  58. # reddit: yourname
  59. # google-plus: +DeanAttali
  60. linkedin: bryan-roessler-phd-47535a60
  61. # xing: yourname
  62. # stackoverflow: "3943160/daattali"
  63. # snapchat: deanat78
  64. # instagram: deanat78
  65. # youtube: user/deanat78
  66. # spotify: yourname
  67. # telephone: +14159998888
  68. # steam: deanat78
  69. # twitch: yourname
  70. # yelp: yourname
  71. # Select which share links to show in posts
  72. share-links-active:
  73. twitter: false
  74. facebook: false
  75. google: false
  76. linkedin: false
  77. # How to display the link to the website in the footer
  78. # Remove this if you don't want a link in the footer
  79. url-pretty: "bryanroessler.com" # eg. "deanattali.com/beautiful-jekyll"
  80. # --- Web Statistics Section --- #
  81. # Fill in your Google Analytics ID to track your website using GA
  82. #google_analytics: ""
  83. # Google Tag Manager ID
  84. #gtm: ""
  85. # Matomo (aka Piwik) Web statistics
  86. # Uncomment the following section to enable Matomo. The opt-out parameter controls
  87. # whether or not you want to allow users to opt out of tracking.
  88. #matomo:
  89. # site_id: "9"
  90. # uri: "demo.wiki.pro"
  91. # opt-out: true
  92. # --- Comments --- #
  93. # Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments
  94. # disqus: ""
  95. # To use Facebook Comments, fill in a Facebook App ID
  96. # fb_comment_id: ""
  97. # --- Misc --- #
  98. # Facebook App ID
  99. # fb_app_id: ""
  100. # Excerpt Word Length
  101. # Truncates the excerpt to the specified number of words on the index page
  102. excerpt_length: 50
  103. # Character used to separate site title and description in HTML document title
  104. # and RSS feed title
  105. title-separator: "-"
  106. # --- Don't need to touch anything below here (but you can if you want) --- #
  107. # Output options (more information on Jekyll's site)
  108. timezone: "America/New_York"
  109. markdown: kramdown
  110. highlighter: rouge
  111. permalink: /:year-:month-:day-:title/
  112. paginate: 5
  113. kramdown:
  114. input: GFM
  115. # Default YAML values (more information on Jekyll's site)
  116. defaults:
  117. -
  118. scope:
  119. path: ""
  120. type: "posts"
  121. values:
  122. layout: "post"
  123. comments: true # add comments to all blog posts
  124. social-share: true # add social media sharing buttons to all blog posts
  125. -
  126. scope:
  127. path: "" # all files
  128. values:
  129. layout: "page"
  130. show-avatar: true
  131. # Use tags index page and make tags on each post clickable
  132. link-tags: true
  133. # Exclude these files from production site
  134. exclude:
  135. - Gemfile
  136. - Gemfile.lock
  137. - node_modules
  138. - vendor/bundle/
  139. - vendor/cache/
  140. - vendor/gems/
  141. - vendor/ruby/
  142. - CHANGELOG.md
  143. - CNAME
  144. - Dockerfile
  145. - LICENSE
  146. - README.md
  147. - Vagrantfile
  148. plugins:
  149. - jekyll-paginate
  150. - jekyll-sitemap