_config.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. ###########################################################
  2. ### Welcome to Beautiful Jekyll!
  3. ### This config file is meant for settings that affect your entire website. When you first
  4. ### set up your website you should go through all these settings and edit them, but after
  5. ### the initial set up you won't need to come back to this file often.
  6. ###########################################################
  7. ############################
  8. # --- Required options --- #
  9. ############################
  10. # url is the full website URL
  11. # baseurl is the website's URL without the hostname
  12. # If you are building a simple GitHub user page (http://username.github.io) then use these settings:
  13. url: "https://bryanroessler.com"
  14. baseurl: ""
  15. # Name of website
  16. title: Bryan Roessler
  17. # Your name to show in the footer
  18. author: Bryan Roessler
  19. ###############################################
  20. # --- List of links in the navigation bar --- #
  21. ###############################################
  22. navbar-links:
  23. Home: "https://bryanroessler.com"
  24. Blog: "https://blog.bryanroessler.com"
  25. CV: "https://cv.bryanroessler.com"
  26. Git: "https://git.bryanroessler.com"
  27. Services:
  28. - Syncthing: "https://syncthing.bryanroessler.com"
  29. - Panel: "https://panel.bryanroessler.com"
  30. ################
  31. # --- Logo --- #
  32. ################
  33. # Image to show in the navigation bar - works best with a square image
  34. # Remove this parameter if you don't want an image in the navbar
  35. avatar: "/assets/img/me_square_sepia_small.jpg"
  36. # By default, the image is cut into a circle. You can disable this behaviour by setting 'round-avatar: false'
  37. round-avatar: true
  38. # If you want to have an image logo in the top-left corner instead of having the title of the website,
  39. # then specify the following parameter
  40. #title-img: "./img/me_square_sepia_small.jpg"
  41. #####################################
  42. # --- Footer social media links --- #
  43. #####################################
  44. # Select the social network links that you want to show in the footer.
  45. # You can change the order that they show up on the page by changing the order here.
  46. # Uncomment the links you want to show and add your information to each one.
  47. social-network-links:
  48. email: "bryanroessler@gmail.com"
  49. # rss: true # remove this line if you don't want to show an RSS link at the bottom
  50. # facebook:
  51. github: "https://git.bryanroessler.com"
  52. # twitter:
  53. # patreon: DeanAttali
  54. # youtube: c/daattali
  55. # medium: yourname
  56. # reddit: yourname
  57. # google-plus: +DeanAttali
  58. linkedin: bryan-roessler-phd-47535a60
  59. # xing: yourname
  60. # stackoverflow: "3943160/daattali"
  61. # snapchat: deanat78
  62. # instagram: deanat78
  63. # spotify: yourname
  64. # telephone: +14159998888
  65. # steam: deanat78
  66. # twitch: yourname
  67. # yelp: yourname
  68. # telegram: yourname
  69. # calendly: yourname
  70. # mastodon: instance.url/@username
  71. # bluesky: yourname
  72. # ORCID: your ORCID ID
  73. # google-scholar: your google scholar
  74. # discord: "invite_code" or "users/userid" or "invite/invite_code"
  75. # kaggle: yourname
  76. # hackerrank: yourname
  77. # gitlab: yourname
  78. # itchio: yourname
  79. # untappd: yourname
  80. # If you want your website to generate an RSS feed, provide a description
  81. # The URL for the feed will be https://<your_website>/feed.xml
  82. # rss-description: Bryan Roessler's Landing Page
  83. ###########################
  84. # --- General options --- #
  85. ###########################
  86. # Select which social network share links to show in posts
  87. share-links-active:
  88. twitter: false
  89. facebook: false
  90. linkedin: false
  91. vk: false
  92. # How to display the link to your website in the footer
  93. # Remove this if you don't want a link in the footer
  94. url-pretty: "bryanroessler.com"
  95. # Add the website title to the title of every page
  96. title-on-all-pages: true
  97. # Excerpt word length - Truncate the excerpt of each post on the feed page to the specified number of words
  98. excerpt_length: 50
  99. # Whether or not to show an excerpt for every blog post in the feed page
  100. feed_show_excerpt: true
  101. # Whether or not to show a list of tags below each post preview in the feed page
  102. feed_show_tags: true
  103. # Add a search button to the navbar
  104. post_search: true
  105. # Add a button in the footer to edit the current page. Only works if your website is hosted on GitHub
  106. edit_page_button: true
  107. # Allow sub-menu items (second-level navigation menu items) to be longer than the top-level menu
  108. # If this setting is off, then long sub-menu words might get cut off
  109. # See https://github.com/daattali/beautiful-jekyll/issues/765 to understand the issue this setting can solve
  110. navbar-var-length: false
  111. # The keywords to associate with your website, for SEO purposes
  112. #keywords: "my,list,of,keywords"
  113. ######################################
  114. # --- Colours / background image --- #
  115. ######################################
  116. # Personalize the colours in your website. Colour values can be any valid CSS colour
  117. page-col: "#FFFFFF"
  118. text-col: "#404040"
  119. link-col: "#008AFF"
  120. hover-col: "#0085A1"
  121. navbar-col: "#EAEAEA"
  122. navbar-text-col: "#404040"
  123. navbar-border-col: "#DDDDDD"
  124. footer-col: "#EAEAEA"
  125. footer-text-col: "#777777"
  126. footer-link-col: "#404040"
  127. footer-hover-col: "#0085A1"
  128. # Alternatively, the navbar, footer, and page background can be set to an image
  129. # instead of colour
  130. #navbar-img: "/assets/img/bgimage.png"
  131. #footer-img: "/assets/img/bgimage.png"
  132. #page-img: "/assets/img/bgimage.png"
  133. # Suggest a colour for mobile browsers to use as the browser's theme. This is only supported by a few mobile browsers.
  134. #mobile-theme-col: "#0085A1"
  135. # For any extra visual customization, you can include additional CSS files in every page on your site. List any custom CSS files here
  136. #site-css:
  137. # - "/assets/css/custom-styles.css"
  138. # If you have common JavaScript files that should be included in every page, list them here
  139. #site-js:
  140. # - "/assets/js/custom-script.js"
  141. #################################
  142. # --- Web Analytics Section --- #
  143. #################################
  144. # Fill in your Google Analytics tag ID (or "Measurement ID") to track your website usage
  145. #gtag: "G-XXXXXXXXXX"
  146. # Fill in your Cloudflare Analytics beacon token to track your website using Cloudflare Analytics
  147. #cloudflare_analytics: ""
  148. # Google Tag Manager ID
  149. #gtm: ""
  150. # Matomo (aka Piwik) Web statistics
  151. # Uncomment the following section to enable Matomo. The opt-out parameter controls
  152. # whether or not you want to allow users to opt out of tracking.
  153. #matomo:
  154. # site_id: "9"
  155. # uri: "demo.wiki.pro"
  156. # opt-out: true
  157. # Google Universal Analytics ID -- deprecated
  158. # As of July 2023 this is no longer supported by Google! If you are still using `google_analytics`,
  159. # you should switch to using the `gtag` field above instead.
  160. #google_analytics: "UA-XXXXXXXX-X"
  161. ####################
  162. # --- Comments --- #
  163. ####################
  164. # To use Disqus comments, sign up to https://disqus.com and fill in your Disqus shortname (NOT the userid)
  165. #disqus: ""
  166. # To use Facebook Comments, create a Facebook app and fill in the Facebook App ID
  167. #fb_comment_id: ""
  168. # To use CommentBox, sign up for a Project ID on https://commentbox.io
  169. #commentbox: "" # Project ID, e.g. "5694267682979840-proj"
  170. # To use Utterances comments: (0) uncomment the following section, (1) fill in
  171. # "repository" (make sure the repository is public), (2) Enable Issues in your repository,
  172. # (3) Install the Utterances app in your repository https://github.com/apps/utterances
  173. # See more details about the parameters below at https://utteranc.es/
  174. #utterances:
  175. # repository: # GitHub username/repository eg. "daattali/beautiful-jekyll"
  176. # issue-term: title # Mapping between blog posts and GitHub issues
  177. # theme: github-light # Utterances theme
  178. # label: blog-comments # Label that will be assigned to GitHub Issues created by Utterances
  179. # To use Staticman comments, uncomment the following section. You may leave the reCaptcha
  180. # section commented if you aren't using reCaptcha for spam protection.
  181. # Using Staticman requires advanced knowledge, please consult
  182. # https://github.com/eduardoboucas/staticman/ and https://staticman.net/ for further
  183. # instructions. For any support with staticman please direct questions to staticman and
  184. # not to BeautifulJekyll.
  185. #staticman:
  186. # repository : # GitHub username/repository eg. "daattali/beautiful-jekyll"
  187. # branch : master # If you're not using `master` branch, then you also need to update the `branch` parameter in `staticman.yml`
  188. # endpoint : # URL of your deployment, with a trailing slash eg. "https://<your-api>/v3/entry/github/"
  189. # reCaptcha: # (optional, set these parameters in `staticman.yml` as well)
  190. # siteKey : # You need to apply for a site key on Google
  191. # secret : # Encrypt your password by going to https://<your-own-api>/v3/encrypt/<your-site-secret>
  192. # To use giscus comments:
  193. # (0) Uncomment the following giscus section, (1) Enable Discussions in your GitHub repository,
  194. # (2) Install the giscus app in your repository (details at https://giscus.app),
  195. # (3) Fill in *all* the parameters below
  196. # See more details about giscus and each of the following parameters at https://giscus.app
  197. #giscus:
  198. # hostname: giscus.app # Replace with your giscus instance's hostname if self-hosting
  199. # repository: # GitHub username/repository eg. "daattali/beautiful-jekyll"
  200. # repository-id: # ID of your repository, retrieve this info from https://giscus.app
  201. # category: Announcements # Category name of your GitHub Discussion posts
  202. # category-id: # ID of your category, retrieve this info from https://giscus.app
  203. # mapping: pathname
  204. # reactions-enabled: 1
  205. # emit-metadata: 0
  206. # theme: light
  207. ################
  208. # --- Misc --- #
  209. ################
  210. # Ruby Date Format to show dates of posts
  211. date_format: "%B %-d, %Y"
  212. # Facebook App ID
  213. #fb_app_id: ""
  214. #################################################################################
  215. # --- You don't need to touch anything below here (but you can if you want) --- #
  216. #################################################################################
  217. # Output options (more information on Jekyll's site)
  218. timezone: "America/New_York"
  219. markdown: kramdown
  220. highlighter: rouge
  221. permalink: /:year/:month/:day/:title
  222. paginate: 5
  223. kramdown:
  224. input: GFM
  225. # Default YAML values (more information on Jekyll's site)
  226. defaults:
  227. -
  228. scope:
  229. path: ""
  230. type: "posts"
  231. values:
  232. layout: "post"
  233. comments: true # add comments to all blog posts
  234. social-share: true # add social media sharing buttons to all blog posts
  235. -
  236. scope:
  237. path: "" # any file that's not a post will be a "page" layout by default
  238. values:
  239. layout: "page"
  240. # Exclude these files from production site
  241. exclude:
  242. - Gemfile
  243. - Gemfile.lock
  244. - node_modules
  245. - vendor/bundle/
  246. - vendor/cache/
  247. - vendor/gems/
  248. - vendor/ruby/
  249. - CHANGELOG.md
  250. - CNAME
  251. - Dockerfile
  252. - README.md
  253. - Vagrantfile
  254. - LICENSE
  255. - screenshot.png
  256. - docs/
  257. plugins:
  258. - jekyll-paginate
  259. - jekyll-sitemap