config.toml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. # Publications section.
  46. # Section will only be displayed if there are publications in `content/publication/`.
  47. [params.publications]
  48. count = 10
  49. detailed_list = false
  50. title = "Recent Publications"
  51. subtitle = ""
  52. str_all = "More Publications"
  53. # Posts section.
  54. # Section will only be displayed if there are posts in `content/post/`.
  55. [params.posts]
  56. count = 5
  57. title = "Recent Posts"
  58. subtitle = ""
  59. str_all = "More Posts"
  60. str_read_more = "Read more"
  61. # Projects section.
  62. # Section will only be displayed if there are projects in `content/project/`.
  63. [params.projects]
  64. title = "Projects"
  65. subtitle = ""
  66. # Contact section.
  67. [params.contact]
  68. enable = true
  69. title = "Contact"
  70. subtitle = ""
  71. autolink = true # Automatically link email and phone?
  72. # Social/Academic Networking
  73. #
  74. # Icon pack "fa" includes the following social network icons:
  75. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, youtube, instagram, soundcloud
  76. # For email icon, use "fa" icon pack, "envelope" icon, and "mailto:your@email.com" as the link.
  77. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  78. #
  79. # Icon pack "ai" includes the following academic network icons:
  80. # google-scholar, arxiv, orcid, researchgate, mendeley
  81. # Full list: https://jpswalsh.github.io/academicons/
  82. [[params.social]]
  83. icon = "envelope"
  84. icon_pack = "fa"
  85. link = "mailto:test@example.org"
  86. [[params.social]]
  87. icon = "twitter"
  88. icon_pack = "fa"
  89. link = "//twitter.com/GeorgeCushen"
  90. [[params.social]]
  91. icon = "google-scholar"
  92. icon_pack = "ai"
  93. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  94. [[params.social]]
  95. icon = "github"
  96. icon_pack = "fa"
  97. link = "//github.com/gcushen"
  98. # Navigation Links
  99. # The weight parameter defines the order that the links will appear in.
  100. [[menu.main]]
  101. name = "Home"
  102. url = "#top"
  103. weight = 1
  104. [[menu.main]]
  105. name = "Publications"
  106. url = "#publications"
  107. weight = 2
  108. [[menu.main]]
  109. name = "Posts"
  110. url = "#posts"
  111. weight = 3
  112. [[menu.main]]
  113. name = "Projects"
  114. url = "#projects"
  115. weight = 4
  116. [[menu.main]]
  117. name = "Teaching"
  118. url = "#teaching"
  119. weight = 5
  120. [[menu.main]]
  121. name = "Contact"
  122. url = "#contact"
  123. weight = 6