config.toml 5.3 KB

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