config.toml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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 format (refer to Go's date format: http://flippinggodateformat.com )
  59. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  60. date_format = "Jan 2, 2006"
  61. # Show estimated reading time for posts?
  62. reading_time = true
  63. # Display comment count? Requires commenting to be enabled.
  64. comment_count = true
  65. # Display section pager for posts?
  66. section_pager = false
  67. # Enable global LaTeX math rendering?
  68. # If false, you can enable it locally on a per page basis.
  69. math = false
  70. # Highlight.js options
  71. # highlight
  72. # Enable global source code highlighting? If false, you can
  73. # override it for a particular page in that page's preamble.
  74. #
  75. # Example: highlight = true
  76. #
  77. # highlight_languages
  78. # Add support for highlighting additional languages. Support for
  79. # languages mentioned here will be included in all pages. You
  80. # can also set this variable for a particular page in that
  81. # page's preamble.
  82. #
  83. # Example: highlight_languages = ["go", "lisp", "ocaml"]
  84. #
  85. # highlight_style
  86. # Choose a different CSS style for highlighting source
  87. # code. Setting this option in a page's preamble has no
  88. # effect.
  89. #
  90. # Example: highlight_style = "github-gist"
  91. #
  92. # For the list of supported languages and styles, see:
  93. # https://cdnjs.com/libraries/highlight.js/
  94. #
  95. # For more info on the highlighting options, see:
  96. # https://sourcethemes.com/academic/post/writing-markdown-latex/#highlighting-options
  97. highlight = true
  98. highlight_languages = []
  99. # highlight_style = "github"
  100. # Enable native social sharing buttons?
  101. sharing = true
  102. # Link custom CSS and JS assets
  103. # (relative to /static/css and /static/js respectively)
  104. custom_css = []
  105. custom_js = []
  106. # Publication types.
  107. # Used to categorize publications.
  108. # The index of the publication type in the list is used as its unique numerical identifier.
  109. # The numeric ID is used in a publication's frontmatter to categorize it.
  110. # The language can be edited below.
  111. # For multi-lingual sites, copy this block to each language section at the end of this file.
  112. publication_types = [
  113. 'Uncategorized', # 0
  114. 'Conference proceedings', # 1
  115. 'Journal', # 2
  116. 'Work in progress', # 3
  117. 'Technical report', # 4
  118. 'Book', # 5
  119. 'Book chapter' # 6
  120. ]
  121. # Configuration of publication pages.
  122. [params.publications]
  123. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  124. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  125. date_format = "January, 2006"
  126. # Configuration of project pages.
  127. [params.projects]
  128. # List publications and talks related to the project?
  129. list_children = true
  130. # Publication list format.
  131. # 0 = Simple
  132. # 1 = Detailed
  133. # 2 = APA
  134. # 3 = MLA
  135. publication_format = 3
  136. # Social/Academic Networking
  137. #
  138. # Icon pack "fa" includes the following social network icons:
  139. #
  140. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  141. # youtube, instagram, soundcloud
  142. #
  143. # For email icon, use "fa" icon pack, "envelope" icon, and
  144. # "mailto:your@email.com" as the link.
  145. #
  146. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  147. #
  148. # Icon pack "ai" includes the following academic network icons:
  149. #
  150. # google-scholar, arxiv, orcid, researchgate, mendeley
  151. #
  152. # Full list: https://jpswalsh.github.io/academicons/
  153. [[params.social]]
  154. icon = "envelope"
  155. icon_pack = "fa"
  156. link = "mailto:test@example.org"
  157. [[params.social]]
  158. icon = "twitter"
  159. icon_pack = "fa"
  160. link = "//twitter.com/GeorgeCushen"
  161. [[params.social]]
  162. icon = "google-scholar"
  163. icon_pack = "ai"
  164. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  165. [[params.social]]
  166. icon = "github"
  167. icon_pack = "fa"
  168. link = "//github.com/gcushen"
  169. # Navigation Links
  170. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  171. # desired widget in your `content/home/` folder.
  172. # The weight parameter defines the order that the links will appear in.
  173. [[menu.main]]
  174. name = "Home"
  175. url = "#about"
  176. weight = 1
  177. [[menu.main]]
  178. name = "Publications"
  179. url = "#publications_selected"
  180. weight = 2
  181. [[menu.main]]
  182. name = "Posts"
  183. url = "#posts"
  184. weight = 3
  185. [[menu.main]]
  186. name = "Projects"
  187. url = "#projects"
  188. weight = 4
  189. [[menu.main]]
  190. name = "Teaching"
  191. url = "#teaching"
  192. weight = 5
  193. [[menu.main]]
  194. name = "Contact"
  195. url = "#contact"
  196. weight = 6
  197. # Taxonomies.
  198. [taxonomies]
  199. tag = "tags"
  200. category = "categories"
  201. publication_type = "publication_types"
  202. # Languages
  203. # Create a [languages.X] block for each language you want, where X is the language ID.
  204. # Configure the English version of the website.
  205. [Languages.en]
  206. languageCode = "en-us"