config.toml 2.7 KB

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