config.toml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. baseurl = "/" # End your URL with a `/` trailing slash, e.g. `https://example.com/`.
  2. title = "Academic"
  3. copyright = "© 2017 Your Name"
  4. theme = "academic"
  5. enableEmoji = true
  6. footnotereturnlinkcontents = "<sup>^</sup>"
  7. ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
  8. paginate = 10
  9. # Enable comments by entering your Disqus shortname
  10. disqusShortname = ""
  11. # Enable analytics by entering your Google Analytics tracking ID
  12. googleAnalytics = ""
  13. # Default language to use (if you setup multilingual support)
  14. defaultContentLanguage = "en"
  15. defaultContentLanguageInSubdir = false
  16. [outputs]
  17. home = [ "HTML", "CSS" ]
  18. [blackfriday]
  19. hrefTargetBlank = true
  20. [params]
  21. # Color theme.
  22. # Choose from `default`, `ocean`, `forest`, or `coffee`.
  23. color_theme = "default"
  24. # Font style.
  25. # Choose from `default` or `classic`.
  26. font = "default"
  27. # Your details.
  28. name = "Lena Smith"
  29. role = "Professor of Artificial Intelligence"
  30. organization = "Stanford University"
  31. organization_url = ""
  32. gravatar = false # Get your avatar from Gravatar.com? (true/false)
  33. avatar = "portrait.jpg" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar.
  34. email = "test@example.org"
  35. address = "Building 1 Room 1, Stanford University, California, 90210, USA"
  36. office_hours = "Monday 10:00 to 13:00 or email for appointment"
  37. phone = "888 888 88 88"
  38. skype = "echo123"
  39. telegram = ""
  40. # Enable Keybase in Contact section by entering your keybase.io username.
  41. keybase = ""
  42. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  43. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  44. date_format = "Jan 2, 2006"
  45. # Show estimated reading time for posts?
  46. reading_time = true
  47. # Enable global LaTeX math rendering?
  48. # If false, you can enable it locally on a per page basis.
  49. math = false
  50. # Highlight.js options
  51. # highlight
  52. # Enable global source code highlighting? If false, you can
  53. # override it for a particular page in that page's preamble.
  54. #
  55. # Example: highlight = true
  56. #
  57. # highlight_languages
  58. # Add support for highlighting additional languages. Support for
  59. # languages mentioned here will be included in all pages. You
  60. # can also set this variable for a particular page in that
  61. # page's preamble.
  62. #
  63. # Example: highlight_languages = ["go", "lisp", "ocaml"]
  64. #
  65. # highlight_style
  66. # Choose a different CSS style for highlighting source
  67. # code. Setting this option in a page's preamble has no
  68. # effect.
  69. #
  70. # Example: highlight_style = "github-gist"
  71. #
  72. # highlight_version
  73. # Choose the version of highlight.js you want. Setting this
  74. # option in a page's preamble has no effect.
  75. #
  76. # Example: highlight_version = "9.9.0"
  77. #
  78. # For the list of supported languages, styles, and versions, see:
  79. # https://cdnjs.com/libraries/highlight.js/
  80. #
  81. # For more info on the highlighting options, see:
  82. # https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/#highlighting-options
  83. highlight = true
  84. highlight_languages = []
  85. # highlight_style = "github"
  86. # highlight_version = "9.9.0"
  87. # Enable native social sharing buttons?
  88. sharing = true
  89. # Link custom CSS and JS assets
  90. # (relative to /static/css and /static/js respectively)
  91. custom_css = []
  92. custom_js = []
  93. # Publication types.
  94. # Used to categorize publications.
  95. # The index of the publication type in the list is used as its unique numerical identifier.
  96. # The numeric ID is used in a publication's frontmatter to categorize it.
  97. # The language can be edited below.
  98. # For multi-lingual sites, copy this block to each language section at the end of this file.
  99. publication_types = [
  100. 'Uncategorized', # 0
  101. 'Conference proceedings', # 1
  102. 'Journal', # 2
  103. 'Work in progress', # 3
  104. 'Technical report', # 4
  105. 'Book', # 5
  106. 'Book chapter' # 6
  107. ]
  108. # Social/Academic Networking
  109. #
  110. # Icon pack "fa" includes the following social network icons:
  111. #
  112. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  113. # youtube, instagram, soundcloud
  114. #
  115. # For email icon, use "fa" icon pack, "envelope" icon, and
  116. # "mailto:your@email.com" as the link.
  117. #
  118. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  119. #
  120. # Icon pack "ai" includes the following academic network icons:
  121. #
  122. # google-scholar, arxiv, orcid, researchgate, mendeley
  123. #
  124. # Full list: https://jpswalsh.github.io/academicons/
  125. [[params.social]]
  126. icon = "envelope"
  127. icon_pack = "fa"
  128. link = "mailto:test@example.org"
  129. [[params.social]]
  130. icon = "twitter"
  131. icon_pack = "fa"
  132. link = "//twitter.com/GeorgeCushen"
  133. [[params.social]]
  134. icon = "google-scholar"
  135. icon_pack = "ai"
  136. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  137. [[params.social]]
  138. icon = "github"
  139. icon_pack = "fa"
  140. link = "//github.com/gcushen"
  141. # Navigation Links
  142. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  143. # desired widget in your `content/home/` folder.
  144. # The weight parameter defines the order that the links will appear in.
  145. [[menu.main]]
  146. name = "Home"
  147. url = "#about"
  148. weight = 1
  149. [[menu.main]]
  150. name = "Publications"
  151. url = "#publications_selected"
  152. weight = 2
  153. [[menu.main]]
  154. name = "Posts"
  155. url = "#posts"
  156. weight = 3
  157. [[menu.main]]
  158. name = "Projects"
  159. url = "#projects"
  160. weight = 4
  161. [[menu.main]]
  162. name = "Teaching"
  163. url = "#teaching"
  164. weight = 5
  165. [[menu.main]]
  166. name = "Contact"
  167. url = "#contact"
  168. weight = 6
  169. # Taxonomies.
  170. [taxonomies]
  171. tag = "tags"
  172. category = "categories"
  173. publication_type = "publication_types"
  174. # Languages
  175. # Create a [languages.X] block for each language you want, where X is the language ID.
  176. # Configure the English version of the website.
  177. [Languages.en]
  178. languageCode = "en-us"