config.toml 10 KB

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