config.toml 5.2 KB

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