config.toml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. # Enable native social sharing buttons?
  36. sharing = true
  37. # Link custom CSS and JS assets
  38. # (relative to /static/css and /static/js respectively)
  39. custom_css = []
  40. custom_js = []
  41. # Publication types.
  42. # Used to categorize publications.
  43. # The index of the publication type in the list is used as its unique numerical identifier.
  44. # The numeric ID is used in a publication's frontmatter to categorize it.
  45. # The language can be edited below.
  46. # For multi-lingual sites, copy this block to each language section at the end of this file.
  47. publication_types = [
  48. 'Uncategorized', # 0
  49. 'Conference proceedings', # 1
  50. 'Journal', # 2
  51. 'Work in progress', # 3
  52. 'Technical report', # 4
  53. 'Book', # 5
  54. 'Book chapter' # 6
  55. ]
  56. # Social/Academic Networking
  57. #
  58. # Icon pack "fa" includes the following social network icons:
  59. #
  60. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  61. # youtube, instagram, soundcloud
  62. #
  63. # For email icon, use "fa" icon pack, "envelope" icon, and
  64. # "mailto:your@email.com" as the link.
  65. #
  66. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  67. #
  68. # Icon pack "ai" includes the following academic network icons:
  69. #
  70. # google-scholar, arxiv, orcid, researchgate, mendeley
  71. #
  72. # Full list: https://jpswalsh.github.io/academicons/
  73. [[params.social]]
  74. icon = "envelope"
  75. icon_pack = "fa"
  76. link = "mailto:test@example.org"
  77. [[params.social]]
  78. icon = "twitter"
  79. icon_pack = "fa"
  80. link = "//twitter.com/GeorgeCushen"
  81. [[params.social]]
  82. icon = "google-scholar"
  83. icon_pack = "ai"
  84. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  85. [[params.social]]
  86. icon = "github"
  87. icon_pack = "fa"
  88. link = "//github.com/gcushen"
  89. # Navigation Links
  90. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  91. # desired widget in your `content/home/` folder.
  92. # The weight parameter defines the order that the links will appear in.
  93. [[menu.main]]
  94. name = "Home"
  95. url = "#about"
  96. weight = 1
  97. [[menu.main]]
  98. name = "Publications"
  99. url = "#publications_selected"
  100. weight = 2
  101. [[menu.main]]
  102. name = "Posts"
  103. url = "#posts"
  104. weight = 3
  105. [[menu.main]]
  106. name = "Projects"
  107. url = "#projects"
  108. weight = 4
  109. [[menu.main]]
  110. name = "Teaching"
  111. url = "#teaching"
  112. weight = 5
  113. [[menu.main]]
  114. name = "Contact"
  115. url = "#contact"
  116. weight = 6
  117. # Taxonomies.
  118. [taxonomies]
  119. tag = "tags"
  120. category = "categories"
  121. publication_type = "publication_types"
  122. # Languages
  123. # Create a [languages.X] block for each language you want, where X is the language ID.
  124. # Configure the English version of the website.
  125. [languages.en]
  126. languageCode = "en-us"