config.toml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. baseurl = "https://example.com"
  2. title = "Academic Theme"
  3. copyright = "© 2016 Your Name"
  4. theme = "academic"
  5. enableEmoji = true
  6. footnotereturnlinkcontents = "<sup>^</sup>"
  7. # Enable comments by entering your Disqus shortname
  8. disqusShortname = ""
  9. # Enable analytics by entering your Google Analytics tracking ID
  10. googleAnalytics = ""
  11. # Default language to use (if you setup multilingual support)
  12. defaultContentLanguage = "en"
  13. defaultContentLanguageInSubdir = false
  14. [blackfriday]
  15. hrefTargetBlank = true
  16. [params]
  17. name = "Lena Smith"
  18. role = "Professor of Artificial Intelligence"
  19. organization = "Stanford University"
  20. avatar = "portrait.jpg"
  21. email = "test@example.org"
  22. address = "Building 1 Room 1, Stanford University, California, 90210, USA"
  23. office_hours = "Monday 10:00 to 13:00 or email for appointment"
  24. phone = "888 888 88 88"
  25. skype = "echo123"
  26. # Enable Keybase in Contact section by entering your keybase.io username.
  27. keybase = ""
  28. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  29. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  30. date_format = "Mon, Jan 2, 2006"
  31. # Enable global LaTeX math rendering?
  32. # If false, you can enable it locally on a per page basis.
  33. math = false
  34. # Enable native social sharing buttons?
  35. sharing = true
  36. # Link custom CSS and JS assets
  37. # (relative to /static/css and /static/js respectively)
  38. custom_css = []
  39. custom_js = []
  40. # Social/Academic Networking
  41. #
  42. # Icon pack "fa" includes the following social network icons:
  43. #
  44. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  45. # youtube, instagram, soundcloud
  46. #
  47. # For email icon, use "fa" icon pack, "envelope" icon, and
  48. # "mailto:your@email.com" as the link.
  49. #
  50. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  51. #
  52. # Icon pack "ai" includes the following academic network icons:
  53. #
  54. # google-scholar, arxiv, orcid, researchgate, mendeley
  55. #
  56. # Full list: https://jpswalsh.github.io/academicons/
  57. [[params.social]]
  58. icon = "envelope"
  59. icon_pack = "fa"
  60. link = "mailto:test@example.org"
  61. [[params.social]]
  62. icon = "twitter"
  63. icon_pack = "fa"
  64. link = "//twitter.com/GeorgeCushen"
  65. [[params.social]]
  66. icon = "google-scholar"
  67. icon_pack = "ai"
  68. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  69. [[params.social]]
  70. icon = "github"
  71. icon_pack = "fa"
  72. link = "//github.com/gcushen"
  73. # Navigation Links
  74. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  75. # desired widget in your `content/home/` folder.
  76. # The weight parameter defines the order that the links will appear in.
  77. [[menu.main]]
  78. name = "Home"
  79. url = "#about"
  80. weight = 1
  81. [[menu.main]]
  82. name = "Publications"
  83. url = "#publications_selected"
  84. weight = 2
  85. [[menu.main]]
  86. name = "Posts"
  87. url = "#posts"
  88. weight = 3
  89. [[menu.main]]
  90. name = "Projects"
  91. url = "#projects"
  92. weight = 4
  93. [[menu.main]]
  94. name = "Teaching"
  95. url = "#teaching"
  96. weight = 5
  97. [[menu.main]]
  98. name = "Contact"
  99. url = "#contact"
  100. weight = 6
  101. # Languages
  102. # Create a [languages.X] block for each language you want, where X is the language ID.
  103. # Configure the English version of the website.
  104. [languages.en]
  105. languageCode = "en-us"