config.toml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. email = "test@example.org"
  15. address = "Stanford AI Lab, Stanford University, California, 90210, USA."
  16. phone = "888 888 88 88"
  17. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  18. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  19. date_format = "Mon, Jan 2, 2006"
  20. # Enable global LaTeX math rendering? If false, you can enable it locally on a per page basis.
  21. math = false
  22. # Link custom CSS and JS assets (relative to /static/css and /static/js respectively)
  23. custom_css = []
  24. custom_js = []
  25. # Biography section.
  26. # Section will only be displayed if `content/home/about.md` exists.
  27. [params.about]
  28. interests = ["Artificial Intelligence", "Computational Linguistics", "Information Retrieval"]
  29. str_interests = "Interests"
  30. str_education = "Education"
  31. [[params.about.education]]
  32. course = "PhD in Artificial Intelligence"
  33. institution = "Stanford University"
  34. year = 2012
  35. [[params.about.education]]
  36. course = "MEng in Artificial Intelligence"
  37. institution = "Massachusetts Institute of Technology"
  38. year = 2009
  39. [[params.about.education]]
  40. course = "BSc in Artificial Intelligence"
  41. institution = "Massachusetts Institute of Technology"
  42. year = 2008
  43. # Publications section.
  44. # Section will only be displayed if there are publications in `content/publication/`.
  45. [params.publications]
  46. count = 10
  47. title = "Recent Publications"
  48. subtitle = ""
  49. str_all = "More Publications"
  50. # Posts section.
  51. # Section will only be displayed if there are posts in `content/post/`.
  52. [params.posts]
  53. count = 5
  54. title = "Recent Posts"
  55. subtitle = ""
  56. str_all = "More Posts"
  57. str_read_more = "Read more"
  58. # Projects section.
  59. # Section will only be displayed if there are projects in `content/project/`.
  60. [params.projects]
  61. title = "Projects"
  62. subtitle = ""
  63. # Contact section.
  64. [params.contact]
  65. enable = true
  66. title = "Contact"
  67. subtitle = ""
  68. autolink = true # Automatically link email and phone?
  69. # Social/Academic Networking
  70. #
  71. # Icon pack "fa" includes the following social network icons:
  72. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, youtube, instagram, soundcloud
  73. # For email icon, use "fa" icon pack, "envelope" icon, and "mailto:your@email.com" as the link.
  74. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  75. #
  76. # Icon pack "ai" includes the following academic network icons:
  77. # google-scholar, arxiv, orcid, researchgate, mendeley
  78. # Full list: https://jpswalsh.github.io/academicons/
  79. [[params.social]]
  80. icon = "envelope"
  81. icon_pack = "fa"
  82. link = "mailto:test@example.org"
  83. [[params.social]]
  84. icon = "twitter"
  85. icon_pack = "fa"
  86. link = "//twitter.com/GeorgeCushen"
  87. [[params.social]]
  88. icon = "google-scholar"
  89. icon_pack = "ai"
  90. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  91. [[params.social]]
  92. icon = "github"
  93. icon_pack = "fa"
  94. link = "//github.com/gcushen"
  95. # Navigation Links
  96. # The weight parameter defines the order that the links will appear in.
  97. [[menu.main]]
  98. name = "Home"
  99. url = "#top"
  100. weight = 1
  101. [[menu.main]]
  102. name = "Publications"
  103. url = "#publications"
  104. weight = 2
  105. [[menu.main]]
  106. name = "Posts"
  107. url = "#posts"
  108. weight = 3
  109. [[menu.main]]
  110. name = "Projects"
  111. url = "#projects"
  112. weight = 4
  113. [[menu.main]]
  114. name = "Teaching"
  115. url = "#teaching"
  116. weight = 5
  117. [[menu.main]]
  118. name = "Contact"
  119. url = "#contact"
  120. weight = 6