config.toml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  69. # desired widget in your `content/home/` folder.
  70. # The weight parameter defines the order that the links will appear in.
  71. [[menu.main]]
  72. name = "Home"
  73. url = "#about"
  74. weight = 1
  75. [[menu.main]]
  76. name = "Publications"
  77. url = "#publications_selected"
  78. weight = 2
  79. [[menu.main]]
  80. name = "Posts"
  81. url = "#posts"
  82. weight = 3
  83. [[menu.main]]
  84. name = "Projects"
  85. url = "#projects"
  86. weight = 4
  87. [[menu.main]]
  88. name = "Teaching"
  89. url = "#teaching"
  90. weight = 5
  91. [[menu.main]]
  92. name = "Contact"
  93. url = "#contact"
  94. weight = 6