Build a beautiful and simple website in literally minutes. Demo at http://deanattali.com/beautiful-jekyll
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
2.9 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. # --- Serving 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 (username.github.io) then use these settings:
  5. #url: "http://username.github.io"
  6. #baseurl: ""
  7. # If you are building a GitHub project page then use these settings:
  8. url: "http://daattali.github.io/beautiful-jekyll"
  9. baseurl: "/beautiful-jekyll"
  10. # Of course don't forget to change the username and projectname to YOUR username and project
  11. # Name of website
  12. title: Beautiful Jekyll
  13. # Short description of your site
  14. description: Quickly build a beautiful Jekyll website
  15. # --- Navigation bar options --- #
  16. # Image to show in the navigation bar - image must be a square (width = height)
  17. # Remove this parameter if you don't want an image in the navbar
  18. avatar: "/img/avatar-icon.png"
  19. # List of links in the navigation bar
  20. navbar-links:
  21. Home: ""
  22. Resources:
  23. - Getting started: "getstarted"
  24. - Featured users: "featured-users"
  25. - Project page: "https://github.com/daattali/beautiful-jekyll#readme"
  26. About me: "http://deanattali.com"
  27. Support me: "http://deanattali.com/aboutme/#feed-meeee"
  28. # --- Footer options --- #
  29. # Change all these values or delete the ones you don't want.
  30. # Important: you must keep the "name" parameter, everything else you can remove
  31. author:
  32. name: Dean Attali
  33. email: "daattali@gmail.com"
  34. facebook: daattali
  35. github: daattali
  36. twitter: daattali
  37. linkedin: "pub/dean-attali/8/946/143"
  38. stackoverflow: "users/3943160/daattali"
  39. # Select which links to show in the footer
  40. footer-links-active:
  41. rss: false
  42. facebook: true
  43. email: true
  44. twitter: true
  45. github: true
  46. linkedin: false
  47. stackoverflow: false
  48. share-links-active:
  49. twitter: true
  50. facebook: true
  51. google: false
  52. linkedin: true
  53. # How to display the link to the website in the footer
  54. # Remove this if you don't want a link in the footer
  55. url-pretty: "deanattali.com/beautiful-jekyll" # eg. "deanattali.com/beautiful-jekyll"
  56. # --- Misc --- #
  57. # Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments
  58. #disqus: ""
  59. # Fill in your Google Analytics ID to track your website using GA
  60. google_analytics: "UA-59820529-1"
  61. # --- Don't need to touch anything below here (but you can if you want) --- #
  62. # Output options (more information on Jekyll's site)
  63. timezone: "America/Vancouver"
  64. markdown: kramdown
  65. highlighter: rouge
  66. permalink: /:year-:month-:day-:title/
  67. paginate: 5
  68. # Default YAML values (more information on Jekyll's site)
  69. defaults:
  70. -
  71. scope:
  72. path: ""
  73. type: "posts"
  74. values:
  75. layout: "post"
  76. comments: true # add comments to all blog posts
  77. show-share: true # add sharing buttons to all blog posts
  78. social-share: true # add social media sharing buttons to all blog posts
  79. -
  80. scope:
  81. path: "" # all files
  82. values:
  83. layout: "page"
  84. # Exclude these files from production site
  85. exclude:
  86. - CNAME
  87. - LICENSE
  88. - README.md