config.toml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. interests = ["Artificial Intelligence", "Computational Linguistics", "Information Retrieval"]
  15. email = "test@example.org"
  16. address = "Stanford AI Lab, Stanford University, California, 90210, USA."
  17. phone = "888 888 88 88"
  18. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  19. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  20. date_format = "Mon, Jan 2, 2006"
  21. # Enable global LaTeX math rendering? If false, you can enable it locally on a per page basis.
  22. math = false
  23. # Link custom CSS and JS assets (relative to /static/css and /static/js respectively)
  24. custom_css = []
  25. custom_js = []
  26. [[params.education]]
  27. course = "PhD in Artificial Intelligence"
  28. institution = "Stanford University"
  29. year = 2012
  30. [[params.education]]
  31. course = "MEng in Artificial Intelligence"
  32. institution = "Massachusetts Institute of Technology"
  33. year = 2009
  34. [[params.education]]
  35. course = "BSc in Artificial Intelligence"
  36. institution = "Massachusetts Institute of Technology"
  37. year = 2008
  38. [params.contact]
  39. # Automatically link email and phone?
  40. autolink = true
  41. # Social/Academic Networking
  42. #
  43. # Icon pack "fa" includes the following social network icons:
  44. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, youtube, instagram, soundcloud
  45. # For email icon, use "fa" icon pack, "envelope" icon, and "mailto:your@email.com" as the link.
  46. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  47. #
  48. # Icon pack "ai" includes the following academic network icons:
  49. # google-scholar, arxiv, orcid, researchgate, mendeley
  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. #
  69. # The weight parameter defines the order that the links will appear in.
  70. [[menu.main]]
  71. name = "Home"
  72. url = "#top"
  73. weight = 1
  74. [[menu.main]]
  75. name = "Publications"
  76. url = "#publications"
  77. weight = 2
  78. [[menu.main]]
  79. name = "Posts"
  80. url = "#posts"
  81. weight = 3
  82. [[menu.main]]
  83. name = "Projects"
  84. url = "#projects"
  85. weight = 4
  86. [[menu.main]]
  87. name = "Teaching"
  88. url = "#teaching"
  89. weight = 5
  90. [[menu.main]]
  91. name = "Contact"
  92. url = "#contact"
  93. weight = 6