config.toml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. baseurl = "/"
  2. languageCode = "en-us"
  3. title = "Hugo Academic Theme Demo"
  4. theme = "hugo-academic"
  5. googleAnalytics = ""
  6. [params]
  7. name = "Lena Smith"
  8. role = "Professor of Artificial Intelligence"
  9. organization = "Stanford University"
  10. interests = ["Artificial Intelligence", "Computational Linguistics", "Information Retrieval"]
  11. email = "test@example.org"
  12. address = "Stanford AI Lab, Stanford University, California, 90210, USA."
  13. phone = "888 888 88 88"
  14. # Date format (refer to Go's formatting options)
  15. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  16. date_format = "Mon, Jan 2, 2006"
  17. [[params.education]]
  18. course = "PhD in Artificial Intelligence"
  19. institution = "Stanford University"
  20. year = 2012
  21. [[params.education]]
  22. course = "MEng in Artificial Intelligence"
  23. institution = "Massachusetts Institute of Technology"
  24. year = 2009
  25. [[params.education]]
  26. course = "BSc in Artificial Intelligence"
  27. institution = "Massachusetts Institute of Technology"
  28. year = 2008
  29. # Social/Academic Networking
  30. #
  31. # Icon pack "fa" includes the following social network icons:
  32. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, youtube, instagram, soundcloud
  33. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  34. #
  35. # Icon pack "ai" includes the following academic network icons:
  36. # google-scholar, arxiv, orcid, researchgate, mendeley
  37. # Full list: https://jpswalsh.github.io/academicons/
  38. [[params.contact.social]]
  39. icon = "twitter"
  40. icon_pack = "fa"
  41. link = "//twitter.com/GeorgeCushen"
  42. [[params.contact.social]]
  43. icon = "google-scholar"
  44. icon_pack = "ai"
  45. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  46. [[params.contact.social]]
  47. icon = "github"
  48. icon_pack = "fa"
  49. link = "//github.com/gcushen"
  50. [[menu.main]]
  51. name = "Bio"
  52. url = "/"
  53. weight = 1
  54. [[menu.main]]
  55. name = "Publications"
  56. url = "/#publications"
  57. weight = 2
  58. [[menu.main]]
  59. name = "News"
  60. url = "/#news"
  61. weight = 3
  62. [[menu.main]]
  63. name = "Projects"
  64. url = "/#projects"
  65. weight = 4
  66. [[menu.main]]
  67. name = "Teaching"
  68. url = "/#teaching"
  69. weight = 5
  70. [[menu.main]]
  71. name = "Contact"
  72. url = "/#contact"
  73. weight = 6