_config.yml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. # --- Basic 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. # Your name to show in the footer
  12. author: Bryan Roessler
  13. # --- List of links in the navigation bar --- #
  14. navbar-links:
  15. Home: "https://bryanroessler.com"
  16. Blog: "https://blog.bryanroessler.com"
  17. CV: "https://cv.bryanroessler.com"
  18. Git: "https://git.bryanroessler.com"
  19. Services:
  20. - Syncthing: "https://syncthing.bryanroessler.com"
  21. - Panel: "https://panel.bryanroessler.com"
  22. # --- Logo --- #
  23. # Image to show in the navigation bar - works best with a square image
  24. # Remove this parameter if you don't want an image in the navbar
  25. avatar: "/assets/img/me_square_sepia_small.jpg"
  26. # By default, the image is cut into a circle. You can disable this behaviour by setting 'round-avatar: false'
  27. round-avatar: true
  28. # If you want to have an image logo in the top-left corner instead of the title text,
  29. # then specify the following parameter
  30. #title-img: "./img/me_square_sepia_small.jpg"
  31. # --- Footer options --- #
  32. # Select the social network links that you want to show in the footer.
  33. # Uncomment the links you want to show and add your information to each one.
  34. # If you don't want to show a link to an RSS feed, set rss to "false".
  35. # If you want to add a new link that isn't here, you'll need to also edit the file _data/SocialNetworks.yml
  36. social-network-links:
  37. email: "bryanroessler@gmail.com"
  38. # facebook: daattali
  39. github: "https://git.bryanroessler.com"
  40. # twitter: daattali
  41. rss: true
  42. # reddit: yourname
  43. # google-plus: +DeanAttali
  44. linkedin: bryan-roessler-phd-47535a60
  45. # xing: yourname
  46. # stackoverflow: "3943160/daattali"
  47. # snapchat: deanat78
  48. # instagram: deanat78
  49. # youtube: user/deanat78
  50. # spotify: yourname
  51. # telephone: +14159998888
  52. # steam: deanat78
  53. # twitch: yourname
  54. # yelp: yourname
  55. # telegram: yourname
  56. # calendly: yourname
  57. # mastodon: instance.url/@username
  58. # ORCID: your ORCID ID
  59. # google-scholar: your google scholar
  60. # --- General options --- #
  61. # Select which social network share links to show in posts
  62. share-links-active:
  63. twitter: false
  64. facebook: false
  65. linkedin: false
  66. vk: false
  67. # How to display the link to your website in the footer
  68. # Remove this if you don't want a link in the footer
  69. url-pretty: "bryanroessler.com"
  70. # Create a "tags" index page and make tags on each post clickable
  71. link-tags: true
  72. # Excerpt Word Length - Truncates the excerpt to the specified number of words on the index page
  73. excerpt_length: 50
  74. # --- Colours / background image --- #
  75. # Personalize the colors in your website. Colour values can be any valid CSS colour
  76. navbar-col: "#F5F5F5"
  77. navbar-text-col: "#404040"
  78. navbar-border-col: "#EAEAEA"
  79. page-col: "#FFFFFF"
  80. link-col: "#008AFF"
  81. hover-col: "#0085A1"
  82. footer-col: "#F5F5F5"
  83. footer-text-col: "#777777"
  84. footer-link-col: "#404040"
  85. # Alternatively, the navbar, footer, and page background can be set to use background images
  86. # instead of colour
  87. #navbar-img: "/assets/img/bgimage.png"
  88. #footer-img: "/assets/img/bgimage.png"
  89. #page-img: "/assets/img/bgimage.png"
  90. # --- Web Statistics Section --- #
  91. # Fill in your Google Analytics ID to track your website using GA
  92. #google_analytics: ""
  93. # Google Tag Manager ID
  94. #gtm: ""
  95. # Matomo (aka Piwik) Web statistics
  96. # Uncomment the following section to enable Matomo. The opt-out parameter controls
  97. # whether or not you want to allow users to opt out of tracking.
  98. #matomo:
  99. # site_id: "9"
  100. # uri: "demo.wiki.pro"
  101. # opt-out: true
  102. # --- Comments --- #
  103. # To use Disqus comments, sign up to https://disqus.com and fill in your Disqus shortname (NOT the userid)
  104. #disqus: ""
  105. # To use Facebook Comments, create a Facebook app and fill in the Facebook App ID
  106. #fb_comment_id: ""
  107. # To use Utterances comments: (0) uncomment the following section, (1) fill in
  108. # "repository" (make sure the repository is public), (2) Enable Issues in your repository,
  109. # (3) Install the Utterances app in your repository https://github.com/apps/utterances
  110. # See more details about the parameters below at https://utteranc.es/
  111. #utterances:
  112. # repository: # GitHub username/repository eg. "daattali/beautiful-jekyll"
  113. # issue-term: title # Mapping between blog posts and GitHub issues
  114. # theme: github-light # Utterances theme
  115. # label: blog-comments # Label that will be assigned to GitHub Issues created by Utterances
  116. # To use Staticman comments, first invite `staticmanlab` as a collaborator to your repository and
  117. # accept the invitation by going to `https://staticman3.herokuapp.com/v3/connect/github/<username>/<repo-name>`.
  118. # Then uncomment the following section and fill in "repository" and "branch".
  119. # If you want to use reCaptcha for staticman (optional for spam protection), then fill
  120. # in the "siteKey" and "secret" parameters below and also in `staticman.yml`.
  121. # See more details at https://staticman.net/
  122. #staticman:
  123. # repository : # GitHub username/repository eg. "daattali/beautiful-jekyll"
  124. # branch : master # If you're not using `master` branch, then you also need to update the `branch` parameter in `staticman.yml`
  125. # endpoint : # (optional) URL of your own deployment, with a trailing slash eg. https://<your-api>/v3/entry/github/ (will fallback to a public GitLab instance)
  126. # reCaptcha:
  127. # siteKey : # Use your own site key, you need to apply for one on Google
  128. # secret : # ENCRYPT your password by going to https://staticman3.herokuapp.com/v3/encrypt/<your-site-secret>
  129. # --- Misc --- #
  130. # Character used to separate site title and description in HTML document title
  131. # and RSS feed title
  132. title-separator: "-"
  133. # Ruby Date Format to show dates of posts
  134. date_format: "%B %-d, %Y"
  135. # Facebook App ID
  136. #fb_app_id: ""
  137. # --- You don't need to touch anything below here (but you can if you want) --- #
  138. # Output options (more information on Jekyll's site)
  139. timezone: "America/New_York"
  140. markdown: kramdown
  141. highlighter: rouge
  142. permalink: /:year-:month-:day-:title/
  143. paginate: 5
  144. kramdown:
  145. input: GFM
  146. # Default YAML values (more information on Jekyll's site)
  147. defaults:
  148. -
  149. scope:
  150. path: ""
  151. type: "posts"
  152. values:
  153. layout: "post"
  154. comments: true # add comments to all blog posts
  155. social-share: true # add social media sharing buttons to all blog posts
  156. readtime: false # add estimated reading time on all blog posts
  157. -
  158. scope:
  159. path: "" # all files
  160. values:
  161. layout: "page"
  162. show-avatar: true
  163. # Exclude these files from production site
  164. exclude:
  165. - Gemfile
  166. - Gemfile.lock
  167. - node_modules
  168. - vendor/bundle/
  169. - vendor/cache/
  170. - vendor/gems/
  171. - vendor/ruby/
  172. - CHANGELOG.md
  173. - CNAME
  174. - Dockerfile
  175. - LICENSE
  176. - README.md
  177. - Vagrantfile
  178. - LICENSE
  179. - screenshot.png
  180. - docs/
  181. plugins:
  182. - jekyll-paginate
  183. - jekyll-sitemap