config.toml 8.8 KB

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