config.toml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # Website URL (e.g. http://www.example.com/)
  2. baseurl = "/"
  3. title = "Academic Theme"
  4. copyright = "© 2016 Your Name"
  5. languageCode = "en-us"
  6. theme = "academic"
  7. # Enable comments by entering your Disqus shortname
  8. disqusShortname = "spf13"
  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. interests = ["Artificial Intelligence", "Computational Linguistics", "Information Retrieval"]
  16. email = "test@example.org"
  17. address = "Stanford AI Lab, Stanford University, California, 90210, USA."
  18. phone = "888 888 88 88"
  19. # Date format (refer to Go's formatting options)
  20. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  21. date_format = "Mon, Jan 2, 2006"
  22. [[params.education]]
  23. course = "PhD in Artificial Intelligence"
  24. institution = "Stanford University"
  25. year = 2012
  26. [[params.education]]
  27. course = "MEng in Artificial Intelligence"
  28. institution = "Massachusetts Institute of Technology"
  29. year = 2009
  30. [[params.education]]
  31. course = "BSc in Artificial Intelligence"
  32. institution = "Massachusetts Institute of Technology"
  33. year = 2008
  34. # Social/Academic Networking
  35. #
  36. # Icon pack "fa" includes the following social network icons:
  37. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, youtube, instagram, soundcloud
  38. # For email icon, use "fa" icon pack, "envelope" icon, and "mailto:your@email.com" as the link.
  39. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  40. #
  41. # Icon pack "ai" includes the following academic network icons:
  42. # google-scholar, arxiv, orcid, researchgate, mendeley
  43. # Full list: https://jpswalsh.github.io/academicons/
  44. [[params.social]]
  45. icon = "envelope"
  46. icon_pack = "fa"
  47. link = "mailto:test@example.org"
  48. [[params.social]]
  49. icon = "twitter"
  50. icon_pack = "fa"
  51. link = "//twitter.com/GeorgeCushen"
  52. [[params.social]]
  53. icon = "google-scholar"
  54. icon_pack = "ai"
  55. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  56. [[params.social]]
  57. icon = "github"
  58. icon_pack = "fa"
  59. link = "//github.com/gcushen"
  60. # Navigation Links
  61. #
  62. # The weight parameter defines the order that the links will appear in.
  63. [[menu.main]]
  64. name = "Home"
  65. url = "#"
  66. weight = 1
  67. [[menu.main]]
  68. name = "Publications"
  69. url = "#publications"
  70. weight = 2
  71. [[menu.main]]
  72. name = "Posts"
  73. url = "#posts"
  74. weight = 3
  75. [[menu.main]]
  76. name = "Projects"
  77. url = "#projects"
  78. weight = 4
  79. [[menu.main]]
  80. name = "Teaching"
  81. url = "#teaching"
  82. weight = 5
  83. [[menu.main]]
  84. name = "Contact"
  85. url = "#contact"
  86. weight = 6