config.toml 10 KB

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