config.toml 4.2 KB

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