config.toml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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. preserveTaxonomyNames = true
  9. paginate = 10
  10. # Enable comments by entering your Disqus shortname
  11. disqusShortname = ""
  12. # Enable analytics by entering your Google Analytics tracking ID
  13. googleAnalytics = ""
  14. # Default language to use (if you setup multilingual support)
  15. defaultContentLanguage = "en"
  16. defaultContentLanguageInSubdir = false
  17. [outputs]
  18. home = [ "HTML", "CSS" ]
  19. # Configure BlackFriday Markdown rendering.
  20. # See: https://gohugo.io/readfiles/bfconfig/
  21. [blackfriday]
  22. hrefTargetBlank = true # `true` opens external links in a new tab.
  23. fractions = true # `false` disables smart fractions (e.g. 5/12 formatted as a fraction).
  24. smartypants = true # `false` disables all smart punctuation substitutions (e.g. smart quotes, dashes, fractions).
  25. [params]
  26. # Color theme.
  27. # Choose from `default`, `ocean`, `forest`, or `coffee`.
  28. color_theme = "default"
  29. # Font style.
  30. # Choose from `default`, `classic`, or `playfair`.
  31. font = "default"
  32. # Your details.
  33. name = "Lena Smith"
  34. role = "Professor of Artificial Intelligence"
  35. # Organizations/Affiliations.
  36. # Separate multiple entries with a comma, using the form: `[ {name="Org1", url=""}, {name="Org2", url=""} ]`.
  37. organizations = [ { name = "Stanford University", url = "" } ]
  38. gravatar = false # Get your avatar from Gravatar.com? (true/false)
  39. avatar = "portrait.jpg" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar.
  40. email = "test@example.org"
  41. address = "Building 1 Room 1, Stanford University, California, 90210, USA"
  42. office_hours = "Monday 10:00 to 13:00 or email for appointment"
  43. phone = "888 888 88 88"
  44. skype = "echo123"
  45. telegram = ""
  46. # Enable Keybase in Contact section by entering your keybase.io username.
  47. keybase = ""
  48. # Diplay a logo in navigation bar rather than title (optional).
  49. # To enable, place an image in `static/img/` and reference its filename below. To disable, set the value to "".
  50. logo = ""
  51. # Enable Google Maps by entering your API key, latitude, and longitude.
  52. # Get your API key: https://developers.google.com/maps/documentation/javascript/get-api-key
  53. # Get your coords: Right-click place on Google Maps. Select 'What's here?'. At the bottom is a card with the coords.
  54. # Disable Google Maps by clearing all three options to "".
  55. google_maps_api_key = ""
  56. latitude = "37.4275"
  57. longitude = "-122.1697"
  58. # Date and time format (refer to Go's date format: http://fuckinggodateformat.com )
  59. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  60. date_format = "Jan 2, 2006"
  61. # Examples: "3:04 pm" or "15:04"
  62. time_format = "3:04 PM"
  63. # Show estimated reading time for posts?
  64. reading_time = true
  65. # Display comment count? Requires commenting to be enabled.
  66. comment_count = true
  67. # Display section pager for posts?
  68. section_pager = false
  69. # Enable global LaTeX math rendering?
  70. # If false, you can enable it locally on a per page basis.
  71. math = false
  72. # Highlight.js options
  73. # highlight
  74. # Enable global source code highlighting? If false, you can
  75. # override it for a particular page in that page's preamble.
  76. #
  77. # Example: highlight = true
  78. #
  79. # highlight_languages
  80. # Add support for highlighting additional languages. Support for
  81. # languages mentioned here will be included in all pages. You
  82. # can also set this variable for a particular page in that
  83. # page's preamble.
  84. #
  85. # Example: highlight_languages = ["go", "lisp", "ocaml"]
  86. #
  87. # highlight_style
  88. # Choose a different CSS style for highlighting source
  89. # code. Setting this option in a page's preamble has no
  90. # effect.
  91. #
  92. # Example: highlight_style = "github-gist"
  93. #
  94. # For the list of supported languages and styles, see:
  95. # https://cdnjs.com/libraries/highlight.js/
  96. #
  97. # For more info on the highlighting options, see:
  98. # https://sourcethemes.com/academic/post/writing-markdown-latex/#highlighting-options
  99. highlight = true
  100. highlight_languages = []
  101. # highlight_style = "github"
  102. # Enable native social sharing buttons?
  103. sharing = true
  104. # Link custom CSS and JS assets
  105. # (relative to /static/css and /static/js respectively)
  106. custom_css = []
  107. custom_js = []
  108. # Publication types.
  109. # Used to categorize publications.
  110. # The index of the publication type in the list is used as its unique numerical identifier.
  111. # The numeric ID is used in a publication's frontmatter to categorize it.
  112. # The language can be edited below.
  113. # For multi-lingual sites, copy this block to each language section at the end of this file.
  114. publication_types = [
  115. 'Uncategorized', # 0
  116. 'Conference proceedings', # 1
  117. 'Journal', # 2
  118. 'Work in progress', # 3
  119. 'Technical report', # 4
  120. 'Book', # 5
  121. 'Book chapter' # 6
  122. ]
  123. # Configuration of publication pages.
  124. [params.publications]
  125. # Date format (refer to Go's date format: http://fuckinggodateformat.com )
  126. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  127. date_format = "January, 2006"
  128. # Configuration of project pages.
  129. [params.projects]
  130. # List publications and talks related to the project?
  131. list_children = true
  132. # Publication list format.
  133. # 0 = Simple
  134. # 1 = Detailed
  135. # 2 = APA
  136. # 3 = MLA
  137. publication_format = 3
  138. # Social/Academic Networking
  139. #
  140. # Icon pack "fa" includes the following social network icons:
  141. #
  142. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  143. # youtube, instagram, soundcloud
  144. #
  145. # For email icon, use "fa" icon pack, "envelope" icon, and
  146. # "mailto:your@email.com" as the link.
  147. #
  148. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  149. #
  150. # Icon pack "ai" includes the following academic network icons:
  151. #
  152. # google-scholar, arxiv, orcid, researchgate, mendeley
  153. #
  154. # Full list: https://jpswalsh.github.io/academicons/
  155. [[params.social]]
  156. icon = "envelope"
  157. icon_pack = "fa"
  158. link = "mailto:test@example.org"
  159. [[params.social]]
  160. icon = "twitter"
  161. icon_pack = "fa"
  162. link = "//twitter.com/GeorgeCushen"
  163. [[params.social]]
  164. icon = "google-scholar"
  165. icon_pack = "ai"
  166. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  167. [[params.social]]
  168. icon = "github"
  169. icon_pack = "fa"
  170. link = "//github.com/gcushen"
  171. # Navigation Links
  172. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  173. # desired widget in your `content/home/` folder.
  174. # The weight parameter defines the order that the links will appear in.
  175. [[menu.main]]
  176. name = "Home"
  177. url = "#about"
  178. weight = 1
  179. [[menu.main]]
  180. name = "Publications"
  181. url = "#publications_selected"
  182. weight = 2
  183. [[menu.main]]
  184. name = "Posts"
  185. url = "#posts"
  186. weight = 3
  187. [[menu.main]]
  188. name = "Projects"
  189. url = "#projects"
  190. weight = 4
  191. [[menu.main]]
  192. name = "Teaching"
  193. url = "#teaching"
  194. weight = 5
  195. [[menu.main]]
  196. name = "Contact"
  197. url = "#contact"
  198. weight = 6
  199. # Taxonomies.
  200. [taxonomies]
  201. tag = "tags"
  202. category = "categories"
  203. publication_type = "publication_types"
  204. # Languages
  205. # Create a [languages.X] block for each language you want, where X is the language ID.
  206. # Configure the English version of the website.
  207. [Languages.en]
  208. languageCode = "en-us"