config.toml 2.6 KB

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