_config.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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://blog.bryanroessler.com"
  6. baseurl: ""
  7. # If you are building a GitHub project page then use these settings:
  8. #url: "http://username.github.io/projectname"
  9. #baseurl: "/projectname"
  10. # Of course don't forget to change the username and projectname to YOUR username and project
  11. # Name of website
  12. title: Bryan Roessler
  13. # Short description of your site
  14. description: Ordo ab chao
  15. # --- Navigation bar options --- #
  16. # List of links in the navigation bar
  17. navbar-links:
  18. Home: "https://bryanroessler.com"
  19. CV: "https://cv.bryanroessler.com"
  20. Repos: "https://git.bryanroessler.com"
  21. Services:
  22. - Syncthing: "https://syncthing.bryanroessler.com"
  23. - Panel: "https://panel.bryanroessler.com"
  24. # Image to show in the navigation bar - image must be a square (width = height)
  25. # Remove this parameter if you don't want an image in the navbar
  26. avatar: "/img/me_square_sepia_small.jpg"
  27. # If you want to have an image logo in the top-left corner instead of the title text,
  28. # then specify the following parameter
  29. #title-img: "./img/me_square_sepia_small.jpg"
  30. # --- Background colour/image options --- #
  31. # Personalize the colors in your website. Colour values can be any valid CSS colour
  32. navbar-col: "#F5F5F5"
  33. navbar-text-col: "#404040"
  34. navbar-children-col: "#F5F5F5"
  35. page-col: "#FFFFFF"
  36. link-col: "#008AFF"
  37. hover-col: "#0085A1"
  38. footer-col: "#F5F5F5"
  39. footer-text-col: "#777777"
  40. footer-link-col: "#404040"
  41. # Alternatively, the navbar, footer, and page background can be set to use background images
  42. # instead of colour
  43. # navbar-img: "/img/bgimage.png"
  44. # footer-img: "/img/bgimage.png"
  45. # page-img: "/img/bgimage.png"
  46. # --- Footer options --- #
  47. # Change all these values or delete the ones you don't want.
  48. # Important: you must keep the "name" parameter, everything else you can remove
  49. author:
  50. name: Bryan Roessler
  51. # Select your active Social Network Links.
  52. # Uncomment the links you want to show in the footer and add your information to each link.
  53. # You can reorder the items to define the link order.
  54. # If you want to add a new link that isn't here, you'll need to also edit the file _data/SocialNetworks.yml
  55. social-network-links:
  56. rss: true
  57. email: "bryanroessler@gmail.com"
  58. # facebook: daattali
  59. github: "https://git.bryanroessler.com"
  60. # twitter: daattali
  61. # reddit: yourname
  62. # google-plus: +DeanAttali
  63. linkedin: bryan-roessler-phd-47535a60
  64. # xing: yourname
  65. # stackoverflow: "3943160/daattali"
  66. # snapchat: deanat78
  67. # instagram: deanat78
  68. # youtube: user/deanat78
  69. # spotify: yourname
  70. # telephone: +14159998888
  71. # steam: deanat78
  72. # twitch: yourname
  73. # yelp: yourname
  74. # Select which share links to show in posts
  75. share-links-active:
  76. twitter: false
  77. facebook: false
  78. google: false
  79. linkedin: false
  80. # How to display the link to the website in the footer
  81. # Remove this if you don't want a link in the footer
  82. url-pretty: "bryanroessler.com" # eg. "deanattali.com/beautiful-jekyll"
  83. # --- Web Statistics Section --- #
  84. # Fill in your Google Analytics ID to track your website using GA
  85. #google_analytics: ""
  86. # Google Tag Manager ID
  87. #gtm: ""
  88. # Matomo (aka Piwik) Web statistics
  89. # Uncomment the following section to enable Matomo. The opt-out parameter controls
  90. # whether or not you want to allow users to opt out of tracking.
  91. #matomo:
  92. # site_id: "9"
  93. # uri: "demo.wiki.pro"
  94. # opt-out: true
  95. # --- Comments --- #
  96. # Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments
  97. # disqus: ""
  98. # To use Facebook Comments, fill in a Facebook App ID
  99. # fb_comment_id: ""
  100. # --- Misc --- #
  101. # Facebook App ID
  102. # fb_app_id: ""
  103. # Excerpt Word Length
  104. # Truncates the excerpt to the specified number of words on the index page
  105. excerpt_length: 50
  106. # Character used to separate site title and description in HTML document title
  107. # and RSS feed title
  108. title-separator: "-"
  109. # --- Don't need to touch anything below here (but you can if you want) --- #
  110. # Output options (more information on Jekyll's site)
  111. timezone: "America/New_York"
  112. markdown: kramdown
  113. highlighter: rouge
  114. permalink: /:year-:month-:day-:title/
  115. paginate: 5
  116. kramdown:
  117. input: GFM
  118. # Default YAML values (more information on Jekyll's site)
  119. defaults:
  120. -
  121. scope:
  122. path: ""
  123. type: "posts"
  124. values:
  125. layout: "post"
  126. comments: true # add comments to all blog posts
  127. social-share: true # add social media sharing buttons to all blog posts
  128. -
  129. scope:
  130. path: "" # all files
  131. values:
  132. layout: "page"
  133. show-avatar: true
  134. # Use tags index page and make tags on each post clickable
  135. link-tags: true
  136. # Exclude these files from production site
  137. exclude:
  138. - CHANGELOG.md
  139. - CNAME
  140. - Dockerfile
  141. - Gemfile
  142. - Gemfile.lock
  143. - LICENSE
  144. - README.md
  145. - Vagrantfile
  146. # prose.io config
  147. prose:
  148. rooturl: '_posts'
  149. media: 'img'
  150. ignore:
  151. - 404.html
  152. - LICENSE
  153. - feed.xml
  154. - _config.yml
  155. - /_layouts
  156. - /_includes
  157. - /css
  158. - /img
  159. - /js
  160. metadata:
  161. _posts:
  162. - name: "layout"
  163. field:
  164. element: "hidden"
  165. value: "post"
  166. - name: "title"
  167. field:
  168. element: "text"
  169. label: "Post title"
  170. placeholder: "Title"
  171. alterable: true
  172. - name: "subtitle"
  173. field:
  174. element: "textarea"
  175. label: "Subtitle"
  176. placeholder: "A description of your post."
  177. alterable: true
  178. - name: "date"
  179. field:
  180. element: "text"
  181. label: "Date"
  182. help: "Enter date of post."
  183. placeholder: "yyyy-mm-dd"
  184. alterable: true
  185. - name: "image"
  186. field:
  187. element: "text"
  188. label: "Image"
  189. help: "Add a thumbnail image to your post."
  190. placeholder: "Thumbnail"
  191. alterable: true
  192. - name: "published"
  193. field:
  194. element: "checkbox"
  195. label: "Publish"
  196. help: "Check to publish post, uncheck to hide."
  197. plugins:
  198. - jekyll-paginate
  199. - jekyll-sitemap
  200. # Beautiful Jekyll / Dean Attali
  201. # 2fc73a3a967e97599c9763d05e564189