config.toml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. # Enable global LaTeX math rendering? If false, you can enable it locally on a per page basis.
  23. math = false
  24. # Link custom CSS and JS assets (relative to /static/css and /static/js respectively)
  25. custom_css = []
  26. custom_js = []
  27. [[params.education]]
  28. course = "PhD in Artificial Intelligence"
  29. institution = "Stanford University"
  30. year = 2012
  31. [[params.education]]
  32. course = "MEng in Artificial Intelligence"
  33. institution = "Massachusetts Institute of Technology"
  34. year = 2009
  35. [[params.education]]
  36. course = "BSc in Artificial Intelligence"
  37. institution = "Massachusetts Institute of Technology"
  38. year = 2008
  39. # Social/Academic Networking
  40. #
  41. # Icon pack "fa" includes the following social network icons:
  42. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, youtube, instagram, soundcloud
  43. # For email icon, use "fa" icon pack, "envelope" icon, and "mailto:your@email.com" as the link.
  44. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  45. #
  46. # Icon pack "ai" includes the following academic network icons:
  47. # google-scholar, arxiv, orcid, researchgate, mendeley
  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. #
  67. # The weight parameter defines the order that the links will appear in.
  68. [[menu.main]]
  69. name = "Home"
  70. url = "#"
  71. weight = 1
  72. [[menu.main]]
  73. name = "Publications"
  74. url = "#publications"
  75. weight = 2
  76. [[menu.main]]
  77. name = "Posts"
  78. url = "#posts"
  79. weight = 3
  80. [[menu.main]]
  81. name = "Projects"
  82. url = "#projects"
  83. weight = 4
  84. [[menu.main]]
  85. name = "Teaching"
  86. url = "#teaching"
  87. weight = 5
  88. [[menu.main]]
  89. name = "Contact"
  90. url = "#contact"
  91. weight = 6