theme: update v4.3.0-dev to fix People widget + convert content to YAML

This commit is contained in:
George Cushen 2019-05-06 17:54:11 +01:00
parent 5d6d67a206
commit 5f6f1323f6
6 changed files with 77 additions and 89 deletions

View File

@ -1,86 +1,74 @@
+++ ---
# Display name # Display name
name = "Nelson Bighetti" name: Nelson Bighetti
# Username (this should match the folder name) # Username (this should match the folder name)
authors = ["admin"] authors:
- admin
# Is this the primary user of the site? # Is this the primary user of the site?
superuser = true superuser: true
# Role/position # Role/position
role = "Professor of Artificial Intelligence" role: Professor of Artificial Intelligence
# Organizations/Affiliations # Organizations/Affiliations
# Separate multiple entries with a comma, using the form: `[ {name="Org1", url=""}, {name="Org2", url=""} ]`. organizations:
organizations = [ { name = "Stanford University", url = "" } ] - name: Stanford University
url: ""
# Short bio (displayed in user profile at end of posts) # Short bio (displayed in user profile at end of posts)
bio = "My research interests include distributed robotics, mobile computing and programmable matter." bio: My research interests include distributed robotics, mobile computing and programmable matter.
# Enter email to display Gravatar (if Gravatar enabled in Config) interests:
email = "" - Artificial Intelligence
- Computational Linguistics
- Information Retrieval
# List (academic) interests or hobbies education:
interests = [ courses:
"Artificial Intelligence", - course: PhD in Artificial Intelligence
"Computational Linguistics", institution: Stanford University
"Information Retrieval" year: 2012
] - course: MEng in Artificial Intelligence
institution: Massachusetts Institute of Technology
# Organizational groups that you belong to (for People widget) year: 2009
# Set this to `[]` or comment out if you are not using People widget. - course: BSc in Artificial Intelligence
user_groups = ["Researchers", "Visitors"] institution: Massachusetts Institute of Technology
year: 2008
# List qualifications (such as academic degrees)
[[education.courses]]
course = "PhD in Artificial Intelligence"
institution = "Stanford University"
year = 2012
[[education.courses]]
course = "MEng in Artificial Intelligence"
institution = "Massachusetts Institute of Technology"
year = 2009
[[education.courses]]
course = "BSc in Artificial Intelligence"
institution = "Massachusetts Institute of Technology"
year = 2008
# Social/Academic Networking # Social/Academic Networking
# For available icons, see: https://sourcethemes.com/academic/docs/widgets/#icons # For available icons, see: https://sourcethemes.com/academic/docs/widgets/#icons
# For an email link, use "fas" icon pack, "envelope" icon, and a link in the # 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. # form "mailto:your-email@example.com" or "#contact" for contact widget.
social:
[[social]] - icon: envelope
icon = "envelope" icon_pack: fas
icon_pack = "fas" link: '#contact' # For a direct email link, use "mailto:test@example.org".
link = "#contact" # For a direct email link, use "mailto:test@example.org". - icon: twitter
icon_pack: fab
[[social]] link: https://twitter.com/GeorgeCushen
icon = "twitter" - icon: google-scholar
icon_pack = "fab" icon_pack: ai
link = "https://twitter.com/GeorgeCushen" link: https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ
- icon: github
[[social]] icon_pack: fab
icon = "google-scholar" link: https://github.com/gcushen
icon_pack = "ai"
link = "https://scholar.google.co.uk/citations?user=sIwtMXoAAAAJ"
[[social]]
icon = "github"
icon_pack = "fab"
link = "https://github.com/gcushen"
# Link to a PDF of your resume/CV from the About widget. # 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. # To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
# [[social]] # - icon: cv
# icon = "cv" # icon_pack: ai
# icon_pack = "ai" # link: files/cv.pdf
# 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. 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.

View File

@ -1,14 +1,14 @@
+++ ---
title = "Posts" title: Posts
# View. # View.
# 1 = List # 1 = List
# 2 = Compact # 2 = Compact
# 3 = Card # 3 = Card
view = 2 view: 2
# Optional featured image (relative to `static/img/` folder). # Optional header image (relative to `static/img/` folder).
[header] header:
image = "" caption: ""
caption = "" image: ""
+++ ---

View File

@ -1,15 +1,15 @@
+++ ---
title = "Publications" title: Publications
# View. # View.
# 1 = List # 1 = List
# 2 = Compact # 2 = Compact
# 3 = Card # 3 = Card
# 4 = Citation # 4 = Citation
view = 4 view: 4
# Optional featured image (relative to `static/img/` folder). # Optional header image (relative to `static/img/` folder).
[header] header:
image = "" caption: ""
caption = "" image: ""
+++ ---

View File

@ -1,14 +1,14 @@
+++ ---
title = "Recent & Upcoming Talks" title: Recent & Upcoming Talks
# View. # View.
# 1 = List # 1 = List
# 2 = Compact # 2 = Compact
# 3 = Card # 3 = Card
view = 2 view: 2
# Optional featured image (relative to `static/img/` folder). # Optional header image (relative to `static/img/` folder).
[header] header:
image = "" caption: ""
caption = "" image: ""
+++ ---

View File

@ -13,7 +13,7 @@ cd scripts/
rsync -av ../themes/academic/exampleSite/config/ ../config/ rsync -av ../themes/academic/exampleSite/config/ ../config/
# Install demo user # Install demo user
rsync -av ../themes/academic/exampleSite/content/author/ ../content/author/ rsync -av ../themes/academic/exampleSite/content/authors/ ../content/authors/
# Install an example instance of each widget type # Install an example instance of each widget type
rsync -av --exclude gallery/ ../themes/academic/exampleSite/content/home/ ../content/home/ rsync -av --exclude gallery/ ../themes/academic/exampleSite/content/home/ ../content/home/

@ -1 +1 @@
Subproject commit 8a6d151efb4a20f25d2e08c3fda1bdfb4a5d9de4 Subproject commit 8857bffa20f083a6972afe38d052fa4eeea095ab