_config.yml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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. - CHANGELOG.md
  136. - CNAME
  137. - Dockerfile
  138. - Gemfile
  139. - Gemfile.lock
  140. - LICENSE
  141. - README.md
  142. - Vagrantfile
  143. # prose.io config
  144. prose:
  145. rooturl: '_posts'
  146. media: 'img'
  147. ignore:
  148. - 404.html
  149. - LICENSE
  150. - feed.xml
  151. - _config.yml
  152. - /_layouts
  153. - /_includes
  154. - /css
  155. - /img
  156. - /js
  157. metadata:
  158. _posts:
  159. - name: "layout"
  160. field:
  161. element: "hidden"
  162. value: "post"
  163. - name: "title"
  164. field:
  165. element: "text"
  166. label: "Post title"
  167. placeholder: "Title"
  168. alterable: true
  169. - name: "subtitle"
  170. field:
  171. element: "textarea"
  172. label: "Subtitle"
  173. placeholder: "A description of your post."
  174. alterable: true
  175. - name: "date"
  176. field:
  177. element: "text"
  178. label: "Date"
  179. help: "Enter date of post."
  180. placeholder: "yyyy-mm-dd"
  181. alterable: true
  182. - name: "image"
  183. field:
  184. element: "text"
  185. label: "Image"
  186. help: "Add a thumbnail image to your post."
  187. placeholder: "Thumbnail"
  188. alterable: true
  189. - name: "published"
  190. field:
  191. element: "checkbox"
  192. label: "Publish"
  193. help: "Check to publish post, uncheck to hide."
  194. plugins:
  195. - jekyll-paginate
  196. - jekyll-sitemap
  197. # Beautiful Jekyll / Dean Attali
  198. # 2fc73a3a967e97599c9763d05e564189