config.toml 8.5 KB

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