config.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. baseurl = "https://example.com"
  2. title = "Academic Theme"
  3. copyright = "© 2016 Your Name"
  4. languageCode = "en-us"
  5. theme = "academic"
  6. enableEmoji = true
  7. # Enable comments by entering your Disqus shortname
  8. disqusShortname = ""
  9. # Enable analytics by entering your Google Analytics tracking ID
  10. googleAnalytics = ""
  11. [params]
  12. name = "Lena Smith"
  13. role = "Professor of Artificial Intelligence"
  14. organization = "Stanford University"
  15. avatar = "portrait.jpg"
  16. email = "test@example.org"
  17. address = "Stanford AI Lab, Stanford University, California, 90210, USA."
  18. phone = "888 888 88 88"
  19. # Enable Keybase in Contact section by entering your keybase.io username.
  20. keybase = ""
  21. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  22. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  23. date_format = "Mon, Jan 2, 2006"
  24. # Enable global LaTeX math rendering?
  25. # If false, you can enable it locally on a per page basis.
  26. math = false
  27. # Enable native social sharing buttons?
  28. sharing = true
  29. # Link custom CSS and JS assets
  30. # (relative to /static/css and /static/js respectively)
  31. custom_css = []
  32. custom_js = []
  33. # Social/Academic Networking
  34. #
  35. # Icon pack "fa" includes the following social network icons:
  36. #
  37. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  38. # youtube, instagram, soundcloud
  39. #
  40. # For email icon, use "fa" icon pack, "envelope" icon, and
  41. # "mailto:your@email.com" as the link.
  42. #
  43. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  44. #
  45. # Icon pack "ai" includes the following academic network icons:
  46. #
  47. # google-scholar, arxiv, orcid, researchgate, mendeley
  48. #
  49. # Full list: https://jpswalsh.github.io/academicons/
  50. [[params.social]]
  51. icon = "envelope"
  52. icon_pack = "fa"
  53. link = "mailto:test@example.org"
  54. [[params.social]]
  55. icon = "twitter"
  56. icon_pack = "fa"
  57. link = "//twitter.com/GeorgeCushen"
  58. [[params.social]]
  59. icon = "google-scholar"
  60. icon_pack = "ai"
  61. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  62. [[params.social]]
  63. icon = "github"
  64. icon_pack = "fa"
  65. link = "//github.com/gcushen"
  66. # Navigation Links
  67. # The weight parameter defines the order that the links will appear in.
  68. [[menu.main]]
  69. name = "Home"
  70. url = "#bio"
  71. weight = 1
  72. [[menu.main]]
  73. name = "Publications"
  74. url = "#publications"
  75. weight = 2
  76. [[menu.main]]
  77. name = "Posts"
  78. url = "#posts"
  79. weight = 3
  80. [[menu.main]]
  81. name = "Projects"
  82. url = "#projects"
  83. weight = 4
  84. [[menu.main]]
  85. name = "Teaching"
  86. url = "#teaching"
  87. weight = 5
  88. [[menu.main]]
  89. name = "Contact"
  90. url = "#contact"
  91. weight = 6