copies example to main site
0
assets/images/icon-pack/.gitkeep
Normal file
107
config/_default/config.toml
Normal file
@ -0,0 +1,107 @@
|
||||
# Configuration of Hugo
|
||||
# Guide: https://sourcethemes.com/academic/docs/get-started/
|
||||
# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
|
||||
#
|
||||
# This file is formatted using TOML syntax - learn more at https://learnxinyminutes.com/docs/toml/
|
||||
# Each configuration section is defined by a name in square brackets (e.g. `[outputs]`).
|
||||
|
||||
# Title of your site
|
||||
title = "Academic"
|
||||
|
||||
# The URL of your site.
|
||||
# End your URL with a `/` trailing slash, e.g. `https://example.com/`.
|
||||
baseurl = "/"
|
||||
|
||||
# Enter a copyright notice to display in the site footer.
|
||||
# To display a copyright symbol, type `©`. For current year, type `{year}`.
|
||||
copyright = ""
|
||||
|
||||
############################
|
||||
## Advanced options below ##
|
||||
############################
|
||||
|
||||
# Name of Academic theme folder in `themes/`.
|
||||
theme = "academic"
|
||||
|
||||
# Get last modified date for content from Git?
|
||||
enableGitInfo = false
|
||||
|
||||
# Default language to use (if you setup multilingual support)
|
||||
defaultContentLanguage = "en"
|
||||
hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean languages.
|
||||
defaultContentLanguageInSubdir = false
|
||||
removePathAccents = true # Workaround for https://github.com/gohugoio/hugo/issues/5687
|
||||
|
||||
summaryLength = 30 # Listing summary length in words. Also, see `abstract_length` in `params.toml`.
|
||||
paginate = 10 # Number of items per page in paginated lists.
|
||||
enableEmoji = true
|
||||
footnotereturnlinkcontents = "<sup>^</sup>"
|
||||
ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
|
||||
|
||||
# Workaround Hugo publishing taxonomy URLs as plurals - consistently use singular across Academic.
|
||||
[permalinks]
|
||||
authors = "/author/:slug/"
|
||||
tags = "/tag/:slug/"
|
||||
categories = "/category/:slug/"
|
||||
publication_types = "/publication-type/:slug/"
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "RSS", "JSON", "WebAppManifest" ]
|
||||
section = [ "HTML", "RSS" ]
|
||||
|
||||
[mediaTypes."application/manifest+json"]
|
||||
suffixes = ["webmanifest"]
|
||||
|
||||
[outputFormats.WebAppManifest]
|
||||
mediaType = "application/manifest+json"
|
||||
rel = "manifest"
|
||||
|
||||
# Configure the Markdown renderer.
|
||||
[markup]
|
||||
defaultMarkdownHandler = "goldmark"
|
||||
[markup.goldmark]
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true # Enable user to embed HTML snippets in Markdown content.
|
||||
[markup.highlight]
|
||||
codeFences = false # Disable Hugo's code highlighter as it conflicts with Academic's highligher.
|
||||
[markup.tableOfContents]
|
||||
startLevel = 2
|
||||
endLevel = 3
|
||||
|
||||
[imaging]
|
||||
resampleFilter = "lanczos"
|
||||
quality = 90
|
||||
anchor = "smart" # Anchor for cropping. Options include Smart and Center.
|
||||
|
||||
# Taxonomies.
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
category = "categories"
|
||||
publication_type = "publication_types"
|
||||
author = "authors"
|
||||
|
||||
# Related content.
|
||||
[related]
|
||||
threshold = 80.0
|
||||
includeNewer = true
|
||||
toLower = true
|
||||
|
||||
[[related.indices]]
|
||||
name = "title"
|
||||
weight = 60.0
|
||||
|
||||
[[related.indices]]
|
||||
name = "summary"
|
||||
weight = 50.0
|
||||
|
||||
[[related.indices]]
|
||||
name = "tags"
|
||||
weight = 80.0
|
||||
|
||||
[[related.indices]]
|
||||
name = "categories"
|
||||
weight = 70.0
|
||||
|
||||
[[related.indices]]
|
||||
name = "authors"
|
||||
weight = 20.0
|
20
config/_default/languages.toml
Normal file
@ -0,0 +1,20 @@
|
||||
# Languages
|
||||
# Create a `[X]` block for each language you want, where X is the language ID.
|
||||
# Refer to https://sourcethemes.com/academic/docs/language/
|
||||
|
||||
# Configure the English version of the site.
|
||||
[en]
|
||||
languageCode = "en-us"
|
||||
# contentDir = "content/en" # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.
|
||||
|
||||
# Uncomment the lines below to configure your website in a second language.
|
||||
#[zh]
|
||||
# languageCode = "zh-Hans"
|
||||
# contentDir = "content/zh"
|
||||
# title = "Chinese website title..."
|
||||
# [zh.params]
|
||||
# description = "Site description in Chinese..."
|
||||
# [[zh.menu.main]]
|
||||
# name = "Wo"
|
||||
# url = "#about"
|
||||
# weight = 1
|
41
config/_default/menus.toml
Normal file
@ -0,0 +1,41 @@
|
||||
# Navigation Links
|
||||
# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
|
||||
# desired widget in your `content/home/` folder.
|
||||
# The weight parameter defines the order that the links will appear in.
|
||||
|
||||
[[main]]
|
||||
name = "Demo"
|
||||
url = "#hero"
|
||||
weight = 10
|
||||
|
||||
[[main]]
|
||||
name = "Posts"
|
||||
url = "#posts"
|
||||
weight = 20
|
||||
|
||||
[[main]]
|
||||
name = "Projects"
|
||||
url = "#projects"
|
||||
weight = 30
|
||||
|
||||
[[main]]
|
||||
name = "Publications"
|
||||
url = "#featured"
|
||||
weight = 40
|
||||
|
||||
[[main]]
|
||||
name = "Courses"
|
||||
url = "courses/"
|
||||
weight = 50
|
||||
|
||||
[[main]]
|
||||
name = "Contact"
|
||||
url = "#contact"
|
||||
weight = 60
|
||||
|
||||
# Link to a PDF of your resume/CV from the menu.
|
||||
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
|
||||
# [[main]]
|
||||
# name = "CV"
|
||||
# url = "files/cv.pdf"
|
||||
# weight = 70
|
292
config/_default/params.toml
Normal file
@ -0,0 +1,292 @@
|
||||
# SITE SETUP
|
||||
# Guide: https://sourcethemes.com/academic/docs/get-started/
|
||||
# Documentation: https://sourcethemes.com/academic/docs/
|
||||
#
|
||||
# This file is formatted using TOML syntax - learn more at https://learnxinyminutes.com/docs/toml/
|
||||
# Each configuration section is defined by a name in square brackets (e.g. `[search]`).
|
||||
|
||||
############################
|
||||
## Theme
|
||||
############################
|
||||
|
||||
# Choose a theme.
|
||||
# Latest themes (may require updating): https://sourcethemes.com/academic/themes/
|
||||
# Browse built-in themes in `themes/academic/data/themes/`
|
||||
# Browse user installed themes in `data/themes/`
|
||||
theme = "minimal"
|
||||
|
||||
# Enable users to switch between day and night mode?
|
||||
day_night = true
|
||||
|
||||
# Override the theme's font set (optional).
|
||||
# Latest font sets (may require updating): https://sourcethemes.com/academic/themes/
|
||||
# Browse built-in font sets in `themes/academic/data/fonts/`
|
||||
# Browse user installed font sets in `data/fonts/`
|
||||
font = ""
|
||||
|
||||
# Choose a font size.
|
||||
# Sizes: XS (extra small), S (small), M (medium), L (large - DEFAULT), XL (extra large)
|
||||
font_size = "L"
|
||||
|
||||
############################
|
||||
## Basic Info
|
||||
############################
|
||||
|
||||
# Website type
|
||||
# Improve how search engines understand your site.
|
||||
# For personal sites, choose "Person".
|
||||
# For organizations and projects, choose from https://schema.org/Organization#subtypes
|
||||
# E.g. Person, Organization, LocalBusiness, Project, EducationalOrganization
|
||||
site_type = "Person"
|
||||
|
||||
# Local business type (optional)
|
||||
# If you entered "LocalBusiness" above, choose the type of business from https://schema.org/LocalBusiness#subtypes
|
||||
local_business_type = ""
|
||||
|
||||
# Organization name (optional)
|
||||
# Enter an organization or project name. Defaults to the site title from `config.toml`.
|
||||
org_name = ""
|
||||
|
||||
# Description for social sharing and search engines. If undefined, superuser role is used in place.
|
||||
description = ""
|
||||
|
||||
############################
|
||||
## Site Features
|
||||
############################
|
||||
|
||||
# Enable source code highlighting? true/false
|
||||
# Documentation: https://sourcethemes.com/academic/docs/writing-markdown-latex/#highlighting-options
|
||||
highlight = true
|
||||
highlight_languages = ["r"] # Add support for highlighting additional languages
|
||||
# highlight_style = "github" # For supported styles, see https://cdnjs.com/libraries/highlight.js/
|
||||
|
||||
# Enable LaTeX math rendering? true/false
|
||||
# If false, you can enable math on a per page basis as needed.
|
||||
math = false
|
||||
|
||||
# Enable diagram rendering? true/false
|
||||
# If false, you can enable diagrams on a per page basis as needed.
|
||||
diagram = false
|
||||
|
||||
# Privacy pack
|
||||
# Show a cookie consent message to visitors
|
||||
# Anonymize IP in Google Analytics (if enabled)
|
||||
privacy_pack = false
|
||||
|
||||
# Enable visitors to edit pages?
|
||||
# `repo` defines the repository URL. `editable` defines which page types can be edited.
|
||||
edit_page = {repo_url = "https://github.com/gcushen/hugo-academic", content_dir = "", repo_branch = "master", editable = {docs = true, page = false, post = false}}
|
||||
|
||||
# Show related content at the bottom of pages?
|
||||
show_related = {docs = true, page = false, post = true, project = true, publication = true, talk = true}
|
||||
|
||||
############################
|
||||
## Contact details
|
||||
##
|
||||
## These details power the Contact widget (if enabled).
|
||||
## Additionally, for organizations, these details may be used to enrich search engine results.
|
||||
############################
|
||||
|
||||
# Enter contact details (optional). To hide a field, clear it to "".
|
||||
email = "test@example.org"
|
||||
phone = "888 888 88 88"
|
||||
|
||||
# Address
|
||||
# For country_code, use the 2-letter ISO code (see https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 )
|
||||
address = {street = "450 Serra Mall", city = "Stanford", region = "CA", postcode = "94305", country = "United States", country_code = "US"}
|
||||
|
||||
# Geographic coordinates
|
||||
# To get your coordinates, right-click on Google Maps and choose "What's here?". The coords will show up at the bottom.
|
||||
coordinates = {latitude = "37.4275", longitude = "-122.1697"}
|
||||
|
||||
# Directions for visitors to locate you.
|
||||
directions = "Enter Building 1 and take the stairs to Office 200 on Floor 2"
|
||||
|
||||
# Office hours
|
||||
# A list of your office hours. To remove, set to an empty list `[]`.
|
||||
office_hours = ["Monday 10:00 to 13:00", "Wednesday 09:00 to 10:00"]
|
||||
|
||||
# Enter an optional link for booking appointments (e.g. calendly.com).
|
||||
appointment_url = "https://calendly.com"
|
||||
|
||||
# Contact links
|
||||
# Set to `[]` to disable, or comment out unwanted lines with a hash `#`.
|
||||
contact_links = [
|
||||
{icon = "twitter", icon_pack = "fab", name = "DM Me", link = "https://twitter.com/Twitter"},
|
||||
{icon = "skype", icon_pack = "fab", name = "Skype Me", link = "skype:echo123?call"},
|
||||
{icon = "keybase", icon_pack = "fab", name = "Chat on Keybase", link = "https://keybase.io/"},
|
||||
{icon = "comments", icon_pack = "fas", name = "Discuss on Forum", link = "https://discourse.gohugo.io"},
|
||||
# {icon = "telegram", icon_pack = "fab", name = "Telegram Me", link = "https://telegram.me/@Telegram"},
|
||||
]
|
||||
|
||||
############################
|
||||
## Social
|
||||
############################
|
||||
|
||||
# Default image for social sharing and search engines. Place image in `static/img/` folder and specify image name here.
|
||||
sharing_image = ""
|
||||
|
||||
# Twitter username (without @). Used when a visitor shares your site on Twitter.
|
||||
twitter = ""
|
||||
|
||||
############################
|
||||
## Regional Settings
|
||||
############################
|
||||
|
||||
# Date and time format (refer to https://sourcethemes.com/academic/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "Jan 2, 2006"
|
||||
# Examples: "3:04 pm" or "15:04"
|
||||
time_format = "3:04 PM"
|
||||
|
||||
# Address format (choose from the [address_formats] list below or add you own to the list).
|
||||
address_format = "en-us"
|
||||
|
||||
############################
|
||||
## Advanced
|
||||
############################
|
||||
|
||||
# Main menu alignment (l = left, c = center, r = right) and logo options.
|
||||
main_menu = {align = "l", show_logo = true}
|
||||
|
||||
# Show estimated reading time for posts? (true/false)
|
||||
reading_time = true
|
||||
|
||||
# Display next/previous section pager? (true/false)
|
||||
section_pager = false
|
||||
docs_section_pager = true # Display pager in Docs layout (e.g. tutorials)?
|
||||
|
||||
# Enable in-built social sharing buttons? (true/false)
|
||||
sharing = true
|
||||
|
||||
# Show a copyright license from creativecommons.org in the site footer?
|
||||
# Page specific copyright licenses are also possible by adding this option to a page's front matter.
|
||||
copyright_license = {enable = false, allow_derivatives = false, share_alike = true, allow_commercial = false, notice = "This work is licensed under {license}"}
|
||||
|
||||
# Highlight the site author (superuser) in author lists? (true/false)
|
||||
highlight_superuser = false
|
||||
|
||||
# Link authors to their profile page? (true/false)
|
||||
link_authors = true
|
||||
|
||||
# Abstract length (characters) in the Compact and Portfolio Card list views. Also, see `summaryLength` in `config.toml`.
|
||||
abstract_length = 135
|
||||
|
||||
# Load JS plugins
|
||||
# E.g. To load `/assets/js/custom.js`, set `plugins_js = ["custom"]`.
|
||||
plugins_js = []
|
||||
|
||||
# Avatars.
|
||||
# An avatar is an image that appears next to a user's name.
|
||||
# An avatar can be uploaded as an image named `avatar` to each user's profile or fetched from Gravatar.com.
|
||||
[avatar]
|
||||
# Get user avatars from Gravatar.com? (true/false)
|
||||
gravatar = false
|
||||
|
||||
# Choose a shape for avatar images. Options: circle, square.
|
||||
shape = "circle"
|
||||
|
||||
# Available address formats.
|
||||
[address_formats]
|
||||
en-us = {order = ['street', 'city', 'region', 'postcode'], delimiters = [', ', ', ', ' ', '']}
|
||||
en-gb = {order = ['street', 'city', 'region', 'postcode'], delimiters = [', ', ', ', ', ', '']}
|
||||
de = {order = ['street', 'postcode', 'city'], delimiters = ['<br>', ' ', '']}
|
||||
fr-fr = {order = ['street', 'postcode', 'city'], delimiters = ['<br>', ' ', '']}
|
||||
zh = {order = ['postcode', 'region', 'city', 'street'], delimiters = [' ', ' ', ' ', '']}
|
||||
|
||||
# Configuration of publication pages.
|
||||
[publications]
|
||||
# Date format (refer to https://sourcethemes.com/academic/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "January 2006"
|
||||
|
||||
# Citation style ("apa" or "mla")
|
||||
citation_style = "apa"
|
||||
|
||||
# Configuration of project pages.
|
||||
[projects]
|
||||
# Views for associated content.
|
||||
# 1: List
|
||||
# 2: Compact
|
||||
# 3: Card
|
||||
# 4: Citation (publications only)
|
||||
post_view = 2
|
||||
publication_view = 2
|
||||
talk_view = 2
|
||||
|
||||
############################
|
||||
## Comments
|
||||
############################
|
||||
[comments]
|
||||
# Comment provider:
|
||||
# 0: Disabled
|
||||
# 1: Disqus (https://disqus.com)
|
||||
# 2: Commento (https://commento.io)
|
||||
engine = 0
|
||||
|
||||
# Which page types are commentable?
|
||||
commentable = {page = true, post = true, docs = true, project = true, publication = true, talk = true}
|
||||
|
||||
# Configuration of Disqus.
|
||||
[comments.disqus]
|
||||
shortname = "" # Paste the shortname from your Disqus dashboard.
|
||||
show_count = true # Show comment count in page header? (true/false)
|
||||
|
||||
# Configuration of Commento.
|
||||
[comments.commento]
|
||||
# If self-hosting Commento, enter its URL here (e.g. "https://commento.?.com"), otherwise leave empty.
|
||||
url = ""
|
||||
|
||||
############################
|
||||
## Search
|
||||
############################
|
||||
[search]
|
||||
# Search provider:
|
||||
# 0: No search engine
|
||||
# 1: Academic (built-in)
|
||||
# 2: Algolia (https://www.algolia.com)
|
||||
engine = 1
|
||||
|
||||
# Configuration of Algolia search engine.
|
||||
# Paste the values from your Algolia dashboard.
|
||||
[search.algolia]
|
||||
app_id = ""
|
||||
api_key = ""
|
||||
index_name = ""
|
||||
show_logo = false
|
||||
|
||||
############################
|
||||
## Maps
|
||||
############################
|
||||
[map]
|
||||
# To show your address on a map in the Contact widget, enter your latitude and longitude (above)
|
||||
# and choose a map provider below.
|
||||
#
|
||||
# To use Google Maps, set `engine` to 1 and enter your API key that can be obtained here:
|
||||
# https://developers.google.com/maps/documentation/javascript/get-api-key
|
||||
# To use OpenStreetMap tiles, set `engine` to 2.
|
||||
# To use OpenStreetMap on a high traffic site, set `engine` to 3 and enter your API key that can be obtained here:
|
||||
# https://www.mapbox.com/studio/account/tokens
|
||||
#
|
||||
# Map provider:
|
||||
# 0: No map
|
||||
# 1: Google Maps
|
||||
# 2: OpenStreetMap (Mapnik)
|
||||
# 3: OpenStreetMap (Mapbox)
|
||||
engine = 2
|
||||
api_key = ""
|
||||
zoom = 15
|
||||
|
||||
############################
|
||||
## Marketing
|
||||
############################
|
||||
[marketing]
|
||||
google_analytics = ""
|
||||
google_tag_manager = ""
|
||||
|
||||
############################
|
||||
## Content Management System
|
||||
############################
|
||||
[cms]
|
||||
# See https://sourcethemes.com/academic/docs/install/#install-with-web-browser
|
||||
netlify_cms = true
|
75
content/authors/admin/_index.md
Normal file
@ -0,0 +1,75 @@
|
||||
---
|
||||
# Display name
|
||||
title: Nelson Bighetti
|
||||
|
||||
# Username (this should match the folder name)
|
||||
authors:
|
||||
- admin
|
||||
|
||||
# Is this the primary user of the site?
|
||||
superuser: true
|
||||
|
||||
# Role/position
|
||||
role: Professor of Artificial Intelligence
|
||||
|
||||
# Organizations/Affiliations
|
||||
organizations:
|
||||
- name: Stanford University
|
||||
url: ""
|
||||
|
||||
# Short bio (displayed in user profile at end of posts)
|
||||
bio: My research interests include distributed robotics, mobile computing and programmable matter.
|
||||
|
||||
interests:
|
||||
- Artificial Intelligence
|
||||
- Computational Linguistics
|
||||
- Information Retrieval
|
||||
|
||||
education:
|
||||
courses:
|
||||
- course: PhD in Artificial Intelligence
|
||||
institution: Stanford University
|
||||
year: 2012
|
||||
- course: MEng in Artificial Intelligence
|
||||
institution: Massachusetts Institute of Technology
|
||||
year: 2009
|
||||
- course: BSc in Artificial Intelligence
|
||||
institution: Massachusetts Institute of Technology
|
||||
year: 2008
|
||||
|
||||
# Social/Academic Networking
|
||||
# For available icons, see: https://sourcethemes.com/academic/docs/page-builder/#icons
|
||||
# For an email link, use "fas" icon pack, "envelope" icon, and a link in the
|
||||
# form "mailto:your-email@example.com" or "#contact" for contact widget.
|
||||
social:
|
||||
- icon: envelope
|
||||
icon_pack: fas
|
||||
link: '#contact' # For a direct email link, use "mailto:test@example.org".
|
||||
- icon: twitter
|
||||
icon_pack: fab
|
||||
link: https://twitter.com/GeorgeCushen
|
||||
- icon: google-scholar
|
||||
icon_pack: ai
|
||||
link: https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ
|
||||
- icon: github
|
||||
icon_pack: fab
|
||||
link: https://github.com/gcushen
|
||||
# Link to a PDF of your resume/CV from the About widget.
|
||||
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
|
||||
# - icon: cv
|
||||
# icon_pack: ai
|
||||
# link: files/cv.pdf
|
||||
|
||||
# Enter email to display Gravatar (if Gravatar enabled in Config)
|
||||
email: ""
|
||||
|
||||
# Organizational groups that you belong to (for People widget)
|
||||
# Set this to `[]` or comment out if you are not using People widget.
|
||||
user_groups:
|
||||
- Researchers
|
||||
- Visitors
|
||||
---
|
||||
|
||||
Nelson Bighetti is a professor of artificial intelligence at the Stanford AI Lab. His research interests include distributed robotics, mobile computing and programmable matter. He leads the Robotic Neurobiology group, which develops self-reconfiguring robots, systems of self-organizing robots, and mobile sensor networks.
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed neque elit, tristique placerat feugiat ac, facilisis vitae arcu. Proin eget egestas augue. Praesent ut sem nec arcu pellentesque aliquet. Duis dapibus diam vel metus tempus vulputate.
|
BIN
content/authors/admin/avatar.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
75
content/authors/吳恩達/_index.md
Normal file
@ -0,0 +1,75 @@
|
||||
---
|
||||
# Display name
|
||||
title: 吳恩達
|
||||
|
||||
# Username (this should match the folder name)
|
||||
authors:
|
||||
- 吳恩達
|
||||
|
||||
# Is this the primary user of the site?
|
||||
superuser: false
|
||||
|
||||
# Role/position
|
||||
role: Professor of Artificial Intelligence
|
||||
|
||||
# Organizations/Affiliations
|
||||
organizations:
|
||||
- name: Stanford University
|
||||
url: ""
|
||||
|
||||
# Short bio (displayed in user profile at end of posts)
|
||||
bio: My research interests include distributed robotics, mobile computing and programmable matter.
|
||||
|
||||
interests:
|
||||
- Artificial Intelligence
|
||||
- Computational Linguistics
|
||||
- Information Retrieval
|
||||
|
||||
education:
|
||||
courses:
|
||||
- course: PhD in Artificial Intelligence
|
||||
institution: Stanford University
|
||||
year: 2012
|
||||
- course: MEng in Artificial Intelligence
|
||||
institution: Massachusetts Institute of Technology
|
||||
year: 2009
|
||||
- course: BSc in Artificial Intelligence
|
||||
institution: Massachusetts Institute of Technology
|
||||
year: 2008
|
||||
|
||||
# Social/Academic Networking
|
||||
# For available icons, see: https://sourcethemes.com/academic/docs/page-builder/#icons
|
||||
# For an email link, use "fas" icon pack, "envelope" icon, and a link in the
|
||||
# form "mailto:your-email@example.com" or "#contact" for contact widget.
|
||||
social:
|
||||
- icon: envelope
|
||||
icon_pack: fas
|
||||
link: '#contact' # For a direct email link, use "mailto:test@example.org".
|
||||
- icon: twitter
|
||||
icon_pack: fab
|
||||
link: https://twitter.com/GeorgeCushen
|
||||
- icon: google-scholar
|
||||
icon_pack: ai
|
||||
link: https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ
|
||||
- icon: github
|
||||
icon_pack: fab
|
||||
link: https://github.com/gcushen
|
||||
# Link to a PDF of your resume/CV from the About widget.
|
||||
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
|
||||
# - icon: cv
|
||||
# icon_pack: ai
|
||||
# link: files/cv.pdf
|
||||
|
||||
# Enter email to display Gravatar (if Gravatar enabled in Config)
|
||||
email: ""
|
||||
|
||||
# Organizational groups that you belong to (for People widget)
|
||||
# Set this to `[]` or comment out if you are not using People widget.
|
||||
user_groups:
|
||||
- Researchers
|
||||
- Visitors
|
||||
---
|
||||
|
||||
吳恩達 is a professor of artificial intelligence at the Stanford AI Lab. His research interests include distributed robotics, mobile computing and programmable matter. He leads the Robotic Neurobiology group, which develops self-reconfiguring robots, systems of self-organizing robots, and mobile sensor networks.
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed neque elit, tristique placerat feugiat ac, facilisis vitae arcu. Proin eget egestas augue. Praesent ut sem nec arcu pellentesque aliquet. Duis dapibus diam vel metus tempus vulputate.
|
BIN
content/authors/吳恩達/avatar.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
10
content/courses/_index.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
title: Courses
|
||||
layout: docs # Do not modify.
|
||||
|
||||
# Optional header image (relative to `static/img/` folder).
|
||||
header:
|
||||
caption: ""
|
||||
image: ""
|
||||
---
|
||||
|
62
content/courses/example/_index.md
Normal file
@ -0,0 +1,62 @@
|
||||
---
|
||||
# Course title, summary, and position.
|
||||
linktitle: An Example Course
|
||||
summary: Learn how to use Academic's docs layout for publishing online courses, software documentation, and tutorials.
|
||||
weight: 1
|
||||
|
||||
# Page metadata.
|
||||
title: Overview
|
||||
date: "2018-09-09T00:00:00Z"
|
||||
lastmod: "2018-09-09T00:00:00Z"
|
||||
draft: false # Is this a draft? true/false
|
||||
toc: true # Show table of contents? true/false
|
||||
type: docs # Do not modify.
|
||||
|
||||
# Add menu entry to sidebar.
|
||||
# - name: Declare this menu item as a parent with ID `name`.
|
||||
# - weight: Position of link in menu.
|
||||
menu:
|
||||
example:
|
||||
name: Overview
|
||||
weight: 1
|
||||
---
|
||||
|
||||
## Flexibility
|
||||
|
||||
This feature can be used for publishing content such as:
|
||||
|
||||
* **Online courses**
|
||||
* **Project or software documentation**
|
||||
* **Tutorials**
|
||||
|
||||
The `courses` folder may be renamed. For example, we can rename it to `docs` for software/project documentation or `tutorials` for creating an online course.
|
||||
|
||||
## Delete tutorials
|
||||
|
||||
**To remove these pages, delete the `courses` folder and see below to delete the associated menu link.**
|
||||
|
||||
## Update site menu
|
||||
|
||||
After renaming or deleting the `courses` folder, you may wish to update any `[[main]]` menu links to it by editing your menu configuration at `config/_default/menus.toml`.
|
||||
|
||||
For example, if you delete this folder, you can remove the following from your menu configuration:
|
||||
|
||||
```toml
|
||||
[[main]]
|
||||
name = "Courses"
|
||||
url = "courses/"
|
||||
weight = 50
|
||||
```
|
||||
|
||||
Or, if you are creating a software documentation site, you can rename the `courses` folder to `docs` and update the associated *Courses* menu configuration to:
|
||||
|
||||
```toml
|
||||
[[main]]
|
||||
name = "Docs"
|
||||
url = "docs/"
|
||||
weight = 50
|
||||
```
|
||||
|
||||
## Update the docs menu
|
||||
|
||||
If you use the *docs* layout, note that the name of the menu in the front matter should be in the form `[menu.X]` where `X` is the folder name. Hence, if you rename the `courses/example/` folder, you should also rename the menu definitions in the front matter of files within `courses/example/` from `[menu.example]` to `[menu.<NewFolderName>]`.
|
42
content/courses/example/example1.md
Normal file
@ -0,0 +1,42 @@
|
||||
---
|
||||
title: Example Page 1
|
||||
linktitle: Tips 1-2
|
||||
toc: true
|
||||
type: docs
|
||||
date: "2019-05-05T00:00:00+01:00"
|
||||
draft: false
|
||||
menu:
|
||||
example:
|
||||
parent: Example Topic
|
||||
weight: 1
|
||||
|
||||
# Prev/next pager order (if `docs_section_pager` enabled in `params.toml`)
|
||||
weight: 1
|
||||
---
|
||||
|
||||
In this tutorial, I'll share my top 10 tips for getting started with Academic:
|
||||
|
||||
## Tip 1
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.
|
||||
|
||||
Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.
|
||||
|
||||
Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.
|
||||
|
||||
Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.
|
||||
|
||||
Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.
|
||||
|
||||
|
||||
## Tip 2
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.
|
||||
|
||||
Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.
|
||||
|
||||
Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.
|
||||
|
||||
Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.
|
||||
|
||||
Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.
|
42
content/courses/example/example2.md
Normal file
@ -0,0 +1,42 @@
|
||||
---
|
||||
title: Example Page 2
|
||||
linktitle: Tips 3-4
|
||||
toc: true
|
||||
type: docs
|
||||
date: "2019-05-05T00:00:00+01:00"
|
||||
draft: false
|
||||
menu:
|
||||
example:
|
||||
parent: Example Topic
|
||||
weight: 2
|
||||
|
||||
# Prev/next pager order (if `docs_section_pager` enabled in `params.toml`)
|
||||
weight: 2
|
||||
---
|
||||
|
||||
Here are some more tips for getting started with Academic:
|
||||
|
||||
## Tip 3
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.
|
||||
|
||||
Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.
|
||||
|
||||
Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.
|
||||
|
||||
Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.
|
||||
|
||||
Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.
|
||||
|
||||
|
||||
## Tip 4
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.
|
||||
|
||||
Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.
|
||||
|
||||
Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.
|
||||
|
||||
Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.
|
||||
|
||||
Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.
|
14
content/home/about.md
Normal file
@ -0,0 +1,14 @@
|
||||
+++
|
||||
# About widget.
|
||||
widget = "about" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 20 # Order that this section will appear in.
|
||||
|
||||
title = "Biography"
|
||||
|
||||
# Choose the user profile to display
|
||||
# This should be the username of a profile in your `content/authors/` folder.
|
||||
# See https://sourcethemes.com/academic/docs/get-started/#introduce-yourself
|
||||
author = "admin"
|
||||
+++
|
51
content/home/accomplishments.md
Normal file
@ -0,0 +1,51 @@
|
||||
+++
|
||||
# Accomplishments widget.
|
||||
widget = "accomplishments" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 50 # Order that this section will appear.
|
||||
|
||||
title = "Accomplish­ments"
|
||||
subtitle = ""
|
||||
|
||||
# Date format
|
||||
# Refer to https://sourcethemes.com/academic/docs/customization/#date-format
|
||||
date_format = "Jan 2006"
|
||||
|
||||
# Accomplishments.
|
||||
# Add/remove as many `[[item]]` blocks below as you like.
|
||||
# `title`, `organization` and `date_start` are the required parameters.
|
||||
# Leave other parameters empty if not required.
|
||||
# Begin/end multi-line descriptions with 3 quotes `"""`.
|
||||
|
||||
[[item]]
|
||||
organization = "Coursera"
|
||||
organization_url = "https://www.coursera.org"
|
||||
title = "Neural Networks and Deep Learning"
|
||||
url = ""
|
||||
certificate_url = "https://www.coursera.org"
|
||||
date_start = "2018-10-01"
|
||||
date_end = ""
|
||||
description = ""
|
||||
|
||||
[[item]]
|
||||
organization = "edX"
|
||||
organization_url = "https://www.edx.org"
|
||||
title = "Blockchain Fundamentals"
|
||||
url = "https://www.edx.org/professional-certificate/uc-berkeleyx-blockchain-fundamentals"
|
||||
certificate_url = "https://www.edx.org"
|
||||
date_start = "2018-03-01"
|
||||
date_end = ""
|
||||
description = "Formulated informed blockchain models, hypotheses, and use cases."
|
||||
|
||||
[[item]]
|
||||
organization = "DataCamp"
|
||||
organization_url = "https://www.datacamp.com"
|
||||
title = "Object-Oriented Programming in R: S3 and R6 Course"
|
||||
url = ""
|
||||
certificate_url = "https://www.datacamp.com"
|
||||
date_start = "2017-07-01"
|
||||
date_end = "2017-12-21"
|
||||
description = ""
|
||||
|
||||
+++
|
20
content/home/contact.md
Normal file
@ -0,0 +1,20 @@
|
||||
+++
|
||||
# Contact widget.
|
||||
widget = "contact" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 130 # Order that this section will appear.
|
||||
|
||||
title = "Contact"
|
||||
subtitle = ""
|
||||
|
||||
# Automatically link email and phone?
|
||||
autolink = true
|
||||
|
||||
# Email form provider
|
||||
# 0: Disable email form
|
||||
# 1: Netlify (requires that the site is hosted by Netlify)
|
||||
# 2: formspree.io
|
||||
email_form = 2
|
||||
+++
|
||||
|
65
content/home/demo.md
Normal file
@ -0,0 +1,65 @@
|
||||
+++
|
||||
# A Demo section created with the Blank widget.
|
||||
# Any elements can be added in the body: https://sourcethemes.com/academic/docs/writing-markdown-latex/
|
||||
# Add more sections by duplicating this file and customizing to your requirements.
|
||||
|
||||
widget = "blank" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 15 # Order that this section will appear.
|
||||
|
||||
title = "Demos"
|
||||
subtitle = ""
|
||||
|
||||
[design]
|
||||
# Choose how many columns the section has. Valid values: 1 or 2.
|
||||
columns = "1"
|
||||
|
||||
[design.background]
|
||||
# Apply a background color, gradient, or image.
|
||||
# Uncomment (by removing `#`) an option to apply it.
|
||||
# Choose a light or dark text color by setting `text_color_light`.
|
||||
# Any HTML color name or Hex value is valid.
|
||||
|
||||
# Background color.
|
||||
# color = "navy"
|
||||
|
||||
# Background gradient.
|
||||
# gradient_start = "DeepSkyBlue"
|
||||
# gradient_end = "SkyBlue"
|
||||
|
||||
# Background image.
|
||||
image = "headers/bubbles-wide.jpg" # Name of image in `static/img/`.
|
||||
image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
|
||||
image_size = "cover" # Options are `cover` (default), `contain`, or `actual` size.
|
||||
image_position = "center" # Options include `left`, `center` (default), or `right`.
|
||||
image_parallax = true # Use a fun parallax-like fixed background effect? true/false
|
||||
|
||||
# Text color (true=light or false=dark).
|
||||
text_color_light = true
|
||||
|
||||
[design.spacing]
|
||||
# Customize the section spacing. Order is top, right, bottom, left.
|
||||
padding = ["20px", "0", "20px", "0"]
|
||||
|
||||
[advanced]
|
||||
# Custom CSS.
|
||||
css_style = ""
|
||||
|
||||
# CSS class.
|
||||
css_class = ""
|
||||
+++
|
||||
|
||||
Welcome to the **personal demo** of Academic. Other demos available include:
|
||||
|
||||
- [**Project Demo** (Academic's actual site)](https://sourcethemes.com/academic/)
|
||||
|
||||
**Over 100,000 [Amazing Websites](https://sourcethemes.com/academic/#expo) have Already Been Built with Academic**
|
||||
|
||||
**[Join](https://sourcethemes.com/academic/docs/install/) the Most Empowered Hugo Community**
|
||||
|
||||
{{% alert note %}}
|
||||
This homepage section is an example of adding [elements](https://sourcethemes.com/academic/docs/writing-markdown-latex/) to the [*Blank* widget](https://sourcethemes.com/academic/docs/widgets/).
|
||||
|
||||
Backgrounds can be applied to any section. Here, the *background* option is set give an *image parallax* effect.
|
||||
{{% /alert %}}
|
44
content/home/experience.md
Normal file
@ -0,0 +1,44 @@
|
||||
+++
|
||||
# Experience widget.
|
||||
widget = "experience" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 40 # Order that this section will appear.
|
||||
|
||||
title = "Experience"
|
||||
subtitle = ""
|
||||
|
||||
# Date format for experience
|
||||
# Refer to https://sourcethemes.com/academic/docs/customization/#date-format
|
||||
date_format = "Jan 2006"
|
||||
|
||||
# Experiences.
|
||||
# Add/remove as many `[[experience]]` blocks below as you like.
|
||||
# Required fields are `title`, `company`, and `date_start`.
|
||||
# Leave `date_end` empty if it's your current employer.
|
||||
# Begin/end multi-line descriptions with 3 quotes `"""`.
|
||||
[[experience]]
|
||||
title = "CEO"
|
||||
company = "GenCoin"
|
||||
company_url = ""
|
||||
location = "California"
|
||||
date_start = "2017-01-01"
|
||||
date_end = ""
|
||||
description = """
|
||||
Responsibilities include:
|
||||
|
||||
* Analysing
|
||||
* Modelling
|
||||
* Deploying
|
||||
"""
|
||||
|
||||
[[experience]]
|
||||
title = "Professor"
|
||||
company = "University X"
|
||||
company_url = ""
|
||||
location = "California"
|
||||
date_start = "2016-01-01"
|
||||
date_end = "2016-12-31"
|
||||
description = """Taught electronic engineering and researched semiconductor physics."""
|
||||
|
||||
+++
|
68
content/home/featured.md
Normal file
@ -0,0 +1,68 @@
|
||||
+++
|
||||
# A Featured Publications section created with the Featured Content widget.
|
||||
# This section displays publications from `content/publication/` which have
|
||||
# `featured = true` in their front matter.
|
||||
|
||||
widget = "featured" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 80 # Order that this section will appear.
|
||||
|
||||
title = "Featured Publications"
|
||||
subtitle = ""
|
||||
|
||||
[content]
|
||||
# Page type to display. E.g. post, talk, or publication.
|
||||
page_type = "publication"
|
||||
|
||||
# Choose how much pages you would like to display (0 = all pages)
|
||||
count = 0
|
||||
|
||||
# Page order. Descending (desc) or ascending (asc) date.
|
||||
order = "desc"
|
||||
|
||||
# Show a "See all pages" link underneath the featured content?
|
||||
link_to_archive = false
|
||||
|
||||
# Filter posts by a taxonomy term.
|
||||
[content.filters]
|
||||
tag = ""
|
||||
category = ""
|
||||
publication_type = ""
|
||||
author = ""
|
||||
|
||||
[design]
|
||||
# Toggle between the various page layout types.
|
||||
# 1 = List
|
||||
# 2 = Compact
|
||||
# 3 = Card
|
||||
# 4 = Citation (publication only)
|
||||
view = 3
|
||||
|
||||
[design.background]
|
||||
# Apply a background color, gradient, or image.
|
||||
# Uncomment (by removing `#`) an option to apply it.
|
||||
# Choose a light or dark text color by setting `text_color_light`.
|
||||
# Any HTML color name or Hex value is valid.
|
||||
|
||||
# Background color.
|
||||
# color = "navy"
|
||||
|
||||
# Background gradient.
|
||||
# gradient_start = "DeepSkyBlue"
|
||||
# gradient_end = "SkyBlue"
|
||||
|
||||
# Background image.
|
||||
# image = "background.jpg" # Name of image in `static/img/`.
|
||||
# image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
|
||||
|
||||
# Text color (true=light or false=dark).
|
||||
# text_color_light = true
|
||||
|
||||
[advanced]
|
||||
# Custom CSS.
|
||||
css_style = ""
|
||||
|
||||
# CSS class.
|
||||
css_class = ""
|
||||
+++
|
BIN
content/home/gallery/gallery/theme-1950s.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
content/home/gallery/gallery/theme-apogee.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
content/home/gallery/gallery/theme-coffee-playfair.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
content/home/gallery/gallery/theme-dark.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
content/home/gallery/gallery/theme-default.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
content/home/gallery/gallery/theme-forest.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
content/home/gallery/gallery/theme-ocean.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
content/home/gallery/gallery/theme-strawberry.png
Normal file
After Width: | Height: | Size: 39 KiB |
12
content/home/gallery/index.md
Normal file
@ -0,0 +1,12 @@
|
||||
+++
|
||||
# Gallery section using the Blank widget and Gallery element (shortcode).
|
||||
widget = "blank" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 66 # Order that this section will appear.
|
||||
|
||||
title = "Gallery"
|
||||
subtitle = ""
|
||||
+++
|
||||
|
||||
{{< gallery >}}
|
58
content/home/hero.md
Normal file
@ -0,0 +1,58 @@
|
||||
+++
|
||||
# Hero widget.
|
||||
widget = "hero" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 10 # Order that this section will appear.
|
||||
|
||||
title = "Academic"
|
||||
|
||||
# Hero image (optional). Enter filename of an image in the `static/img/` folder.
|
||||
hero_media = "hero-academic.png"
|
||||
|
||||
[design.background]
|
||||
# Apply a background color, gradient, or image.
|
||||
# Uncomment (by removing `#`) an option to apply it.
|
||||
# Choose a light or dark text color by setting `text_color_light`.
|
||||
# Any HTML color name or Hex value is valid.
|
||||
|
||||
# Background color.
|
||||
# color = "navy"
|
||||
|
||||
# Background gradient.
|
||||
gradient_start = "#4bb4e3"
|
||||
gradient_end = "#2b94c3"
|
||||
|
||||
# Background image.
|
||||
# image = "" # Name of image in `static/img/`.
|
||||
# image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
|
||||
# image_size = "cover" # Options are `cover` (default), `contain`, or `actual` size.
|
||||
# image_position = "center" # Options include `left`, `center` (default), or `right`.
|
||||
# image_parallax = true # Use a fun parallax-like fixed background effect? true/false
|
||||
|
||||
# Text color (true=light or false=dark).
|
||||
text_color_light = true
|
||||
|
||||
# Call to action links (optional).
|
||||
# Display link(s) by specifying a URL and label below. Icon is optional for `[cta]`.
|
||||
# Remove a link/note by deleting a cta/note block.
|
||||
[cta]
|
||||
url = "https://sourcethemes.com/academic/docs/install/"
|
||||
label = "Get Started"
|
||||
icon_pack = "fas"
|
||||
icon = "download"
|
||||
|
||||
[cta_alt]
|
||||
url = "https://sourcethemes.com/academic/"
|
||||
label = "View Documentation"
|
||||
|
||||
# Note. An optional note to show underneath the links.
|
||||
[cta_note]
|
||||
label = '<a class="js-github-release" href="https://sourcethemes.com/academic/updates" data-repo="gcushen/hugo-academic">Latest release<!-- V --></a>'
|
||||
+++
|
||||
|
||||
**The Best Way to Create the Website You Want from Markdown (or Jupyter/RStudio)**
|
||||
|
||||
Build **Anything** with Widgets
|
||||
|
||||
<span style="text-shadow: none;"><a class="github-button" href="https://github.com/gcushen/hugo-academic" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star this on GitHub">Star</a><script async defer src="https://buttons.github.io/buttons.js"></script></span>
|
5
content/home/index.md
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
# Homepage
|
||||
type = "widget_page"
|
||||
headless = true # Homepage is headless, other widget pages are not.
|
||||
+++
|
56
content/home/people.md
Normal file
@ -0,0 +1,56 @@
|
||||
+++
|
||||
# A "Meet the Team" section created with the People widget.
|
||||
# This section displays people from `content/authors/` which belong to the `user_groups` below.
|
||||
|
||||
widget = "people" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = false # Activate this widget? true/false
|
||||
weight = 68 # Order that this section will appear.
|
||||
|
||||
title = "Meet the Team"
|
||||
subtitle = ""
|
||||
|
||||
[content]
|
||||
# Choose which groups/teams of users to display.
|
||||
# Edit `user_groups` in each user's profile to add them to one or more of these groups.
|
||||
user_groups = ["Principal Investigators",
|
||||
"Researchers",
|
||||
"Grad Students",
|
||||
"Administration",
|
||||
"Visitors",
|
||||
"Alumni"]
|
||||
|
||||
[design]
|
||||
# Show user's social networking links? (true/false)
|
||||
show_social = false
|
||||
|
||||
# Show user's interests? (true/false)
|
||||
show_interests = true
|
||||
|
||||
[design.background]
|
||||
# Apply a background color, gradient, or image.
|
||||
# Uncomment (by removing `#`) an option to apply it.
|
||||
# Choose a light or dark text color by setting `text_color_light`.
|
||||
# Any HTML color name or Hex value is valid.
|
||||
|
||||
# Background color.
|
||||
# color = "navy"
|
||||
|
||||
# Background gradient.
|
||||
# gradient_start = "DeepSkyBlue"
|
||||
# gradient_end = "SkyBlue"
|
||||
|
||||
# Background image.
|
||||
# image = "background.jpg" # Name of image in `static/img/`.
|
||||
# image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
|
||||
|
||||
# Text color (true=light or false=dark).
|
||||
# text_color_light = true
|
||||
|
||||
[advanced]
|
||||
# Custom CSS.
|
||||
css_style = ""
|
||||
|
||||
# CSS class.
|
||||
css_class = ""
|
||||
+++
|
68
content/home/posts.md
Normal file
@ -0,0 +1,68 @@
|
||||
+++
|
||||
# A Recent Blog Posts section created with the Pages widget.
|
||||
# This section displays recent blog posts from `content/post/`.
|
||||
|
||||
widget = "pages" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 60 # Order that this section will appear.
|
||||
|
||||
title = "Recent Posts"
|
||||
subtitle = ""
|
||||
|
||||
[content]
|
||||
# Page type to display. E.g. post, talk, or publication.
|
||||
page_type = "post"
|
||||
|
||||
# Choose how much pages you would like to display (0 = all pages)
|
||||
count = 5
|
||||
|
||||
# Choose how many pages you would like to offset by
|
||||
offset = 0
|
||||
|
||||
# Page order. Descending (desc) or ascending (asc) date.
|
||||
order = "desc"
|
||||
|
||||
# Filter posts by a taxonomy term.
|
||||
[content.filters]
|
||||
tag = ""
|
||||
category = ""
|
||||
publication_type = ""
|
||||
author = ""
|
||||
exclude_featured = false
|
||||
|
||||
[design]
|
||||
# Toggle between the various page layout types.
|
||||
# 1 = List
|
||||
# 2 = Compact
|
||||
# 3 = Card
|
||||
# 4 = Citation (publication only)
|
||||
view = 2
|
||||
|
||||
[design.background]
|
||||
# Apply a background color, gradient, or image.
|
||||
# Uncomment (by removing `#`) an option to apply it.
|
||||
# Choose a light or dark text color by setting `text_color_light`.
|
||||
# Any HTML color name or Hex value is valid.
|
||||
|
||||
# Background color.
|
||||
# color = "navy"
|
||||
|
||||
# Background gradient.
|
||||
# gradient_start = "DeepSkyBlue"
|
||||
# gradient_end = "SkyBlue"
|
||||
|
||||
# Background image.
|
||||
# image = "background.jpg" # Name of image in `static/img/`.
|
||||
# image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
|
||||
|
||||
# Text color (true=light or false=dark).
|
||||
# text_color_light = true
|
||||
|
||||
[advanced]
|
||||
# Custom CSS.
|
||||
css_style = ""
|
||||
|
||||
# CSS class.
|
||||
css_class = ""
|
||||
+++
|
77
content/home/projects.md
Normal file
@ -0,0 +1,77 @@
|
||||
+++
|
||||
# A Projects section created with the Portfolio widget.
|
||||
widget = "portfolio" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 65 # Order that this section will appear.
|
||||
|
||||
title = "Projects"
|
||||
subtitle = ""
|
||||
|
||||
[content]
|
||||
# Page type to display. E.g. project.
|
||||
page_type = "project"
|
||||
|
||||
# Filter toolbar (optional).
|
||||
# Add or remove as many filters (`[[content.filter_button]]` instances) as you like.
|
||||
# To show all items, set `tag` to "*".
|
||||
# To filter by a specific tag, set `tag` to an existing tag name.
|
||||
# To remove toolbar, delete/comment all instances of `[[content.filter_button]]` below.
|
||||
|
||||
# Default filter index (e.g. 0 corresponds to the first `[[filter_button]]` instance below).
|
||||
filter_default = 0
|
||||
|
||||
[[content.filter_button]]
|
||||
name = "All"
|
||||
tag = "*"
|
||||
|
||||
[[content.filter_button]]
|
||||
name = "Deep Learning"
|
||||
tag = "Deep Learning"
|
||||
|
||||
[[content.filter_button]]
|
||||
name = "Other"
|
||||
tag = "Demo"
|
||||
|
||||
[design]
|
||||
# Choose how many columns the section has. Valid values: 1 or 2.
|
||||
columns = "2"
|
||||
|
||||
# Toggle between the various page layout types.
|
||||
# 1 = List
|
||||
# 2 = Compact
|
||||
# 3 = Card
|
||||
# 5 = Showcase
|
||||
view = 3
|
||||
|
||||
# For Showcase view, flip alternate rows?
|
||||
flip_alt_rows = false
|
||||
|
||||
[design.background]
|
||||
# Apply a background color, gradient, or image.
|
||||
# Uncomment (by removing `#`) an option to apply it.
|
||||
# Choose a light or dark text color by setting `text_color_light`.
|
||||
# Any HTML color name or Hex value is valid.
|
||||
|
||||
# Background color.
|
||||
# color = "navy"
|
||||
|
||||
# Background gradient.
|
||||
# gradient_start = "DeepSkyBlue"
|
||||
# gradient_end = "SkyBlue"
|
||||
|
||||
# Background image.
|
||||
# image = "background.jpg" # Name of image in `static/img/`.
|
||||
# image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
|
||||
|
||||
# Text color (true=light or false=dark).
|
||||
# text_color_light = true
|
||||
|
||||
[advanced]
|
||||
# Custom CSS.
|
||||
css_style = ""
|
||||
|
||||
# CSS class.
|
||||
css_class = ""
|
||||
+++
|
||||
|
72
content/home/publications.md
Normal file
@ -0,0 +1,72 @@
|
||||
+++
|
||||
# A Recent Publications section created with the Pages widget.
|
||||
# This section displays recent blog posts from `content/publication/`.
|
||||
|
||||
widget = "pages" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 90 # Order that this section will appear.
|
||||
|
||||
title = "Recent Publications"
|
||||
subtitle = ""
|
||||
|
||||
[content]
|
||||
# Page type to display. E.g. post, talk, or publication.
|
||||
page_type = "publication"
|
||||
|
||||
# Choose how much pages you would like to display (0 = all pages)
|
||||
count = 5
|
||||
|
||||
# Choose how many pages you would like to offset by
|
||||
offset = 0
|
||||
|
||||
# Page order. Descending (desc) or ascending (asc) date.
|
||||
order = "desc"
|
||||
|
||||
# Filter posts by a taxonomy term.
|
||||
[content.filters]
|
||||
tag = ""
|
||||
category = ""
|
||||
publication_type = ""
|
||||
author = ""
|
||||
exclude_featured = false
|
||||
|
||||
[design]
|
||||
# Toggle between the various page layout types.
|
||||
# 1 = List
|
||||
# 2 = Compact
|
||||
# 3 = Card
|
||||
# 4 = Citation (publication only)
|
||||
view = 2
|
||||
|
||||
[design.background]
|
||||
# Apply a background color, gradient, or image.
|
||||
# Uncomment (by removing `#`) an option to apply it.
|
||||
# Choose a light or dark text color by setting `text_color_light`.
|
||||
# Any HTML color name or Hex value is valid.
|
||||
|
||||
# Background color.
|
||||
# color = "navy"
|
||||
|
||||
# Background gradient.
|
||||
# gradient_start = "DeepSkyBlue"
|
||||
# gradient_end = "SkyBlue"
|
||||
|
||||
# Background image.
|
||||
# image = "background.jpg" # Name of image in `static/img/`.
|
||||
# image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
|
||||
|
||||
# Text color (true=light or false=dark).
|
||||
# text_color_light = true
|
||||
|
||||
[advanced]
|
||||
# Custom CSS.
|
||||
css_style = ""
|
||||
|
||||
# CSS class.
|
||||
css_class = ""
|
||||
+++
|
||||
|
||||
{{% alert note %}}
|
||||
Quickly discover relevant content by [filtering publications]({{< ref "/publication/_index.md" >}}).
|
||||
{{% /alert %}}
|
51
content/home/skills.md
Normal file
@ -0,0 +1,51 @@
|
||||
+++
|
||||
# A Skills section created with the Featurette widget.
|
||||
widget = "featurette" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 30 # Order that this section will appear.
|
||||
|
||||
title = "Skills"
|
||||
subtitle = ""
|
||||
|
||||
# Showcase personal skills or business features.
|
||||
#
|
||||
# Add/remove as many `[[feature]]` blocks below as you like.
|
||||
#
|
||||
# For available icons, see: https://sourcethemes.com/academic/docs/page-builder/#icons
|
||||
|
||||
[[feature]]
|
||||
icon = "r-project"
|
||||
icon_pack = "fab"
|
||||
name = "R"
|
||||
description = "90%"
|
||||
|
||||
[[feature]]
|
||||
icon = "chart-line"
|
||||
icon_pack = "fas"
|
||||
name = "Statistics"
|
||||
description = "100%"
|
||||
|
||||
[[feature]]
|
||||
icon = "camera-retro"
|
||||
icon_pack = "fas"
|
||||
name = "Photography"
|
||||
description = "10%"
|
||||
|
||||
# Uncomment to use emoji icons.
|
||||
# [[feature]]
|
||||
# icon = ":smile:"
|
||||
# icon_pack = "emoji"
|
||||
# name = "Emojiness"
|
||||
# description = "100%"
|
||||
|
||||
# Uncomment to use custom SVG icons.
|
||||
# Place custom SVG icon in `assets/images/icon-pack/`, creating folders if necessary.
|
||||
# Reference the SVG icon name (without `.svg` extension) in the `icon` field.
|
||||
# [[feature]]
|
||||
# icon = "your-custom-icon-name"
|
||||
# icon_pack = "custom"
|
||||
# name = "Surfing"
|
||||
# description = "90%"
|
||||
|
||||
+++
|
54
content/home/slider.md
Normal file
@ -0,0 +1,54 @@
|
||||
+++
|
||||
# Slider widget.
|
||||
widget = "slider" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = false # Activate this widget? true/false
|
||||
weight = 1 # Order that this section will appear.
|
||||
|
||||
# Slide interval.
|
||||
# Use `false` to disable animation or enter a time in ms, e.g. `5000` (5s).
|
||||
interval = false
|
||||
|
||||
# Slide height (optional).
|
||||
# E.g. `500px` for 500 pixels or `calc(100vh - 70px)` for full screen.
|
||||
height = ""
|
||||
|
||||
# Slides.
|
||||
# Duplicate an `[[item]]` block to add more slides.
|
||||
[[item]]
|
||||
title = "Hello"
|
||||
content = "I am center aligned :smile:"
|
||||
align = "center" # Choose `center`, `left`, or `right`.
|
||||
|
||||
# Overlay a color or image (optional).
|
||||
# Deactivate an option by commenting out the line, prefixing it with `#`.
|
||||
overlay_color = "#666" # An HTML color value.
|
||||
overlay_img = "headers/bubbles-wide.jpg" # Image path relative to your `static/img/` folder.
|
||||
overlay_filter = 0.5 # Darken the image. Value in range 0-1.
|
||||
|
||||
# Call to action button (optional).
|
||||
# Activate the button by specifying a URL and button label below.
|
||||
# Deactivate by commenting out parameters, prefixing lines with `#`.
|
||||
cta_label = "Get Academic"
|
||||
cta_url = "https://sourcethemes.com/academic/"
|
||||
cta_icon_pack = "fas"
|
||||
cta_icon = "graduation-cap"
|
||||
|
||||
[[item]]
|
||||
title = "Left"
|
||||
content = "I am left aligned :smile:"
|
||||
align = "left"
|
||||
|
||||
overlay_color = "#555" # An HTML color value.
|
||||
overlay_img = "" # Image path relative to your `static/img/` folder.
|
||||
overlay_filter = 0.5 # Darken the image. Value in range 0-1.
|
||||
|
||||
[[item]]
|
||||
title = "Right"
|
||||
content = "I am right aligned :smile:"
|
||||
align = "right"
|
||||
|
||||
overlay_color = "#333" # An HTML color value.
|
||||
overlay_img = "" # Image path relative to your `static/img/` folder.
|
||||
overlay_filter = 0.5 # Darken the image. Value in range 0-1.
|
||||
+++
|
22
content/home/tags.md
Normal file
@ -0,0 +1,22 @@
|
||||
+++
|
||||
# Tag Cloud widget.
|
||||