hugo.toml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. baseurl = "https://username.github.io"
  2. DefaultContentLanguage = "en"
  3. title = "Beautiful Hugo"
  4. # Using theme as git submodule
  5. theme = "beautifulhugo"
  6. # Or when using theme as hugo module
  7. # theme = "github.com/halogenica/beautifulhugo"
  8. pygmentsStyle = "trac"
  9. pygmentsUseClasses = true
  10. pygmentsCodeFences = true
  11. pygmentsCodefencesGuessSyntax = true
  12. #pygmentsUseClassic = true
  13. #pygmentOptions = "linenos=inline"
  14. [Services]
  15. [Services.Disqus]
  16. # Shortname = "XXX"
  17. [Services.googleAnalytics]
  18. # id = "XXX"
  19. [Params]
  20. # homeTitle = "Beautiful Hugo Theme" # Set a different text for the header on the home page
  21. subtitle = "Build a beautiful and simple website in minutes"
  22. mainSections = ["post","posts"]
  23. logo = "img/avatar-icon.png" # Expecting square dimensions
  24. favicon = "img/favicon.ico"
  25. dateFormat = "January 2, 2006"
  26. commit = false
  27. rss = true
  28. comments = true
  29. readingTime = true
  30. wordCount = true
  31. useHLJS = true
  32. socialShare = true
  33. delayDisqus = true
  34. showRelatedPosts = true
  35. # cusdisID = "XXX" # Get your App id from cusdis.com
  36. # hideAuthor = true
  37. # gcse = "012345678901234567890:abcdefghijk" # Get your code from google.com/cse. Make sure to go to "Look and Feel" and change Layout to "Full Width" and Theme to "Classic"
  38. # disclaimerText = "The opinions expressed herein are my own personal opinions and do not represent my employer’s view in any way."
  39. #[[Params.bigimg]]
  40. # src = "img/triangle.jpg"
  41. # desc = "Triangle"
  42. #[[Params.bigimg]]
  43. # src = "img/sphere.jpg"
  44. # desc = "Sphere"
  45. # # position: see values of CSS background-position.
  46. # position = "center top"
  47. #[[Params.bigimg]]
  48. # src = "img/hexagon.jpg"
  49. # desc = "Hexagon"
  50. [Params.author]
  51. # Set only your "username" for default hosts and full URLs otherwise (e.g., "https://MyGitLab.org/username")
  52. name = "Some Person"
  53. website = "yourwebsite.com"
  54. email = "youremail@domain.com"
  55. facebook = "username"
  56. github = "username"
  57. gitlab = "username"
  58. bitbucket = "username"
  59. twitter = "username"
  60. reddit = "username"
  61. linkedin = "username"
  62. xing = "username"
  63. stackoverflow = "users/XXXXXXX/username"
  64. snapchat = "username"
  65. instagram = "username"
  66. youtube = "user/username" # or channel/channelname
  67. soundcloud = "username"
  68. spotify = "username"
  69. bandcamp = "username"
  70. itchio = "username"
  71. vk = "username"
  72. paypal = "username"
  73. telegram = "username"
  74. 500px = "username"
  75. codepen = "username"
  76. mastodon = "url"
  77. kaggle = "username"
  78. weibo = "username"
  79. slack = "username"
  80. medium = "username"
  81. discord = "invite code (https://discord.gg/XXXXXXX)"
  82. strava = "userid"
  83. lastfm = "username"
  84. [[menu.main]]
  85. name = "Blog"
  86. url = ""
  87. weight = 1
  88. [[menu.main]]
  89. name = "About"
  90. url = "page/about/"
  91. weight = 3
  92. [[menu.main]]
  93. identifier = "samples"
  94. name = "Samples"
  95. weight = 2
  96. [[menu.main]]
  97. parent = "samples"
  98. name = "Big Image Sample"
  99. url = "post/2017-03-07-bigimg-sample"
  100. weight = 1
  101. [[menu.main]]
  102. parent = "samples"
  103. name = "Math Sample"
  104. url = "post/2017-03-05-math-sample"
  105. weight = 2
  106. [[menu.main]]
  107. parent = "samples"
  108. name = "Code Sample"
  109. url = "post/2016-03-08-code-sample"
  110. weight = 3
  111. [[menu.main]]
  112. name = "Tags"
  113. url = "tags"
  114. weight = 3