|
| 1 | +baseurl = "/" # End your URL with a `/` trailing slash, e.g. `https://example.com/`. |
| 2 | +title = "Academic" |
| 3 | +copyright = "© 2017 Your Name" |
| 4 | +theme = "academic" |
| 5 | +enableEmoji = true |
| 6 | +footnotereturnlinkcontents = "<sup>^</sup>" |
| 7 | +ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"] |
| 8 | +preserveTaxonomyNames = true |
| 9 | +paginate = 10 |
| 10 | + |
| 11 | +# Enable comments by entering your Disqus shortname |
| 12 | +disqusShortname = "" |
| 13 | + |
| 14 | +# Enable analytics by entering your Google Analytics tracking ID |
| 15 | +googleAnalytics = "" |
| 16 | + |
| 17 | +# Default language to use (if you setup multilingual support) |
| 18 | +defaultContentLanguage = "en" |
| 19 | +defaultContentLanguageInSubdir = false |
| 20 | + |
| 21 | +[outputs] |
| 22 | + home = [ "HTML", "CSS", "RSS" ] |
| 23 | + section = [ "HTML", "RSS" ] |
| 24 | + |
| 25 | +# Configure BlackFriday Markdown rendering. |
| 26 | +# See: https://gohugo.io/readfiles/bfconfig/ |
| 27 | +[blackfriday] |
| 28 | + hrefTargetBlank = true # `true` opens external links in a new tab. |
| 29 | + fractions = true # `false` disables smart fractions (e.g. 5/12 formatted as a fraction). |
| 30 | + smartypants = true # `false` disables all smart punctuation substitutions (e.g. smart quotes, dashes, fractions). |
| 31 | + |
| 32 | +[params] |
| 33 | + # Color theme. |
| 34 | + # Choose from `default`, `ocean`, `forest`, `coffee`, or `dark`. |
| 35 | + color_theme = "default" |
| 36 | + |
| 37 | + # Font style. |
| 38 | + # Choose from `default`, `classic`, or `playfair`. |
| 39 | + font = "default" |
| 40 | + |
| 41 | + # Your details. |
| 42 | + name = "Lena Smith" |
| 43 | + role = "Professor of Artificial Intelligence" |
| 44 | + |
| 45 | + # Organizations/Affiliations. |
| 46 | + # Separate multiple entries with a comma, using the form: `[ {name="Org1", url=""}, {name="Org2", url=""} ]`. |
| 47 | + organizations = [ { name = "Stanford University", url = "" } ] |
| 48 | + |
| 49 | + gravatar = false # Get your avatar from Gravatar.com? (true/false) |
| 50 | + avatar = "portrait.jpg" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar. |
| 51 | + |
| 52 | + address = "Building 1 Room 1, Stanford University, California, 90210, USA" |
| 53 | + office_hours = "Monday 10:00 to 13:00 or email for appointment" |
| 54 | + phone = "888 888 88 88" |
| 55 | + skype = "echo123" |
| 56 | + telegram = "" |
| 57 | + |
| 58 | + # Enable Keybase in Contact widget by entering your keybase.io username. |
| 59 | + keybase = "" |
| 60 | + |
| 61 | + # Discussion link (e.g. link to a forum, mailing list, or chat). |
| 62 | + # Uncomment line below to use. |
| 63 | + # discussion = { name = "Discuss", url = "https://discourse.gohugo.io" } |
| 64 | + |
| 65 | + # Diplay a logo in navigation bar rather than title (optional). |
| 66 | + # To enable, place an image in `static/img/` and reference its filename below. To disable, set the value to "". |
| 67 | + logo = "" |
| 68 | + |
| 69 | + # Enable/disable map in Contact widget. |
| 70 | + # To show your address on a map in the contact widget, you need to enter your latitude, longitude and choose |
| 71 | + # a map provider below. |
| 72 | + # To use Google Maps, set `map = 1` and enter your API key that can be obtained here: |
| 73 | + # https://developers.google.com/maps/documentation/javascript/get-api-key |
| 74 | + # To use OpenStreetMap tiles, set `map = 2`. |
| 75 | + # To use OpenStreetMap on a high traffic site, set `map = 3` and enter your API key that can be obtained here: |
| 76 | + # https://www.mapbox.com/studio/account/tokens |
| 77 | + # To get your coordinates, right-click on Google Maps and choose "What's here?". The coords will show up at the bottom. |
| 78 | + # |
| 79 | + # Map provider: |
| 80 | + # 0: No map |
| 81 | + # 1: Google Maps |
| 82 | + # 2: OpenStreetMap (Mapnik) |
| 83 | + # 3: OpenStreetMap (Mapbox) |
| 84 | + map = 0 |
| 85 | + map_api_key = "" |
| 86 | + latitude = "37.4275" |
| 87 | + longitude = "-122.1697" |
| 88 | + zoom = 15 |
| 89 | + |
| 90 | + # Date and time format (refer to Go's date format: http://fuckinggodateformat.com ) |
| 91 | + # Examples: "Mon, Jan 2, 2006" or "2006-01-02" |
| 92 | + date_format = "Jan 2, 2006" |
| 93 | + # Examples: "3:04 pm" or "15:04" |
| 94 | + time_format = "3:04 PM" |
| 95 | + |
| 96 | + # Show estimated reading time for posts? |
| 97 | + reading_time = true |
| 98 | + |
| 99 | + # Display comment count? Requires commenting to be enabled. |
| 100 | + comment_count = true |
| 101 | + |
| 102 | + # Display section pager for posts? |
| 103 | + section_pager = false |
| 104 | + |
| 105 | + # Enable global LaTeX math rendering? |
| 106 | + # If false, you can enable it locally on a per page basis. |
| 107 | + math = false |
| 108 | + |
| 109 | + # Highlight.js options |
| 110 | + # highlight |
| 111 | + # Enable global source code highlighting? If false, you can |
| 112 | + # override it for a particular page in that page's preamble. |
| 113 | + # |
| 114 | + # Example: highlight = true |
| 115 | + # |
| 116 | + # highlight_languages |
| 117 | + # Add support for highlighting additional languages. Support for |
| 118 | + # languages mentioned here will be included in all pages. You |
| 119 | + # can also set this variable for a particular page in that |
| 120 | + # page's preamble. |
| 121 | + # |
| 122 | + # Example: highlight_languages = ["go", "lisp", "ocaml"] |
| 123 | + # |
| 124 | + # highlight_style |
| 125 | + # Choose a different CSS style for highlighting source |
| 126 | + # code. Setting this option in a page's preamble has no |
| 127 | + # effect. |
| 128 | + # |
| 129 | + # Example: highlight_style = "github-gist" |
| 130 | + # |
| 131 | + # For the list of supported languages and styles, see: |
| 132 | + # https://cdnjs.com/libraries/highlight.js/ |
| 133 | + # |
| 134 | + # For more info on the highlighting options, see: |
| 135 | + # https://sourcethemes.com/academic/post/writing-markdown-latex/#highlighting-options |
| 136 | + highlight = true |
| 137 | + highlight_languages = [] |
| 138 | + # highlight_style = "github" |
| 139 | + |
| 140 | + # Enable native social sharing buttons? |
| 141 | + sharing = true |
| 142 | + |
| 143 | + # Link custom CSS and JS assets |
| 144 | + # (relative to /static/css and /static/js respectively) |
| 145 | + custom_css = [] |
| 146 | + custom_js = [] |
| 147 | + |
| 148 | + # Publication types. |
| 149 | + # Used to categorize publications. |
| 150 | + # The index of the publication type in the list is used as its unique numerical identifier. |
| 151 | + # The numeric ID is used in a publication's frontmatter to categorize it. |
| 152 | + # The language can be edited below. |
| 153 | + # For multi-lingual sites, copy this block to each language section at the end of this file. |
| 154 | + publication_types = [ |
| 155 | + 'Uncategorized', # 0 |
| 156 | + 'Conference proceedings', # 1 |
| 157 | + 'Journal', # 2 |
| 158 | + 'Work in progress', # 3 |
| 159 | + 'Technical report', # 4 |
| 160 | + 'Book', # 5 |
| 161 | + 'Book chapter' # 6 |
| 162 | + ] |
| 163 | + |
| 164 | + # Configuration of talk pages. |
| 165 | + [params.talks] |
| 166 | + # Show talk time? |
| 167 | + time = true |
| 168 | + |
| 169 | + # Configuration of publication pages. |
| 170 | + [params.publications] |
| 171 | + # Date format (refer to Go's date format: http://fuckinggodateformat.com ) |
| 172 | + # Examples: "Mon, Jan 2, 2006" or "2006-01-02" |
| 173 | + date_format = "January, 2006" |
| 174 | + |
| 175 | + # Configuration of project pages. |
| 176 | + [params.projects] |
| 177 | + # List publications and talks related to the project? |
| 178 | + list_children = true |
| 179 | + |
| 180 | + # Publication list format. |
| 181 | + # 0 = Simple |
| 182 | + # 1 = Detailed |
| 183 | + # 2 = APA |
| 184 | + # 3 = MLA |
| 185 | + publication_format = 3 |
| 186 | + |
| 187 | + # Social/Academic Networking |
| 188 | + # |
| 189 | + # Icon pack "fa" includes the following social network icons: |
| 190 | + # |
| 191 | + # twitter, weibo, linkedin, github, facebook, pinterest, google-plus, |
| 192 | + # youtube, instagram, soundcloud |
| 193 | + # |
| 194 | + # For email icon, use "fa" icon pack, "envelope" icon, and |
| 195 | + # "mailto:[email protected]" as the link. |
| 196 | + # |
| 197 | + # Full list: https://fortawesome.github.io/Font-Awesome/icons/ |
| 198 | + # |
| 199 | + # Icon pack "ai" includes the following academic network icons: |
| 200 | + # |
| 201 | + # google-scholar, arxiv, orcid, researchgate, mendeley |
| 202 | + # |
| 203 | + # Full list: https://jpswalsh.github.io/academicons/ |
| 204 | + |
| 205 | + [[params.social]] |
| 206 | + icon = "envelope" |
| 207 | + icon_pack = "fa" |
| 208 | + |
| 209 | + |
| 210 | + [[params.social]] |
| 211 | + icon = "twitter" |
| 212 | + icon_pack = "fa" |
| 213 | + link = "//twitter.com/GeorgeCushen" |
| 214 | + |
| 215 | + [[params.social]] |
| 216 | + icon = "google-scholar" |
| 217 | + icon_pack = "ai" |
| 218 | + link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ" |
| 219 | + |
| 220 | + [[params.social]] |
| 221 | + icon = "github" |
| 222 | + icon_pack = "fa" |
| 223 | + link = "//github.com/gcushen" |
| 224 | + |
| 225 | + |
| 226 | +# Navigation Links |
| 227 | +# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the |
| 228 | +# desired widget in your `content/home/` folder. |
| 229 | +# The weight parameter defines the order that the links will appear in. |
| 230 | +[params.menus] |
| 231 | + # Align the main menu to the right of the page? (true/false) |
| 232 | + align_right = true |
| 233 | + |
| 234 | +[[menu.main]] |
| 235 | + name = "Home" |
| 236 | + url = "#about" |
| 237 | + weight = 1 |
| 238 | + |
| 239 | +[[menu.main]] |
| 240 | + name = "Publications" |
| 241 | + url = "#publications_selected" |
| 242 | + weight = 2 |
| 243 | + |
| 244 | +[[menu.main]] |
| 245 | + name = "Posts" |
| 246 | + url = "#posts" |
| 247 | + weight = 3 |
| 248 | + |
| 249 | +[[menu.main]] |
| 250 | + name = "Projects" |
| 251 | + url = "#projects" |
| 252 | + weight = 4 |
| 253 | + |
| 254 | +[[menu.main]] |
| 255 | + name = "Teaching" |
| 256 | + url = "#teaching" |
| 257 | + weight = 5 |
| 258 | + |
| 259 | +[[menu.main]] |
| 260 | + name = "Contact" |
| 261 | + url = "#contact" |
| 262 | + weight = 6 |
| 263 | + |
| 264 | +# Taxonomies. |
| 265 | +[taxonomies] |
| 266 | + tag = "tags" |
| 267 | + category = "categories" |
| 268 | + publication_type = "publication_types" |
| 269 | + |
| 270 | +# Languages |
| 271 | +# Create a [languages.X] block for each language you want, where X is the language ID. |
| 272 | + |
| 273 | +# Configure the English version of the website. |
| 274 | +[Languages.en] |
| 275 | + languageCode = "en-us" |
0 commit comments