config.toml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. telegram = ""
  27. # Enable Keybase in Contact section by entering your keybase.io username.
  28. keybase = ""
  29. # Date format (refer to Go's date format: http://flippinggodateformat.com )
  30. # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
  31. date_format = "Mon, Jan 2, 2006"
  32. # Enable global LaTeX math rendering?
  33. # If false, you can enable it locally on a per page basis.
  34. math = false
  35. # Enable native social sharing buttons?
  36. sharing = true
  37. # Link custom CSS and JS assets
  38. # (relative to /static/css and /static/js respectively)
  39. custom_css = []
  40. custom_js = []
  41. # Social/Academic Networking
  42. #
  43. # Icon pack "fa" includes the following social network icons:
  44. #
  45. # twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
  46. # youtube, instagram, soundcloud
  47. #
  48. # For email icon, use "fa" icon pack, "envelope" icon, and
  49. # "mailto:your@email.com" as the link.
  50. #
  51. # Full list: https://fortawesome.github.io/Font-Awesome/icons/
  52. #
  53. # Icon pack "ai" includes the following academic network icons:
  54. #
  55. # google-scholar, arxiv, orcid, researchgate, mendeley
  56. #
  57. # Full list: https://jpswalsh.github.io/academicons/
  58. [[params.social]]
  59. icon = "envelope"
  60. icon_pack = "fa"
  61. link = "mailto:test@example.org"
  62. [[params.social]]
  63. icon = "twitter"
  64. icon_pack = "fa"
  65. link = "//twitter.com/GeorgeCushen"
  66. [[params.social]]
  67. icon = "google-scholar"
  68. icon_pack = "ai"
  69. link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
  70. [[params.social]]
  71. icon = "github"
  72. icon_pack = "fa"
  73. link = "//github.com/gcushen"
  74. # Navigation Links
  75. # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
  76. # desired widget in your `content/home/` folder.
  77. # The weight parameter defines the order that the links will appear in.
  78. [[menu.main]]
  79. name = "Home"
  80. url = "#about"
  81. weight = 1
  82. [[menu.main]]
  83. name = "Publications"
  84. url = "#publications_selected"
  85. weight = 2
  86. [[menu.main]]
  87. name = "Posts"
  88. url = "#posts"
  89. weight = 3
  90. [[menu.main]]
  91. name = "Projects"
  92. url = "#projects"
  93. weight = 4
  94. [[menu.main]]
  95. name = "Teaching"
  96. url = "#teaching"
  97. weight = 5
  98. [[menu.main]]
  99. name = "Contact"
  100. url = "#contact"
  101. weight = 6
  102. # Languages
  103. # Create a [languages.X] block for each language you want, where X is the language ID.
  104. # Configure the English version of the website.
  105. [languages.en]
  106. languageCode = "en-us"