config.toml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. # Enable comments by entering your Disqus shortname
  9. disqusShortname = ""
  10. # Enable analytics by entering your Google Analytics tracking ID
  11. googleAnalytics = ""
  12. # Default language to use (if you setup multilingual support)
  13. defaultContentLanguage = "en"
  14. defaultContentLanguageInSubdir = false
  15. [blackfriday]
  16. hrefTargetBlank = true
  17. [params]
  18. name = "Lena Smith"
  19. role = "Professor of Artificial Intelligence"
  20. organization = "Stanford University"
  21. organization_url = ""
  22. gravatar = false # Get your avatar from Gravatar.com? (true/false)
  23. avatar = "portrait.jpg" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar.
  24. email = "test@example.org"
  25. address = "Building 1 Room 1, Stanford University, California, 90210, USA"
  26. office_hours = "Monday 10:00 to 13:00 or email for appointment"
  27. phone = "888 888 88 88"
  28. skype = "echo123"
  29. telegram = ""
  30. # Enable Keybase in Contact section by entering your keybase.io username.
  31. keybase = ""
  32. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  33. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  34. date_format = "Jan 2, 2006"
  35. # Enable global LaTeX math rendering?
  36. # If false, you can enable it locally on a per page basis.
  37. math = false
  38. # Highlight.js options
  39. # highlight
  40. # Enable global source code highlighting? If false, you can
  41. # override it for a particular page in that page's preamble.
  42. #
  43. # Example: highlight = true
  44. #
  45. # highlight_languages
  46. # Add support for highlighting additional languages. Support for
  47. # languages mentioned here will be included in all pages. You
  48. # can also set this variable for a particular page in that
  49. # page's preamble.
  50. #
  51. # Example: highlight_languages = ["go", "lisp", "ocaml"]
  52. #
  53. # highlight_style
  54. # Choose a different CSS style for highlighting source
  55. # code. Setting this option in a page's preamble has no
  56. # effect.
  57. #
  58. # Example: highlight_style = "github-gist"
  59. #
  60. # highlight_version
  61. # Choose the version of highlight.js you want. Setting this
  62. # option in a page's preamble has no effect.
  63. #
  64. # Example: highlight_version = "9.9.0"
  65. #
  66. # For the list of supported languages, styles, and versions, see:
  67. # https://cdnjs.com/libraries/highlight.js/
  68. #
  69. # For more info on the highlighting options, see:
  70. # https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/#highlighting-options
  71. highlight = true
  72. highlight_languages = []
  73. # highlight_style = "github"
  74. # highlight_version = "9.9.0"
  75. # Enable native social sharing buttons?
  76. sharing = true
  77. # Link custom CSS and JS assets
  78. # (relative to /static/css and /static/js respectively)
  79. custom_css = []
  80. custom_js = []
  81. # Publication types.
  82. # Used to categorize publications.
  83. # The index of the publication type in the list is used as its unique numerical identifier.
  84. # The numeric ID is used in a publication's frontmatter to categorize it.
  85. # The language can be edited below.
  86. # For multi-lingual sites, copy this block to each language section at the end of this file.
  87. publication_types = [
  88. 'Uncategorized', # 0
  89. 'Conference proceedings', # 1
  90. 'Journal', # 2
  91. 'Work in progress', # 3
  92. 'Technical report', # 4
  93. 'Book', # 5
  94. 'Book chapter' # 6
  95. ]
  96. # Social/Academic Networking
  97. #
  98. # Icon pack "fa" includes the following social network icons:
  99. #
  100. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  101. # youtube, instagram, soundcloud
  102. #
  103. # For email icon, use "fa" icon pack, "envelope" icon, and
  104. # "mailto:your@email.com" as the link.
  105. #
  106. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  107. #
  108. # Icon pack "ai" includes the following academic network icons:
  109. #
  110. # google-scholar, arxiv, orcid, researchgate, mendeley
  111. #
  112. # Full list: https://jpswalsh.github.io/academicons/
  113. [[params.social]]
  114. icon = "envelope"
  115. icon_pack = "fa"
  116. link = "mailto:test@example.org"
  117. [[params.social]]
  118. icon = "twitter"
  119. icon_pack = "fa"
  120. link = "//twitter.com/GeorgeCushen"
  121. [[params.social]]
  122. icon = "google-scholar"
  123. icon_pack = "ai"
  124. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  125. [[params.social]]
  126. icon = "github"
  127. icon_pack = "fa"
  128. link = "//github.com/gcushen"
  129. # Navigation Links
  130. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  131. # desired widget in your `content/home/` folder.
  132. # The weight parameter defines the order that the links will appear in.
  133. [[menu.main]]
  134. name = "Home"
  135. url = "#about"
  136. weight = 1
  137. [[menu.main]]
  138. name = "Publications"
  139. url = "#publications_selected"
  140. weight = 2
  141. [[menu.main]]
  142. name = "Posts"
  143. url = "#posts"
  144. weight = 3
  145. [[menu.main]]
  146. name = "Projects"
  147. url = "#projects"
  148. weight = 4
  149. [[menu.main]]
  150. name = "Teaching"
  151. url = "#teaching"
  152. weight = 5
  153. [[menu.main]]
  154. name = "Contact"
  155. url = "#contact"
  156. weight = 6
  157. # Taxonomies.
  158. [taxonomies]
  159. tag = "tags"
  160. category = "categories"
  161. publication_type = "publication_types"
  162. # Languages
  163. # Create a [languages.X] block for each language you want, where X is the language ID.
  164. # Configure the English version of the website.
  165. [Languages.en]
  166. languageCode = "en-us"