config.toml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. avatar = "portrait.jpg"
  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
  22. # on a per page basis.
  23. math = false
  24. # Enable native social sharing buttons?
  25. sharing = true
  26. # Link custom CSS and JS assets (relative to /static/css and
  27. # /static/js respectively)
  28. custom_css = []
  29. custom_js = []
  30. # Biography section.
  31. # Section will only be displayed if `content/home/about.md` exists.
  32. [params.about]
  33. interests = [
  34. "Artificial Intelligence",
  35. "Computational Linguistics",
  36. "Information Retrieval"
  37. ]
  38. str_interests = "Interests"
  39. str_education = "Education"
  40. [[params.about.education]]
  41. course = "PhD in Artificial Intelligence"
  42. institution = "Stanford University"
  43. year = 2012
  44. [[params.about.education]]
  45. course = "MEng in Artificial Intelligence"
  46. institution = "Massachusetts Institute of Technology"
  47. year = 2009
  48. [[params.about.education]]
  49. course = "BSc in Artificial Intelligence"
  50. institution = "Massachusetts Institute of Technology"
  51. year = 2008
  52. # Selected Publications section.
  53. # Section will only be displayed if there are publications with
  54. # `selected = true` in their `+++` preamble.
  55. [params.publications_selected]
  56. detailed_list = true
  57. title = "Selected Publications"
  58. subtitle = ""
  59. # Publications section.
  60. # Section will only be displayed if there are publications in
  61. # `content/publication/`.
  62. [params.publications]
  63. count = 10
  64. detailed_list = false
  65. title = "Recent Publications"
  66. subtitle = ""
  67. str_all = "More Publications"
  68. # Posts section.
  69. # Section will only be displayed if there are posts in `content/post/`.
  70. [params.posts]
  71. count = 5
  72. title = "Recent Posts"
  73. subtitle = ""
  74. str_all = "More Posts"
  75. str_read_more = "Read more"
  76. # Projects section.
  77. # Section will only be displayed if there are projects in
  78. # `content/project/`.
  79. [params.projects]
  80. title = "Projects"
  81. subtitle = ""
  82. # Contact section.
  83. [params.contact]
  84. enable = true
  85. title = "Contact"
  86. subtitle = ""
  87. autolink = true # Automatically link email and phone?
  88. # Social/Academic Networking
  89. #
  90. # Icon pack "fa" includes the following social network icons:
  91. #
  92. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  93. # youtube, instagram, soundcloud
  94. #
  95. # For email icon, use "fa" icon pack, "envelope" icon, and
  96. # "mailto:your@email.com" as the link.
  97. #
  98. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  99. #
  100. # Icon pack "ai" includes the following academic network icons:
  101. #
  102. # google-scholar, arxiv, orcid, researchgate, mendeley
  103. #
  104. # Full list: https://jpswalsh.github.io/academicons/
  105. [[params.social]]
  106. icon = "envelope"
  107. icon_pack = "fa"
  108. link = "mailto:test@example.org"
  109. [[params.social]]
  110. icon = "twitter"
  111. icon_pack = "fa"
  112. link = "//twitter.com/GeorgeCushen"
  113. [[params.social]]
  114. icon = "google-scholar"
  115. icon_pack = "ai"
  116. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  117. [[params.social]]
  118. icon = "github"
  119. icon_pack = "fa"
  120. link = "//github.com/gcushen"
  121. # Navigation Links
  122. # The weight parameter defines the order that the links will appear in.
  123. [[menu.main]]
  124. name = "Home"
  125. url = "#top"
  126. weight = 1
  127. [[menu.main]]
  128. name = "Publications"
  129. url = "#publications"
  130. weight = 2
  131. [[menu.main]]
  132. name = "Posts"
  133. url = "#posts"
  134. weight = 3
  135. [[menu.main]]
  136. name = "Projects"
  137. url = "#projects"
  138. weight = 4
  139. [[menu.main]]
  140. name = "Teaching"
  141. url = "#teaching"
  142. weight = 5
  143. [[menu.main]]
  144. name = "Contact"
  145. url = "#contact"
  146. weight = 6