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.
|
||||
widget = "tag_cloud" # See https://sourcethemes.com/academic/docs/page-builder/
|
||||
headless = true # This file represents a page section.
|
||||
active = true # Activate this widget? true/false
|
||||
weight = 120 # Order that this section will appear.
|
||||
|
||||
title = "Popular Topics"
|
||||
subtitle = ""
|
||||
|
||||
[content]
|
||||
# Choose the taxonomy from `config.toml` to display (e.g. tags, categories)
|
||||
taxonomy = "tags"
|
||||
|
||||
# Choose how many tags you would like to display (0 = all tags)
|
||||
count = 20
|
||||
|
||||
[design]
|
||||
# Minimum and maximum font sizes (1.0 = 100%).
|
||||
font_size_min = 0.7
|
||||
font_size_max = 2.0
|
||||
+++
|
70
content/home/talks.md
Normal file
@ -0,0 +1,70 @@
|
||||
+++
|
||||
# A Recent and Upcoming Talks section created with the Pages widget.
|
||||
# This section displays recent talks from `content/talk/`.
|
||||
|
||||
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 = 70 # Order that this section will appear.
|
||||
|
||||
title = "Recent & Upcoming Talks"
|
||||
subtitle = ""
|
||||
|
||||
[content]
|
||||
# Page type to display. E.g. post, talk, or publication.
|
||||
page_type = "talk"
|
||||
|
||||
# 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
|
||||
exclude_past = false
|
||||
exclude_future = 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 = ""
|
||||
+++
|
14
content/post/_index.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
title: Posts
|
||||
|
||||
# View.
|
||||
# 1 = List
|
||||
# 2 = Compact
|
||||
# 3 = Card
|
||||
view: 2
|
||||
|
||||
# Optional header image (relative to `static/img/` folder).
|
||||
header:
|
||||
caption: ""
|
||||
image: ""
|
||||
---
|
BIN
content/post/getting-started/featured.jpg
Normal file
After Width: | Height: | Size: 236 KiB |
107
content/post/getting-started/index.md
Normal file
@ -0,0 +1,107 @@
|
||||
---
|
||||
title: 'Academic: the website builder for Hugo'
|
||||
subtitle: 'Create a beautifully simple website in under 10 minutes :rocket:'
|
||||
summary: Create a beautifully simple website in under 10 minutes.
|
||||
authors:
|
||||
- admin
|
||||
- 吳恩達
|
||||
tags:
|
||||
- Academic
|
||||
- 开源
|
||||
categories:
|
||||
- Demo
|
||||
- 教程
|
||||
date: "2016-04-20T00:00:00Z"
|
||||
lastmod: "2019-04-17T00:00:00Z"
|
||||
featured: false
|
||||
draft: false
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
# Placement options: 1 = Full column width, 2 = Out-set, 3 = Screen-width
|
||||
# Focal point options: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
|
||||
image:
|
||||
placement: 2
|
||||
caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/CpkOjOcXdUY)'
|
||||
focal_point: ""
|
||||
preview_only: false
|
||||
|
||||
# Projects (optional).
|
||||
# Associate this post with one or more of your projects.
|
||||
# Simply enter your project's folder or file name without extension.
|
||||
# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`.
|
||||
# Otherwise, set `projects = []`.
|
||||
projects: []
|
||||
---
|
||||
|
||||
**Create a free website with Academic using Markdown, Jupyter, or RStudio. Choose a beautiful color theme and build anything with the Page Builder - over 40 _widgets_, _themes_, and _language packs_ included!**
|
||||
|
||||
[Check out the latest **demo**](https://academic-demo.netlify.com/) of what you'll get in less than 10 minutes, or [view the **showcase**](https://sourcethemes.com/academic/#expo) of personal, project, and business sites.
|
||||
|
||||
- 👉 [**Get Started**](#install)
|
||||
- 📚 [View the **documentation**](https://sourcethemes.com/academic/docs/)
|
||||
- 💬 [**Ask a question** on the forum](https://discourse.gohugo.io)
|
||||
- 👥 [Chat with the **community**](https://spectrum.chat/academic)
|
||||
- 🐦 Twitter: [@source_themes](https://twitter.com/source_themes) [@GeorgeCushen](https://twitter.com/GeorgeCushen) [#MadeWithAcademic](https://twitter.com/search?q=%23MadeWithAcademic&src=typd)
|
||||
- 💡 [Request a **feature** or report a **bug**](https://github.com/gcushen/hugo-academic/issues)
|
||||
- ⬆️ **Updating?** View the [Update Guide](https://sourcethemes.com/academic/docs/update/) and [Release Notes](https://sourcethemes.com/academic/updates/)
|
||||
- :heart: **Support development** of Academic:
|
||||
- ☕️ [**Donate a coffee**](https://paypal.me/cushen)
|
||||
- 💵 [Become a backer on **Patreon**](https://www.patreon.com/cushen)
|
||||
- 🖼️ [Decorate your laptop or journal with an Academic **sticker**](https://www.redbubble.com/people/neutreno/works/34387919-academic)
|
||||
- 👕 [Wear the **T-shirt**](https://academic.threadless.com/)
|
||||
- :woman_technologist: [**Contribute**](https://sourcethemes.com/academic/docs/contribute/)
|
||||
|
||||
{{< figure src="https://raw.githubusercontent.com/gcushen/hugo-academic/master/academic.png" title="Academic is mobile first with a responsive design to ensure that your site looks stunning on every device." >}}
|
||||
|
||||
**Key features:**
|
||||
|
||||
- **Page builder** - Create *anything* with [**widgets**](https://sourcethemes.com/academic/docs/page-builder/) and [**elements**](https://sourcethemes.com/academic/docs/writing-markdown-latex/)
|
||||
- **Edit any type of content** - Blog posts, publications, talks, slides, projects, and more!
|
||||
- **Create content** in [**Markdown**](https://sourcethemes.com/academic/docs/writing-markdown-latex/), [**Jupyter**](https://sourcethemes.com/academic/docs/jupyter/), or [**RStudio**](https://sourcethemes.com/academic/docs/install/#install-with-rstudio)
|
||||
- **Plugin System** - Fully customizable [**color** and **font themes**](https://sourcethemes.com/academic/themes/)
|
||||
- **Display Code and Math** - Code highlighting and [LaTeX math](https://en.wikibooks.org/wiki/LaTeX/Mathematics) supported
|
||||
- **Integrations** - [Google Analytics](https://analytics.google.com), [Disqus commenting](https://disqus.com), Maps, Contact Forms, and more!
|
||||
- **Beautiful Site** - Simple and refreshing one page design
|
||||
- **Industry-Leading SEO** - Help get your website found on search engines and social media
|
||||
- **Media Galleries** - Display your images and videos with captions in a customizable gallery
|
||||
- **Mobile Friendly** - Look amazing on every screen with a mobile friendly version of your site
|
||||
- **Multi-language** - 15+ language packs including English, 中文, and Português
|
||||
- **Multi-user** - Each author gets their own profile page
|
||||
- **Privacy Pack** - Assists with GDPR
|
||||
- **Stand Out** - Bring your site to life with animation, parallax backgrounds, and scroll effects
|
||||
- **One-Click Deployment** - No servers. No databases. Only files.
|
||||
|
||||
## Themes
|
||||
|
||||
Academic comes with **automatic day (light) and night (dark) mode** built-in. Alternatively, visitors can choose their preferred mode - click the sun/moon icon in the top right of the [Demo](https://academic-demo.netlify.com/) to see it in action! Day/night mode can also be disabled by the site admin in `params.toml`.
|
||||
|
||||
[Choose a stunning **theme** and **font**](https://sourcethemes.com/academic/themes/) for your site. Themes are fully [customizable](https://sourcethemes.com/academic/docs/customization/#custom-theme).
|
||||
|
||||
## Ecosystem
|
||||
|
||||
* **[Academic Admin](https://github.com/sourcethemes/academic-admin):** An admin tool to import publications from BibTeX or import assets for an offline site
|
||||
* **[Academic Scripts](https://github.com/sourcethemes/academic-scripts):** Scripts to help migrate content to new versions of Academic
|
||||
|
||||
## Install
|
||||
|
||||
You can choose from one of the following four methods to install:
|
||||
|
||||
* [**one-click install using your web browser (recommended)**](https://sourcethemes.com/academic/docs/install/#install-with-web-browser)
|
||||
* [install on your computer using **Git** with the Command Prompt/Terminal app](https://sourcethemes.com/academic/docs/install/#install-with-git)
|
||||
* [install on your computer by downloading the **ZIP files**](https://sourcethemes.com/academic/docs/install/#install-with-zip)
|
||||
* [install on your computer with **RStudio**](https://sourcethemes.com/academic/docs/install/#install-with-rstudio)
|
||||
|
||||
Then [personalize and deploy your new site](https://sourcethemes.com/academic/docs/get-started/).
|
||||
|
||||
## Updating
|
||||
|
||||
[View the Update Guide](https://sourcethemes.com/academic/docs/update/).
|
||||
|
||||
Feel free to *star* the project on [Github](https://github.com/gcushen/hugo-academic/) to help keep track of [updates](https://sourcethemes.com/academic/updates).
|
||||
|
||||
## License
|
||||
|
||||
Copyright 2016-present [George Cushen](https://georgecushen.com).
|
||||
|
||||
Released under the [MIT](https://github.com/gcushen/hugo-academic/blob/master/LICENSE.md) license.
|
BIN
content/post/jupyter/featured.png
Normal file
After Width: | Height: | Size: 70 KiB |
186
content/post/jupyter/index.ipynb
Normal file
96
content/post/jupyter/index.md
Normal file
@ -0,0 +1,96 @@
|
||||
---
|
||||
title: Display Jupyter Notebooks with Academic
|
||||
subtitle: Learn how to blog in Academic using Jupyter notebooks
|
||||
summary: Learn how to blog in Academic using Jupyter notebooks
|
||||
authors:
|
||||
- admin
|
||||
tags: []
|
||||
categories: []
|
||||
date: "2019-02-05T00:00:00Z"
|
||||
lastMod: "2019-09-05T00:00:00Z"
|
||||
featured: false
|
||||
draft: false
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
image:
|
||||
caption: ""
|
||||
focal_point: ""
|
||||
|
||||
# Projects (optional).
|
||||
# Associate this post with one or more of your projects.
|
||||
# Simply enter your project's folder or file name without extension.
|
||||
# E.g. `projects = ["internal-project"]` references
|
||||
# `content/project/deep-learning/index.md`.
|
||||
# Otherwise, set `projects = []`.
|
||||
projects: []
|
||||
---
|
||||
|
||||
```python
|
||||
from IPython.core.display import Image
|
||||
Image('https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png')
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
![png](./index_1_0.png)
|
||||
|
||||
|
||||
|
||||
|
||||
```python
|
||||
print("Welcome to Academic!")
|
||||
```
|
||||
|
||||
Welcome to Academic!
|
||||
|
||||
|
||||
## Install Python and JupyterLab
|
||||
|
||||
[Install Anaconda](https://www.anaconda.com/distribution/#download-section) which includes Python 3 and JupyterLab.
|
||||
|
||||
Alternatively, install JupyterLab with `pip3 install jupyterlab`.
|
||||
|
||||
## Create or upload a Jupyter notebook
|
||||
|
||||
Run the following commands in your Terminal, substituting `<MY-WEBSITE-FOLDER>` and `<SHORT-POST-TITLE>` with the file path to your Academic website folder and a short title for your blog post (use hyphens instead of spaces), respectively:
|
||||
|
||||
```bash
|
||||
mkdir -p <MY-WEBSITE-FOLDER>/content/post/<SHORT-POST-TITLE>/
|
||||
cd <MY-WEBSITE-FOLDER>/content/post/<SHORT-POST-TITLE>/
|
||||
jupyter lab index.ipynb
|
||||
```
|
||||
|
||||
The `jupyter` command above will launch the JupyterLab editor, allowing us to add Academic metadata and write the content.
|
||||
|
||||
## Edit your post metadata
|
||||
|
||||
The first cell of your Jupter notebook will contain your post metadata ([front matter](https://sourcethemes.com/academic/docs/front-matter/)).
|
||||
|
||||
In Jupter, choose _Markdown_ as the type of the first cell and wrap your Academic metadata in three dashes, indicating that it is YAML front matter:
|
||||
|
||||
```
|
||||
---
|
||||
title: My post's title
|
||||
date: 2019-09-01
|
||||
|
||||
# Put any other Academic metadata here...
|
||||
---
|
||||
```
|
||||
|
||||
Edit the metadata of your post, using the [documentation](https://sourcethemes.com/academic/docs/managing-content) as a guide to the available options.
|
||||
|
||||
To set a [featured image](https://sourcethemes.com/academic/docs/managing-content/#featured-image), place an image named `featured` into your post's folder.
|
||||
|
||||
For other tips, such as using math, see the guide on [writing content with Academic](https://sourcethemes.com/academic/docs/writing-markdown-latex/).
|
||||
|
||||
## Convert notebook to Markdown
|
||||
|
||||
```bash
|
||||
jupyter nbconvert index.ipynb --to markdown --NbConvertApp.output_files_dir=.
|
||||
```
|
||||
|
||||
## Example
|
||||
|
||||
This post was created with Jupyter. The orginal files can be found at https://github.com/gcushen/hugo-academic/tree/master/exampleSite/content/post/jupyter
|
BIN
content/post/jupyter/index_1_0.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
content/post/writing-technical-content/featured.jpg
Normal file
After Width: | Height: | Size: 260 KiB |
296
content/post/writing-technical-content/index.md
Normal file
@ -0,0 +1,296 @@
|
||||
---
|
||||
title: Writing technical content in Academic
|
||||
date: 2019-07-12
|
||||
math: true
|
||||
diagram: true
|
||||
image:
|
||||
placement: 3
|
||||
caption: 'Image credit: [**John Moeses Bauan**](https://unsplash.com/photos/OGZtQF8iC0g)'
|
||||
---
|
||||
|
||||
Academic is designed to give technical content creators a seamless experience. You can focus on the content and Academic handles the rest.
|
||||
|
||||
**Highlight your code snippets, take notes on math classes, and draw diagrams from textual representation.**
|
||||
|
||||
On this page, you'll find some examples of the types of technical content that can be rendered with Academic.
|
||||
|
||||
## Examples
|
||||
|
||||
### Code
|
||||
|
||||
Academic supports a Markdown extension for highlighting code syntax. You can enable this feature by toggling the `highlight` option in your `config/_default/params.toml` file.
|
||||
|
||||
```python
|
||||
import pandas as pd
|
||||
data = pd.read_csv("data.csv")
|
||||
data.head()
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
```python
|
||||
import pandas as pd
|
||||
data = pd.read_csv("data.csv")
|
||||
data.head()
|
||||
```
|
||||
|
||||
### Math
|
||||
|
||||
Academic supports a Markdown extension for $\LaTeX$ math. You can enable this feature by toggling the `math` option in your `config/_default/params.toml` file.
|
||||
|
||||
To render *inline* or *block* math, wrap your LaTeX math with `$...$` or `$$...$$`, respectively.
|
||||
|
||||
Example **math block**:
|
||||
|
||||
```tex
|
||||
$$\gamma_{n} = \frac{
|
||||
\left | \left (\mathbf x_{n} - \mathbf x_{n-1} \right )^T
|
||||
\left [\nabla F (\mathbf x_{n}) - \nabla F (\mathbf x_{n-1}) \right ] \right |}
|
||||
{\left \|\nabla F(\mathbf{x}_{n}) - \nabla F(\mathbf{x}_{n-1}) \right \|^2}$$
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
$$\gamma_{n} = \frac{ \left | \left (\mathbf x_{n} - \mathbf x_{n-1} \right )^T \left [\nabla F (\mathbf x_{n}) - \nabla F (\mathbf x_{n-1}) \right ] \right |}{\left \|\nabla F(\mathbf{x}_{n}) - \nabla F(\mathbf{x}_{n-1}) \right \|^2}$$
|
||||
|
||||
Example **inline math** `$\nabla F(\mathbf{x}_{n})$` renders as $\nabla F(\mathbf{x}_{n})$.
|
||||
|
||||
Example **multi-line math** using the `\\\\` math linebreak:
|
||||
|
||||
```tex
|
||||
$$f(k;p_0^*) = \begin{cases} p_0^* & \text{if }k=1, \\\\
|
||||
1-p_0^* & \text {if }k=0.\end{cases}$$
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
$$f(k;p_0^*) = \begin{cases} p_0^* & \text{if }k=1, \\\\
|
||||
1-p_0^* & \text {if }k=0.\end{cases}$$
|
||||
|
||||
### Diagrams
|
||||
|
||||
Academic supports a Markdown extension for diagrams. You can enable this feature by toggling the `diagram` option in your `config/_default/params.toml` file or by adding `diagram: true` to your page front matter.
|
||||
|
||||
An example **flowchart**:
|
||||
|
||||
```mermaid
|
||||
graph TD
|
||||
A[Hard] -->|Text| B(Round)
|
||||
B --> C{Decision}
|
||||
C -->|One| D[Result 1]
|
||||
C -->|Two| E[Result 2]
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
```mermaid
|
||||
graph TD
|
||||
A[Hard] -->|Text| B(Round)
|
||||
B --> C{Decision}
|
||||
C -->|One| D[Result 1]
|
||||
C -->|Two| E[Result 2]
|
||||
```
|
||||
|
||||
An example **sequence diagram**:
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
Alice->>John: Hello John, how are you?
|
||||
loop Healthcheck
|
||||
John->>John: Fight against hypochondria
|
||||
end
|
||||
Note right of John: Rational thoughts!
|
||||
John-->>Alice: Great!
|
||||
John->>Bob: How about you?
|
||||
Bob-->>John: Jolly good!
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
Alice->>John: Hello John, how are you?
|
||||
loop Healthcheck
|
||||
John->>John: Fight against hypochondria
|
||||
end
|
||||
Note right of John: Rational thoughts!
|
||||
John-->>Alice: Great!
|
||||
John->>Bob: How about you?
|
||||
Bob-->>John: Jolly good!
|
||||
```
|
||||
|
||||
An example **Gantt diagram**:
|
||||
|
||||
```mermaid
|
||||
gantt
|
||||
section Section
|
||||
Completed :done, des1, 2014-01-06,2014-01-08
|
||||
Active :active, des2, 2014-01-07, 3d
|
||||
Parallel 1 : des3, after des1, 1d
|
||||
Parallel 2 : des4, after des1, 1d
|
||||
Parallel 3 : des5, after des3, 1d
|
||||
Parallel 4 : des6, after des4, 1d
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
```mermaid
|
||||
gantt
|
||||
section Section
|
||||
Completed :done, des1, 2014-01-06,2014-01-08
|
||||
Active :active, des2, 2014-01-07, 3d
|
||||
Parallel 1 : des3, after des1, 1d
|
||||
Parallel 2 : des4, after des1, 1d
|
||||
Parallel 3 : des5, after des3, 1d
|
||||
Parallel 4 : des6, after des4, 1d
|
||||
```
|
||||
|
||||
An example **class diagram**:
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
Class01 <|-- AveryLongClass : Cool
|
||||
<<interface>> Class01
|
||||
Class09 --> C2 : Where am i?
|
||||
Class09 --* C3
|
||||
Class09 --|> Class07
|
||||
Class07 : equals()
|
||||
Class07 : Object[] elementData
|
||||
Class01 : size()
|
||||
Class01 : int chimp
|
||||
Class01 : int gorilla
|
||||
class Class10 {
|
||||
<<service>>
|
||||
int id
|
||||
size()
|
||||
}
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
Class01 <|-- AveryLongClass : Cool
|
||||
<<interface>> Class01
|
||||
Class09 --> C2 : Where am i?
|
||||
Class09 --* C3
|
||||
Class09 --|> Class07
|
||||
Class07 : equals()
|
||||
Class07 : Object[] elementData
|
||||
Class01 : size()
|
||||
Class01 : int chimp
|
||||
Class01 : int gorilla
|
||||
class Class10 {
|
||||
<<service>>
|
||||
int id
|
||||
size()
|
||||
}
|
||||
```
|
||||
|
||||
An example **state diagram**:
|
||||
|
||||
```mermaid
|
||||
stateDiagram
|
||||
[*] --> Still
|
||||
Still --> [*]
|
||||
Still --> Moving
|
||||
Moving --> Still
|
||||
Moving --> Crash
|
||||
Crash --> [*]
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
```mermaid
|
||||
stateDiagram
|
||||
[*] --> Still
|
||||
Still --> [*]
|
||||
Still --> Moving
|
||||
Moving --> Still
|
||||
Moving --> Crash
|
||||
Crash --> [*]
|
||||
```
|
||||
|
||||
### Todo lists
|
||||
|
||||
You can even write your todo lists in Academic too:
|
||||
|
||||
```markdown
|
||||
- [x] Write math example
|
||||
- [x] Write diagram example
|
||||
- [ ] Do something else
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
- [x] Write math example
|
||||
- [x] Write diagram example
|
||||
- [ ] Do something else
|
||||
|
||||
### Tables
|
||||
|
||||
Represent your data in tables:
|
||||
|
||||
```markdown
|
||||
| First Header | Second Header |
|
||||
| ------------- | ------------- |
|
||||
| Content Cell | Content Cell |
|
||||
| Content Cell | Content Cell |
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
| First Header | Second Header |
|
||||
| ------------- | ------------- |
|
||||
| Content Cell | Content Cell |
|
||||
| Content Cell | Content Cell |
|
||||
|
||||
### Asides
|
||||
|
||||
Academic supports a [shortcode for asides](https://sourcethemes.com/academic/docs/writing-markdown-latex/#alerts), also referred to as *notices*, *hints*, or *alerts*. By wrapping a paragraph in `{{%/* alert note */%}} ... {{%/* /alert */%}}`, it will render as an aside.
|
||||
|
||||
```markdown
|
||||
{{%/* alert note */%}}
|
||||
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
|
||||
{{%/* /alert */%}}
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
{{% alert note %}}
|
||||
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
|
||||
{{% /alert %}}
|
||||
|
||||
### Spoilers
|
||||
|
||||
Add a spoiler to a page to reveal text, such as an answer to a question, after a button is clicked.
|
||||
|
||||
```markdown
|
||||
{{</* spoiler text="Click to view the spoiler" */>}}
|
||||
You found me!
|
||||
{{</* /spoiler */>}}
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
{{< spoiler text="Click to view the spoiler" >}} You found me! {{< /spoiler >}}
|
||||
|
||||
### Icons
|
||||
|
||||
Academic enables you to use a wide range of [icons from _Font Awesome_ and _Academicons_](https://sourcethemes.com/academic/docs/page-builder/#icons) in addition to [emojis](https://sourcethemes.com/academic/docs/writing-markdown-latex/#emojis).
|
||||
|
||||
Here are some examples using the `icon` shortcode to render icons:
|
||||
|
||||
```markdown
|
||||
{{</* icon name="terminal" pack="fas" */>}} Terminal
|
||||
{{</* icon name="python" pack="fab" */>}} Python
|
||||
{{</* icon name="r-project" pack="fab" */>}} R
|
||||
```
|
||||
|
||||
renders as
|
||||
|
||||
{{< icon name="terminal" pack="fas" >}} Terminal
|
||||
{{< icon name="python" pack="fab" >}} Python
|
||||
{{< icon name="r-project" pack="fab" >}} R
|
||||
|
||||
### Did you find this page helpful? Consider sharing it 🙌
|
15
content/privacy.md
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
title: Privacy Policy
|
||||
date: "2018-06-28T00:00:00+01:00"
|
||||
draft: true
|
||||
share: false
|
||||
commentable: false
|
||||
editable: false
|
||||
|
||||
# Optional header image (relative to `static/img/` folder).
|
||||
header:
|
||||
caption: ""
|
||||
image: ""
|
||||
---
|
||||
|
||||
...
|
BIN
content/project/external-project/featured.jpg
Normal file
After Width: | Height: | Size: 322 KiB |
14
content/project/external-project/index.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
title: External Project
|
||||
summary: An example of linking directly to an external project website using `external_link`.
|
||||
tags:
|
||||
- Demo
|
||||
date: "2016-04-27T00:00:00Z"
|
||||
|
||||
# Optional external URL for project (replaces project detail page).
|
||||
external_link: http://example.org
|
||||
|
||||
image:
|
||||
caption: Photo by Toa Heftiba on Unsplash
|
||||
focal_point: Smart
|
||||
---
|
BIN
content/project/internal-project/featured.jpg
Normal file
After Width: | Height: | Size: 219 KiB |
41
content/project/internal-project/index.md
Normal file
@ -0,0 +1,41 @@
|
||||
---
|
||||
title: Internal Project
|
||||
summary: An example of using the in-built project page.
|
||||
tags:
|
||||
- Deep Learning
|
||||
date: "2016-04-27T00:00:00Z"
|
||||
|
||||
# Optional external URL for project (replaces project detail page).
|
||||
external_link: ""
|
||||
|
||||
image:
|
||||
caption: Photo by rawpixel on Unsplash
|
||||
focal_point: Smart
|
||||
|
||||
links:
|
||||
- icon: twitter
|
||||
icon_pack: fab
|
||||
name: Follow
|
||||
url: https://twitter.com/georgecushen
|
||||
url_code: ""
|
||||
url_pdf: ""
|
||||
url_slides: ""
|
||||
url_video: ""
|
||||
|
||||
# Slides (optional).
|
||||
# Associate this project with Markdown slides.
|
||||
# Simply enter your slide deck's filename without extension.
|
||||
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
|
||||
# Otherwise, set `slides = ""`.
|
||||
slides: example
|
||||
---
|
||||
|
||||
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.
|
15
content/publication/_index.md
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
title: Publications
|
||||
|
||||
# View.
|
||||
# 1 = List
|
||||
# 2 = Compact
|
||||
# 3 = Card
|
||||
# 4 = Citation
|
||||
view: 4
|
||||
|
||||
# Optional header image (relative to `static/img/` folder).
|
||||
header:
|
||||
caption: ""
|
||||
image: ""
|
||||
---
|
8
content/publication/conference-paper/cite.bib
Normal file
@ -0,0 +1,8 @@
|
||||
@inproceedings{example1,
|
||||
title={An example conference paper},
|
||||
author={Bighetti, Nelson and Ford, Robert},
|
||||
booktitle={Source Themes Conference},
|
||||
pages={1--6},
|
||||
year={2013},
|
||||
organization={IEEE}
|
||||
}
|
BIN
content/publication/conference-paper/featured.jpg
Normal file
After Width: | Height: | Size: 305 KiB |
75
content/publication/conference-paper/index.md
Normal file
@ -0,0 +1,75 @@
|
||||
---
|
||||
title: "An example conference paper"
|
||||
authors:
|
||||
- admin
|
||||
- Robert Ford
|
||||
date: "2013-07-01T00:00:00Z"
|
||||
doi: ""
|
||||
|
||||
# Schedule page publish date (NOT publication's date).
|
||||
publishDate: "2017-01-01T00:00:00Z"
|
||||
|
||||
# Publication type.
|
||||
# Legend: 0 = Uncategorized; 1 = Conference paper; 2 = Journal article;
|
||||
# 3 = Preprint / Working Paper; 4 = Report; 5 = Book; 6 = Book section;
|
||||
# 7 = Thesis; 8 = Patent
|
||||
publication_types: ["1"]
|
||||
|
||||
# Publication name and optional abbreviated publication name.
|
||||
publication: In *Source Themes Conference*
|
||||
publication_short: In *STC*
|
||||
|
||||
abstract: 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.
|
||||
|
||||
# Summary. An optional shortened abstract.
|
||||
summary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum.
|
||||
|
||||
tags:
|
||||
- Source Themes
|
||||
featured: true
|
||||
|
||||
links:
|
||||
- name: Custom Link
|
||||
url: http://example.org
|
||||
url_pdf: http://eprints.soton.ac.uk/352095/1/Cushen-IMV2013.pdf
|
||||
url_code: '#'
|
||||
url_dataset: '#'
|
||||
url_poster: '#'
|
||||
url_project: ''
|
||||
url_slides: ''
|
||||
url_source: '#'
|
||||
url_video: '#'
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
image:
|
||||
caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/pLCdAaMFLTE)'
|
||||
focal_point: ""
|
||||
preview_only: false
|
||||
|
||||
# Associated Projects (optional).
|
||||
# Associate this publication with one or more of your projects.
|
||||
# Simply enter your project's folder or file name without extension.
|
||||
# E.g. `internal-project` references `content/project/internal-project/index.md`.
|
||||
# Otherwise, set `projects: []`.
|
||||
projects:
|
||||
- internal-project
|
||||
|
||||
# Slides (optional).
|
||||
# Associate this publication with Markdown slides.
|
||||
# Simply enter your slide deck's filename without extension.
|
||||
# E.g. `slides: "example"` references `content/slides/example/index.md`.
|
||||
# Otherwise, set `slides: ""`.
|
||||
slides: example
|
||||
---
|
||||
|
||||
{{% alert note %}}
|
||||
Click the *Cite* button above to demo the feature to enable visitors to import publication metadata into their reference management software.
|
||||
{{% /alert %}}
|
||||
|
||||
{{% alert note %}}
|
||||
Click the *Slides* button above to demo Academic's Markdown slides feature.
|
||||
{{% /alert %}}
|
||||
|
||||
Supplementary notes can be added here, including [code and math](https://sourcethemes.com/academic/docs/writing-markdown-latex/).
|
||||
|
8
content/publication/journal-article/cite.bib
Normal file
@ -0,0 +1,8 @@
|
||||
@article{example2,
|
||||
title = {An example journal article},
|
||||
author={Bighetti, Nelson and Ford, Robert},
|
||||
journal = {Journal of Source Themes},
|
||||
year = 2015,
|
||||
volume = 1,
|
||||
number = 1
|
||||
}
|
BIN
content/publication/journal-article/featured.jpg
Normal file
After Width: | Height: | Size: 209 KiB |
76
content/publication/journal-article/index.md
Normal file
@ -0,0 +1,76 @@
|
||||
---
|
||||
title: "An example journal article"
|
||||
authors:
|
||||
- admin
|
||||
- Robert Ford
|
||||
author_notes:
|
||||
- "Equal contribution"
|
||||
- "Equal contribution"
|
||||
date: "2015-09-01T00:00:00Z"
|
||||
doi: ""
|
||||
|
||||
# Schedule page publish date (NOT publication's date).
|
||||
publishDate: "2017-01-01T00:00:00Z"
|
||||
|
||||
# Publication type.
|
||||
# Legend: 0 = Uncategorized; 1 = Conference paper; 2 = Journal article;
|
||||
# 3 = Preprint / Working Paper; 4 = Report; 5 = Book; 6 = Book section;
|
||||
# 7 = Thesis; 8 = Patent
|
||||
publication_types: ["2"]
|
||||
|
||||
# Publication name and optional abbreviated publication name.
|
||||
publication: "*Journal of Source Themes, 1*(1)"
|
||||
publication_short: ""
|
||||
|
||||
abstract: 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.
|
||||
|
||||
# Summary. An optional shortened abstract.
|
||||
summary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum.
|
||||
|
||||
tags:
|
||||
- Source Themes
|
||||
featured: false
|
||||
|
||||
# links:
|
||||
# - name: ""
|
||||
# url: ""
|
||||
url_pdf: http://arxiv.org/pdf/1512.04133v1
|
||||
url_code: ''
|
||||
url_dataset: ''
|
||||
url_poster: ''
|
||||
url_project: ''
|
||||
url_slides: ''
|
||||
url_source: ''
|
||||
url_video: ''
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
image:
|
||||
caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/jdD8gXaTZsc)'
|
||||
focal_point: ""
|
||||
preview_only: false
|
||||
|
||||
# Associated Projects (optional).
|
||||
# Associate this publication with one or more of your projects.
|
||||
# Simply enter your project's folder or file name without extension.
|
||||
# E.g. `internal-project` references `content/project/internal-project/index.md`.
|
||||
# Otherwise, set `projects: []`.
|
||||
projects: []
|
||||
|
||||
# Slides (optional).
|
||||
# Associate this publication with Markdown slides.
|
||||
# Simply enter your slide deck's filename without extension.
|
||||
# E.g. `slides: "example"` references `content/slides/example/index.md`.
|
||||
# Otherwise, set `slides: ""`.
|
||||
slides: example
|
||||
---
|
||||
|
||||
{{% alert note %}}
|
||||
Click the *Cite* button above to demo the feature to enable visitors to import publication metadata into their reference management software.
|
||||
{{% /alert %}}
|
||||
|
||||
{{% alert note %}}
|
||||
Click the *Slides* button above to demo Academic's Markdown slides feature.
|
||||
{{% /alert %}}
|
||||
|
||||
Supplementary notes can be added here, including [code and math](https://sourcethemes.com/academic/docs/writing-markdown-latex/).
|
BIN
content/publication/preprint/featured.jpg
Normal file
After Width: | Height: | Size: 216 KiB |
69
content/publication/preprint/index.md
Normal file
@ -0,0 +1,69 @@
|
||||
---
|
||||
title: "An example preprint / working paper"
|
||||
authors:
|
||||
- admin
|
||||
date: "2019-04-07T00:00:00Z"
|
||||
doi: ""
|
||||
|
||||
# Schedule page publish date (NOT publication's date).
|
||||
publishDate: "2017-01-01T00:00:00Z"
|
||||
|
||||
# Publication type.
|
||||
# Legend: 0 = Uncategorized; 1 = Conference paper; 2 = Journal article;
|
||||
# 3 = Preprint / Working Paper; 4 = Report; 5 = Book; 6 = Book section;
|
||||
# 7 = Thesis; 8 = Patent
|
||||
publication_types: ["3"]
|
||||
|
||||
# Publication name and optional abbreviated publication name.
|
||||
publication: ""
|
||||
publication_short: ""
|
||||
|
||||
abstract: 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.
|
||||
|
||||
# Summary. An optional shortened abstract.
|
||||
summary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum.
|
||||
|
||||
tags:
|
||||
- Source Themes
|
||||
featured: false
|
||||
|
||||
links:
|
||||
- name: Custom Link
|
||||
url: http://example.org
|
||||
url_pdf: http://arxiv.org/pdf/1512.04133v1
|
||||
url_code: '#'
|
||||
url_dataset: '#'
|
||||
url_poster: '#'
|
||||
url_project: ''
|
||||
url_slides: ''
|
||||
url_source: '#'
|
||||
url_video: '#'
|
||||
|
||||
# Featured image
|
||||
# To use, add an image named `featured.jpg/png` to your page's folder.
|
||||
image:
|
||||
caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/s9CC2SKySJM)'
|
||||
focal_point: ""
|
||||
preview_only: false
|
||||
|
||||
# Associated Projects (optional).
|
||||
# Associate this publication with one or more of your projects.
|
||||
# Simply enter your project's folder or file name without extension.
|
||||
# E.g. `internal-project` references `content/project/internal-project/index.md`.
|
||||
# Otherwise, set `projects: []`.
|
||||
projects:
|
||||
- internal-project
|
||||
|
||||
# Slides (optional).
|
||||
# Associate this publication with Markdown slides.
|
||||
# Simply enter your slide deck's filename without extension.
|
||||
# E.g. `slides: "example"` references `content/slides/example/index.md`.
|
||||
# Otherwise, set `slides: ""`.
|
||||
slides: example
|
||||
---
|
||||
|
||||
{{% alert note %}}
|
||||
Click the *Slides* button above to demo Academic's Markdown slides feature.
|
||||
{{% /alert %}}
|
||||
|
||||
Supplementary notes can be added here, including [code and math](https://sourcethemes.com/academic/docs/writing-markdown-latex/).
|
166
content/slides/example/index.md
Normal file
@ -0,0 +1,166 @@
|
||||
---
|
||||
title: Slides
|
||||
summary: An introduction to using Academic's Slides feature.
|
||||
authors: []
|
||||
tags: []
|
||||
categories: []
|
||||
date: "2019-02-05T00:00:00Z"
|
||||
slides:
|
||||
# Choose a theme from https://github.com/hakimel/reveal.js#theming
|
||||
theme: black
|
||||
# Choose a code highlighting style (if highlighting enabled in `params.toml`)
|
||||
# Light style: github. Dark style: dracula (default).
|
||||
highlight_style: dracula
|
||||
---
|
||||
|
||||
# Create slides in Markdown with Academic
|
||||
|
||||
[Academic](https://sourcethemes.com/academic/) | [Documentation](https://sourcethemes.com/academic/docs/managing-content/#create-slides)
|
||||
|
||||
---
|
||||
|
||||
## Features
|
||||
|
||||
- Efficiently write slides in Markdown
|
||||
- 3-in-1: Create, Present, and Publish your slides
|
||||
- Supports speaker notes
|
||||
- Mobile friendly slides
|
||||
|
||||
---
|
||||
|
||||
## Controls
|
||||
|
||||
- Next: `Right Arrow` or `Space`
|
||||
- Previous: `Left Arrow`
|
||||
- Start: `Home`
|
||||
- Finish: `End`
|
||||
- Overview: `Esc`
|
||||
- Speaker notes: `S`
|
||||
- Fullscreen: `F`
|
||||
- Zoom: `Alt + Click`
|
||||
- [PDF Export](https://github.com/hakimel/reveal.js#pdf-export): `E`
|
||||
|
||||
---
|
||||
|
||||
## Code Highlighting
|
||||
|
||||
Inline code: `variable`
|
||||
|
||||
Code block:
|
||||
```python
|
||||
porridge = "blueberry"
|
||||
if porridge == "blueberry":
|
||||
print("Eating...")
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Math
|
||||
|
||||
In-line math: $x + y = z$
|
||||
|
||||
Block math:
|
||||
|
||||
$$
|
||||
f\left( x \right) = \;\frac{{2\left( {x + 4} \right)\left( {x - 4} \right)}}{{\left( {x + 4} \right)\left( {x + 1} \right)}}
|
||||
$$
|
||||
|
||||
---
|
||||
|
||||
## Fragments
|
||||
|
||||
Make content appear incrementally
|
||||
|
||||
```
|
||||
{{%/* fragment */%}} One {{%/* /fragment */%}}
|
||||
{{%/* fragment */%}} **Two** {{%/* /fragment */%}}
|
||||
{{%/* fragment */%}} Three {{%/* /fragment */%}}
|
||||
```
|
||||
|
||||
Press `Space` to play!
|
||||
|
||||
{{% fragment %}} One {{% /fragment %}}
|
||||
{{% fragment %}} **Two** {{% /fragment %}}
|
||||
{{% fragment %}} Three {{% /fragment %}}
|
||||
|
||||
---
|
||||
|
||||
A fragment can accept two optional parameters:
|
||||
|
||||
- `class`: use a custom style (requires definition in custom CSS)
|
||||
- `weight`: sets the order in which a fragment appears
|
||||
|
||||
---
|
||||
|
||||
## Speaker Notes
|
||||
|
||||
Add speaker notes to your presentation
|
||||
|
||||
```markdown
|
||||
{{%/* speaker_note */%}}
|
||||
- Only the speaker can read these notes
|
||||
- Press `S` key to view
|
||||
{{%/* /speaker_note */%}}
|
||||
```
|
||||
|
||||
Press the `S` key to view the speaker notes!
|
||||
|
||||
{{< speaker_note >}}
|
||||
- Only the speaker can read these notes
|
||||
- Press `S` key to view
|
||||
{{< /speaker_note >}}
|
||||
|
||||
---
|
||||
|
||||
## Themes
|
||||
|
||||
- black: Black background, white text, blue links (default)
|
||||
- white: White background, black text, blue links
|
||||
- league: Gray background, white text, blue links
|
||||
- beige: Beige background, dark text, brown links
|
||||
- sky: Blue background, thin dark text, blue links
|
||||
|
||||
---
|
||||
|
||||
- night: Black background, thick white text, orange links
|
||||
- serif: Cappuccino background, gray text, brown links
|
||||
- simple: White background, black text, blue links
|
||||
- solarized: Cream-colored background, dark green text, blue links
|
||||
|
||||
---
|
||||
|
||||
{{< slide background-image="/img/boards.jpg" >}}
|
||||
|
||||
## Custom Slide
|
||||
|
||||
Customize the slide style and background
|
||||
|
||||
```markdown
|
||||
{{</* slide background-image="/img/boards.jpg" */>}}
|
||||
{{</* slide background-color="#0000FF" */>}}
|
||||
{{</* slide class="my-style" */>}}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Custom CSS Example
|
||||
|
||||
Let's make headers navy colored.
|
||||
|
||||
Create `assets/css/reveal_custom.css` with:
|
||||
|
||||
```css
|
||||
.reveal section h1,
|
||||
.reveal section h2,
|
||||
.reveal section h3 {
|
||||
color: navy;
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
# Questions?
|
||||
|
||||
[Ask](https://spectrum.chat/academic)
|
||||
|
||||
[Documentation](https://sourcethemes.com/academic/docs/managing-content/#create-slides)
|
14
content/talk/_index.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
title: Recent & Upcoming Talks
|
||||
|
||||
# View.
|
||||
# 1 = List
|
||||
# 2 = Compact
|
||||
# 3 = Card
|
||||
view: 2
|
||||
|
||||
# Optional header image (relative to `static/img/` folder).
|
||||
header:
|
||||
caption: ""
|
||||
image: ""
|
||||
---
|
BIN
content/talk/example/featured.jpg
Normal file
After Width: | Height: | Size: 606 KiB |
75
content/talk/example/index.md
Normal file
@ -0,0 +1,75 @@
|
||||
---
|
||||
title: Example Talk
|
||||
event: Academic Theme Conference
|
||||
event_url: https://example.org
|
||||
|
||||
location: Source Themes HQ
|
||||
address:
|
||||
street: 450 Serra Mall
|
||||
city: Stanford
|
||||
region: CA
|
||||
postcode: '94305'
|
||||
country: United States
|
||||
|
||||
summary: An example talk using Academic's Markdown slides feature.
|
||||
abstract: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellusac 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."
|
||||
|
||||
# Talk start and end times.
|
||||
# End time can optionally be hidden by prefixing the line with `#`.
|
||||
date: "2030-06-01T13:00:00Z"
|
||||
date_end: "2030-06-01T15:00:00Z"
|
||||
all_day: false
|
||||
|
||||
# Schedule page publish date (NOT talk date).
|
||||
publishDate: "2017-01-01T00:00:00Z"
|
||||
|
||||
authors: []
|
||||
tags: []
|
||||
|
||||
# Is this a featured talk? (true/false)
|
||||
featured: false
|
||||
|
||||
image:
|
||||
caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)'
|
||||
focal_point: Right
|
||||
|
||||
links:
|
||||
- icon: twitter
|
||||
icon_pack: fab
|
||||
name: Follow
|
||||
url: https://twitter.com/georgecushen
|
||||
url_code: ""
|
||||
url_pdf: ""
|
||||
url_slides: ""
|
||||
url_video: ""
|
||||
|
||||
# Markdown Slides (optional).
|
||||
# Associate this talk with Markdown slides.
|
||||
# Simply enter your slide deck's filename without extension.
|
||||
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
|
||||
# Otherwise, set `slides = ""`.
|
||||
slides: example
|
||||
|
||||
# Projects (optional).
|
||||
# Associate this post with one or more of your projects.
|
||||
# Simply enter your project's folder or file name without extension.
|
||||
# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`.
|
||||
# Otherwise, set `projects = []`.
|
||||
projects:
|
||||
- internal-project
|
||||
|
||||
# Enable math on this page?
|
||||
math: true
|
||||
---
|
||||
|
||||
{{% alert note %}}
|
||||
Click on the **Slides** button above to view the built-in slides feature.
|
||||
{{% /alert %}}
|
||||
|
||||
Slides can be added in a few ways:
|
||||
|
||||
- **Create** slides using Academic's [*Slides*](https://sourcethemes.com/academic/docs/managing-content/#create-slides) feature and link using `slides` parameter in the front matter of the talk file
|
||||
- **Upload** an existing slide deck to `static/` and link using `url_slides` parameter in the front matter of the talk file
|
||||
- **Embed** your slides (e.g. Google Slides) or presentation video on this page using [shortcodes](https://sourcethemes.com/academic/docs/writing-markdown-latex/).
|
||||
|
||||
Further talk details can easily be added to this page using *Markdown* and $\rm \LaTeX$ math code.
|
15
content/terms.md
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
title: Terms
|
||||
date: "2018-06-28T00:00:00+01:00"
|
||||
draft: true
|
||||
share: false
|
||||
commentable: false
|
||||
editable: false
|
||||
|
||||
# Optional header image (relative to `static/img/` folder).
|
||||
header:
|
||||
caption: ""
|
||||
image: ""
|
||||
---
|
||||
|
||||
...
|
@ -0,0 +1 @@
|
||||
{"Target":"css/academic.css","MediaType":"text/css","Data":{}}
|
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 146 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 443 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 5.6 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 5.9 KiB |