diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..4d86300
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,17 @@
+# editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 2
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.toml]
+max_line_length = 100
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000..2ed14d2
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,2 @@
+github: gcushen
+custom: https://hugoblox.com/sponsor/
diff --git a/.github/workflows/import-publications.yml b/.github/workflows/import-publications.yml
new file mode 100644
index 0000000..616fc91
--- /dev/null
+++ b/.github/workflows/import-publications.yml
@@ -0,0 +1,57 @@
+# Hugo Blox GitHub Action to convert Bibtex publications to Markdown-based webpages
+name: Import Publications From Bibtex
+
+# Require permission to create a PR
+permissions:
+ contents: write
+ pull-requests: write
+
+# Run workflow when a `.bib` file is added or updated in the `data/` folder
+on:
+ push:
+ branches: ['main']
+ paths: ['publications.bib']
+
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
+jobs:
+ hugoblox:
+ if: github.repository_owner != 'HugoBlox'
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout the repo
+ uses: actions/checkout@v4
+ - name: Set up Python 3.12
+ uses: actions/setup-python@v5
+ with:
+ python-version: "3.12"
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install academic==0.10.0
+ - name: Run Academic (Bibtex To Markdown Converter)
+ # Check `.bib` file exists for case when action runs on `.bib` deletion
+ # Note GH only provides hashFiles func in `steps.if` context, not `jobs.if` context
+ if: ${{ hashFiles('publications.bib') != '' }}
+ run: academic import publications.bib content/publication/ --compact
+ - name: Create Pull Request
+ # Set ID for `Check outputs` stage
+ id: cpr
+ uses: peter-evans/create-pull-request@v6
+ with:
+ commit-message: 'content: import publications from Bibtex'
+ title: Hugo Blox Builder - Import latest publications
+ body: |
+ Import the latest publications from `publications.bib` to `content/publication/`.
+ 将最新的出版物从`publications.bib`导入到`content/publication/`。
+ [View Documentation](https://github.com/GetRD/academic-file-converter)
+ base: main
+ labels: automated-pr, content
+ branch: hugoblox-import-publications
+ delete-branch: true
+ - name: Check outputs
+ if: ${{ steps.cpr.outputs.pull-request-number }}
+ run: |
+ echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
+ echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml
new file mode 100644
index 0000000..e3d835a
--- /dev/null
+++ b/.github/workflows/publish.yaml
@@ -0,0 +1,70 @@
+name: Deploy website to GitHub Pages
+
+env:
+ WC_HUGO_VERSION: '0.125.7'
+
+on:
+ # Trigger the workflow every time you push to the `main` branch
+ push:
+ branches: ["main"]
+ # Allows you to run this workflow manually from the Actions tab on GitHub.
+ workflow_dispatch:
+
+# Provide permission to clone the repo and deploy it to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+concurrency:
+ group: "pages"
+ cancel-in-progress: false
+
+jobs:
+ # Build website
+ build:
+ if: github.repository_owner != 'HugoBlox'
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ # Fetch history for Hugo's .GitInfo and .Lastmod
+ fetch-depth: 0
+ - name: Setup Hugo
+ uses: peaceiris/actions-hugo@v3
+ with:
+ hugo-version: ${{ env.WC_HUGO_VERSION }}
+ extended: true
+ - uses: actions/cache@v4
+ with:
+ path: /tmp/hugo_cache_runner/
+ key: ${{ runner.os }}-hugomod-${{ hashFiles('**/go.mod') }}
+ restore-keys: |
+ ${{ runner.os }}-hugomod-
+ - name: Setup Pages
+ id: pages
+ uses: actions/configure-pages@v5
+ - name: Build with Hugo
+ env:
+ HUGO_ENVIRONMENT: production
+ run: |
+ echo "Hugo Cache Dir: $(hugo config | grep cachedir)"
+ hugo --minify --baseURL "${{ steps.pages.outputs.base_url }}/"
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v3
+ with:
+ path: ./public
+
+ # Deploy website to GitHub Pages hosting
+ deploy:
+ if: github.repository_owner != 'HugoBlox'
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v4
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4ab3bfb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+# IDEs
+.idea/
+
+# Hugo
+/resources/
+public/
+assets/jsconfig.json
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..2b346a4
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2020-present George Cushen
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..6be1fd1
--- /dev/null
+++ b/README.md
@@ -0,0 +1,48 @@
+# [Hugo Research Group Theme](https://github.com/wowchemy/starter-hugo-research-group)
+
+[![Screenshot](preview.png)](https://hugoblox.com/hugo-themes/)
+
+The **Research Group Template** empowers your research group to easily create a beautiful website with a stunning homepage, news, academic publications, events, team profiles, and a contact form.
+
+️**Trusted by 250,000+ researchers, educators, and students.** Highly customizable via the integrated **no-code, widget-based Wowchemy page builder**, making every site truly personalized ⭐⭐⭐⭐⭐
+
+[![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://hugoblox.com/hugo-themes/)
+[![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)
+[![Twitter Follow](https://img.shields.io/twitter/follow/GetResearchDev?label=Follow%20on%20Twitter)](https://twitter.com/wowchemy)
+
+Easily write technical content with plain text Markdown, LaTeX math, diagrams, RMarkdown, or Jupyter, and import publications from BibTeX.
+
+[Check out the latest demo](https://research-group.netlify.app/) of what you'll get in less than 60 seconds, or [view the showcase](https://hugoblox.com/creators/).
+
+The integrated [**Wowchemy**](https://hugoblox.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.
+
+- 👉 [**Get Started**](https://hugoblox.com/hugo-themes/)
+- 📚 [View the **documentation**](https://docs.hugoblox.com/)
+- 💬 [Chat with the **Wowchemy research community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)
+- ⬇️ **Automatically import citations from BibTeX** with the [Hugo Academic CLI](https://github.com/GetRD/academic-file-converter)
+- 🐦 Share your new site with the community: [@wowchemy](https://twitter.com/wowchemy) [@GeorgeCushen](https://twitter.com/GeorgeCushen) [#MadeWithWowchemy](https://twitter.com/search?q=%23MadeWithWowchemy&src=typed_query)
+- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)
+- 🚀 [Contribute improvements](https://github.com/HugoBlox/hugo-blox-builder/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/HugoBlox/hugo-blox-builder/issues)
+- ⬆️ **Updating?** View the [Update Guide](https://docs.hugoblox.com/hugo-tutorials/update/) and [Release Notes](https://github.com/HugoBlox/hugo-blox-builder/releases)
+
+## We ask you, humbly, to support this open source movement
+
+Today we ask you to defend the open source independence of the Wowchemy website builder and themes 🐧
+
+We're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.
+
+### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://github.com/sponsors/gcushen)
+
+## Demo credits
+
+Please replace the demo images with your own.
+
+- [Female scientist](https://unsplash.com/photos/uVnRa6mOLOM)
+- [2 Coders](https://unsplash.com/photos/kwzWjTnDPLk)
+- [Cafe](https://unsplash.com/photos/RnDGGnMEOao)
+- Blog posts
+ - https://unsplash.com/photos/AndE50aaHn4
+ - https://unsplash.com/photos/OYzbqk2y26c
+- Avatars
+ - https://unsplash.com/photos/5yENNRbbat4
+ - https://unsplash.com/photos/WNoLnJo7tS8
diff --git a/assets/media/coders.jpg b/assets/media/coders.jpg
new file mode 100644
index 0000000..e77faf9
Binary files /dev/null and b/assets/media/coders.jpg differ
diff --git a/assets/media/contact.jpg b/assets/media/contact.jpg
new file mode 100644
index 0000000..a7720ec
Binary files /dev/null and b/assets/media/contact.jpg differ
diff --git a/assets/media/icon.png b/assets/media/icon.png
new file mode 100644
index 0000000..1699fee
Binary files /dev/null and b/assets/media/icon.png differ
diff --git a/assets/media/icons/.gitkeep b/assets/media/icons/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/assets/media/welcome.jpg b/assets/media/welcome.jpg
new file mode 100644
index 0000000..667a310
Binary files /dev/null and b/assets/media/welcome.jpg differ
diff --git a/assets/scss/template.scss b/assets/scss/template.scss
new file mode 100644
index 0000000..8ae7c0f
--- /dev/null
+++ b/assets/scss/template.scss
@@ -0,0 +1,9 @@
+// Make page header alignment consistent with widget page header alignment
+.universal-wrapper h1 {
+ text-align: center;
+}
+
+// Center the CTA shortcode button
+.cta-group {
+ justify-content: center;
+}
diff --git a/config/_default/hugo.yaml b/config/_default/hugo.yaml
new file mode 100644
index 0000000..93691f4
--- /dev/null
+++ b/config/_default/hugo.yaml
@@ -0,0 +1,62 @@
+# Configuration of Hugo
+# Guide: https://docs.hugoblox.com/tutorial/
+# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
+# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
+
+title: Wowchemy Research Group # Website name
+baseURL: 'https://example.com/' # Website URL
+
+############################
+## LANGUAGE
+############################
+
+defaultContentLanguage: en
+hasCJKLanguage: false
+defaultContentLanguageInSubdir: false
+removePathAccents: true
+
+############################
+## ADVANCED
+############################
+
+enableGitInfo: false
+summaryLength: 30
+paginate: 10
+enableEmoji: true
+enableRobotsTXT: true
+footnotereturnlinkcontents: ^
+ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$]
+permalinks:
+ authors: '/author/:slug/'
+ tags: '/tag/:slug/'
+ categories: '/category/:slug/'
+ publication_types: '/publication-type/:slug/'
+disableAliases: true
+outputs:
+ home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
+ section: [HTML, RSS]
+imaging:
+ resampleFilter: lanczos
+ quality: 75
+ anchor: smart
+timeout: 600000
+taxonomies:
+ tag: tags
+ category: categories
+ publication_type: publication_types
+ author: authors
+markup:
+ _merge: deep
+related:
+ threshold: 80
+ includeNewer: true
+ toLower: true
+ indices:
+ - name: tags
+ weight: 100
+ - name: categories
+ weight: 70
+security:
+ _merge: deep
+sitemap:
+ _merge: deep
diff --git a/config/_default/languages.yaml b/config/_default/languages.yaml
new file mode 100644
index 0000000..88fa733
--- /dev/null
+++ b/config/_default/languages.yaml
@@ -0,0 +1,22 @@
+# Languages
+# Create a section for each of your site's languages.
+# Documentation: https://docs.hugoblox.com/reference/language/
+
+# Default language
+en:
+ languageCode: en-us
+ # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.
+ #contentDir: content/en
+
+# Uncomment the lines below to configure your website in a second language.
+#zh:
+# languageCode: zh-Hans
+# contentDir: content/zh
+# title: Chinese website title...
+# params:
+# description: Site description in Chinese...
+# menu:
+# main:
+# - name: 传
+# url: '#about'
+# weight: 1
diff --git a/config/_default/menus.yaml b/config/_default/menus.yaml
new file mode 100644
index 0000000..7936b5f
--- /dev/null
+++ b/config/_default/menus.yaml
@@ -0,0 +1,24 @@
+# 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: Tour
+ url: tour
+ weight: 10
+ - name: News
+ url: post
+ weight: 20
+ - name: People
+ url: people
+ weight: 30
+ - name: Events
+ url: event
+ weight: 40
+ - name: Publications
+ url: publication
+ weight: 50
+ - name: Contact
+ url: contact
+ weight: 60
diff --git a/config/_default/module.yaml b/config/_default/module.yaml
new file mode 100644
index 0000000..e9c4255
--- /dev/null
+++ b/config/_default/module.yaml
@@ -0,0 +1,10 @@
+############################
+## HUGO MODULES
+## Install or uninstall themes and plugins here.
+## Docs: https://gohugo.io/hugo-modules/
+############################
+
+imports:
+ - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms
+ - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify
+ - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5
diff --git a/config/_default/params.yaml b/config/_default/params.yaml
new file mode 100644
index 0000000..239ec05
--- /dev/null
+++ b/config/_default/params.yaml
@@ -0,0 +1,118 @@
+# SITE SETUP
+# Guide: https://docs.hugoblox.com/tutorial/
+# Documentation: https://docs.hugoblox.com/
+# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
+
+# Appearance
+
+appearance:
+ theme_day: minimal
+ theme_night:
+ font: native
+ font_size: L
+
+# SEO
+
+marketing:
+ seo:
+ site_type: Organization
+ local_business_type: ''
+ org_name: ''
+ description: 'A highly-customizable Hugo research group theme powered by Wowchemy website builder.'
+ twitter: 'GetResearchDev'
+ analytics:
+ google_analytics: ''
+ baidu_tongji: ''
+ google_tag_manager: ''
+ microsoft_clarity: ''
+ verification:
+ google: ''
+ baidu: ''
+
+# Site header
+
+header:
+ navbar:
+ enable: true
+ align: r
+ show_logo: true
+ show_language: false
+ show_day_night: true
+ show_search: true
+ highlight_active_link: false
+
+# Site footer
+
+footer:
+ copyright:
+ notice: '© {year} Me. This work is licensed under {license}'
+ license:
+ enable: true
+ allow_derivatives: false
+ share_alike: true
+ allow_commercial: false
+
+# Localization
+
+locale:
+ date_format: 'Jan 2, 2006'
+ time_format: '3:04 PM'
+ address_format: en-us
+
+# Site features
+
+features:
+ syntax_highlighter:
+ enable: false
+ extra_languages:
+ - r
+ - latex
+ math:
+ enable: false
+ privacy_pack:
+ enable: false
+ repository:
+ url: 'https://github.com//'
+ content_dir: content
+ branch: main
+ avatar:
+ gravatar: false
+ shape: circle
+ comment:
+ provider: ''
+ disqus:
+ shortname: ''
+ show_count: true
+ commento:
+ url: ''
+ giscus:
+ repo: ''
+ repo_id: ''
+ category: ''
+ category_id: ''
+ search:
+ provider: wowchemy
+ algolia:
+ app_id: ''
+ api_key: ''
+ index_name: ''
+ show_logo: false
+ map:
+ provider: 'mapnik'
+ api_key: ''
+ zoom: 15
+
+# Extensions
+
+extensions:
+ decap_cms:
+ branch: main
+ local_backend: false
+ academicons:
+ enable: true
+
+# Citation style
+
+publications:
+ date_format: January 2006
+ citation_style: apa
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..3954acd
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,80 @@
+---
+# Leave the homepage title empty to use the site title
+title:
+date: 2022-10-24
+type: landing
+
+sections:
+ - block: hero
+ content:
+ title: |
+ Wowchemy
+ Research Group
+ image:
+ filename: welcome.jpg
+ text: |
+
+
+ The **Wowchemy Research Group** has been a center of excellence for Artificial Intelligence research, teaching, and practice since its founding in 2016.
+
+ - block: collection
+ content:
+ title: Latest News
+ subtitle:
+ text:
+ count: 5
+ filters:
+ author: ''
+ category: ''
+ exclude_featured: false
+ publication_type: ''
+ tag: ''
+ offset: 0
+ order: desc
+ page_type: post
+ design:
+ view: card
+ columns: '1'
+
+ - block: markdown
+ content:
+ title:
+ subtitle: ''
+ text:
+ design:
+ columns: '1'
+ background:
+ image:
+ filename: coders.jpg
+ filters:
+ brightness: 1
+ parallax: false
+ position: center
+ size: cover
+ text_color_light: true
+ spacing:
+ padding: ['20px', '0', '20px', '0']
+ css_class: fullscreen
+
+ - block: collection
+ content:
+ title: Latest Preprints
+ text: ""
+ count: 5
+ filters:
+ folders:
+ - publication
+ publication_type: 'article'
+ design:
+ view: citation
+ columns: '1'
+
+ - block: markdown
+ content:
+ title:
+ subtitle:
+ text: |
+ {{% cta cta_link="./people/" cta_text="Meet the team →" %}}
+ design:
+ columns: '1'
+---
diff --git a/content/admin/index.md b/content/admin/index.md
new file mode 100644
index 0000000..c3196dd
--- /dev/null
+++ b/content/admin/index.md
@@ -0,0 +1,8 @@
+---
+# Generate Decap CMS
+type: decap_cms
+private: true
+outputs:
+ - decap_cms_config
+ - HTML
+---
diff --git a/content/authors/admin/_index.md b/content/authors/admin/_index.md
new file mode 100644
index 0000000..b804d6b
--- /dev/null
+++ b/content/authors/admin/_index.md
@@ -0,0 +1,77 @@
+---
+# Display name
+title: Nelson Bighetti
+
+# Full Name (for SEO)
+first_name: Nelson
+last_name: Bighetti
+
+# 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://docs.hugoblox.com/getting-started/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: '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: ''
+
+# Highlight the author in author lists? (true/false)
+highlight_name: false
+
+# 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
+---
+
+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.
diff --git a/content/authors/admin/avatar.jpg b/content/authors/admin/avatar.jpg
new file mode 100644
index 0000000..4739195
Binary files /dev/null and b/content/authors/admin/avatar.jpg differ
diff --git "a/content/authors/\345\220\263\346\201\251\351\201\224/_index.md" "b/content/authors/\345\220\263\346\201\251\351\201\224/_index.md"
new file mode 100644
index 0000000..668c54e
--- /dev/null
+++ "b/content/authors/\345\220\263\346\201\251\351\201\224/_index.md"
@@ -0,0 +1,79 @@
+---
+# Display name
+title: Alice Wu 吳恩達
+
+# Full name (for SEO)
+first_name: Alice
+last_name: Wu
+
+# 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://docs.hugoblox.com/getting-started/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: '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.
diff --git "a/content/authors/\345\220\263\346\201\251\351\201\224/avatar.jpg" "b/content/authors/\345\220\263\346\201\251\351\201\224/avatar.jpg"
new file mode 100644
index 0000000..49337e4
Binary files /dev/null and "b/content/authors/\345\220\263\346\201\251\351\201\224/avatar.jpg" differ
diff --git a/content/contact/index.md b/content/contact/index.md
new file mode 100644
index 0000000..d1e4f65
--- /dev/null
+++ b/content/contact/index.md
@@ -0,0 +1,69 @@
+---
+title: Contact
+date: 2022-10-24
+
+type: landing
+
+sections:
+ - block: contact
+ content:
+ title: Contact
+ text: |-
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer tempus augue non tempor egestas. Proin nisl nunc, dignissim in accumsan dapibus, auctor ullamcorper neque. Quisque at elit felis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Aenean eget elementum odio. Cras interdum eget risus sit amet aliquet. In volutpat, nisl ut fringilla dignissim, arcu nisl suscipit ante, at accumsan sapien nisl eu eros.
+ email: test@example.org
+ phone: 888 888 88 88
+ address:
+ street: 450 Serra Mall
+ city: Stanford
+ region: CA
+ postcode: '94305'
+ country: United States
+ country_code: US
+ coordinates:
+ latitude: '37.4275'
+ longitude: '-122.1697'
+ directions: Enter Building 1 and take the stairs to Office 200 on Floor 2
+ office_hours:
+ - 'Monday 10:00 to 13:00'
+ - 'Wednesday 09:00 to 10:00'
+ appointment_url: 'https://calendly.com'
+ #contact_links:
+ # - icon: comments
+ # icon_pack: fas
+ # name: Discuss on Forum
+ # link: 'https://discourse.gohugo.io'
+
+ # Automatically link email and phone or display as text?
+ autolink: true
+
+ # Email form provider
+ form:
+ provider: netlify
+ formspree:
+ id:
+ netlify:
+ # Enable CAPTCHA challenge to reduce spam?
+ captcha: false
+ design:
+ columns: '1'
+
+ - block: markdown
+ content:
+ title:
+ subtitle: ''
+ text:
+ design:
+ columns: '1'
+ background:
+ image:
+ filename: contact.jpg
+ filters:
+ brightness: 1
+ parallax: false
+ position: center
+ size: cover
+ text_color_light: true
+ spacing:
+ padding: ['20px', '0', '20px', '0']
+ css_class: fullscreen
+---
diff --git a/content/event/_index.md b/content/event/_index.md
new file mode 100644
index 0000000..3925684
--- /dev/null
+++ b/content/event/_index.md
@@ -0,0 +1,11 @@
+---
+title: Recent & Upcoming Events
+
+# Listing view
+view: compact
+
+# Optional header image (relative to `assets/media/` folder).
+banner:
+ caption: ''
+ image: ''
+---
diff --git a/content/event/example/featured.jpg b/content/event/example/featured.jpg
new file mode 100644
index 0000000..7b16c3c
Binary files /dev/null and b/content/event/example/featured.jpg differ
diff --git a/content/event/example/index.md b/content/event/example/index.md
new file mode 100644
index 0000000..abdf008
--- /dev/null
+++ b/content/event/example/index.md
@@ -0,0 +1,63 @@
+---
+title: Example Event
+
+event: Wowchemy Conference
+event_url: https://example.org
+
+location: Wowchemy HQ
+address:
+ street: 450 Serra Mall
+ city: Stanford
+ region: CA
+ postcode: '94305'
+ country: United States
+
+summary: An example event.
+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
+
+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:
+
+# 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:
+---
+
+Slides can be added in a few ways:
+
+- **Create** slides using Wowchemy's [_Slides_](https://docs.hugoblox.com/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://docs.hugoblox.com/writing-markdown-latex/).
+
+Further event details, including page elements such as image galleries, can be added to the body of this page.
diff --git a/content/people/index.md b/content/people/index.md
new file mode 100644
index 0000000..c10a00e
--- /dev/null
+++ b/content/people/index.md
@@ -0,0 +1,26 @@
+---
+title: People
+date: 2022-10-24
+
+type: landing
+
+sections:
+ - block: people
+ content:
+ title: Meet the Team
+ # 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
+ sort_by: Params.last_name
+ sort_ascending: true
+ design:
+ show_interests: false
+ show_role: true
+ show_social: true
+---
\ No newline at end of file
diff --git a/content/post/20-12-01-wowchemy-prize/featured.jpg b/content/post/20-12-01-wowchemy-prize/featured.jpg
new file mode 100644
index 0000000..8916615
Binary files /dev/null and b/content/post/20-12-01-wowchemy-prize/featured.jpg differ
diff --git a/content/post/20-12-01-wowchemy-prize/index.md b/content/post/20-12-01-wowchemy-prize/index.md
new file mode 100644
index 0000000..402ecc5
--- /dev/null
+++ b/content/post/20-12-01-wowchemy-prize/index.md
@@ -0,0 +1,14 @@
+---
+title: Richard Hendricks Wins First Place in the Wowchemy Prize
+date: 2020-12-01
+---
+
+Congratulations to Richard Hendricks for winning first place in the Wowchemy Prize.
+
+
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer tempus augue non tempor egestas. Proin nisl nunc, dignissim in accumsan dapibus, auctor ullamcorper neque. Quisque at elit felis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Aenean eget elementum odio. Cras interdum eget risus sit amet aliquet. In volutpat, nisl ut fringilla dignissim, arcu nisl suscipit ante, at accumsan sapien nisl eu eros.
+
+Sed eu dui nec ligula bibendum dapibus. Nullam imperdiet auctor tortor, vel cursus mauris malesuada non. Quisque ultrices euismod dapibus. Aenean sed gravida risus. Sed nisi tortor, vulputate nec quam non, placerat porta nisl. Nunc varius lobortis urna, condimentum facilisis ipsum molestie eu. Ut molestie eleifend ligula sed dignissim. Duis ut tellus turpis. Praesent tincidunt, nunc sed congue malesuada, mauris enim maximus massa, eget interdum turpis urna et ante. Morbi sem nisl, cursus quis mollis et, interdum luctus augue. Aliquam laoreet, leo et accumsan tincidunt, libero neque aliquet lectus, a ultricies lorem mi a orci.
+
+Mauris dapibus sem vel magna convallis laoreet. Donec in venenatis urna, vitae sodales odio. Praesent tortor diam, varius non luctus nec, bibendum vel est. Quisque id sem enim. Maecenas at est leo. Vestibulum tristique pellentesque ex, blandit placerat nunc eleifend sit amet. Fusce eget lectus bibendum, accumsan mi quis, luctus sem. Etiam vitae nulla scelerisque, eleifend odio in, euismod quam. Etiam porta ullamcorper massa, vitae gravida turpis euismod quis. Mauris sodales sem ac ultrices viverra. In placerat ultrices sapien. Suspendisse eu arcu hendrerit, luctus tortor cursus, maximus dolor. Proin et velit et quam gravida dapibus. Donec blandit justo ut consequat tristique.
diff --git a/content/post/20-12-02-ICML-best-paper/featured.jpg b/content/post/20-12-02-ICML-best-paper/featured.jpg
new file mode 100644
index 0000000..a0f77a3
Binary files /dev/null and b/content/post/20-12-02-ICML-best-paper/featured.jpg differ
diff --git a/content/post/20-12-02-ICML-best-paper/index.md b/content/post/20-12-02-ICML-best-paper/index.md
new file mode 100644
index 0000000..3dca848
--- /dev/null
+++ b/content/post/20-12-02-ICML-best-paper/index.md
@@ -0,0 +1,16 @@
+---
+title: Jian Yang and Monica Hall Win the Best Paper Award at Wowchemy 2020
+date: 2020-12-02
+image:
+ focal_point: 'top'
+---
+
+Congratulations to Jian Yang and Monica Hall for winning the Best Paper Award at the 2020 Conference on Wowchemy for their paper “Learning Wowchemy”.
+
+
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer tempus augue non tempor egestas. Proin nisl nunc, dignissim in accumsan dapibus, auctor ullamcorper neque. Quisque at elit felis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Aenean eget elementum odio. Cras interdum eget risus sit amet aliquet. In volutpat, nisl ut fringilla dignissim, arcu nisl suscipit ante, at accumsan sapien nisl eu eros.
+
+Sed eu dui nec ligula bibendum dapibus. Nullam imperdiet auctor tortor, vel cursus mauris malesuada non. Quisque ultrices euismod dapibus. Aenean sed gravida risus. Sed nisi tortor, vulputate nec quam non, placerat porta nisl. Nunc varius lobortis urna, condimentum facilisis ipsum molestie eu. Ut molestie eleifend ligula sed dignissim. Duis ut tellus turpis. Praesent tincidunt, nunc sed congue malesuada, mauris enim maximus massa, eget interdum turpis urna et ante. Morbi sem nisl, cursus quis mollis et, interdum luctus augue. Aliquam laoreet, leo et accumsan tincidunt, libero neque aliquet lectus, a ultricies lorem mi a orci.
+
+Mauris dapibus sem vel magna convallis laoreet. Donec in venenatis urna, vitae sodales odio. Praesent tortor diam, varius non luctus nec, bibendum vel est. Quisque id sem enim. Maecenas at est leo. Vestibulum tristique pellentesque ex, blandit placerat nunc eleifend sit amet. Fusce eget lectus bibendum, accumsan mi quis, luctus sem. Etiam vitae nulla scelerisque, eleifend odio in, euismod quam. Etiam porta ullamcorper massa, vitae gravida turpis euismod quis. Mauris sodales sem ac ultrices viverra. In placerat ultrices sapien. Suspendisse eu arcu hendrerit, luctus tortor cursus, maximus dolor. Proin et velit et quam gravida dapibus. Donec blandit justo ut consequat tristique.
diff --git a/content/post/_index.md b/content/post/_index.md
new file mode 100644
index 0000000..28fbf80
--- /dev/null
+++ b/content/post/_index.md
@@ -0,0 +1,11 @@
+---
+title: Latest News
+
+# Listing view
+view: compact
+
+# Optional banner image (relative to `assets/media/` folder).
+banner:
+ caption: ''
+ image: ''
+---
diff --git a/content/publication/_index.md b/content/publication/_index.md
new file mode 100644
index 0000000..940aa39
--- /dev/null
+++ b/content/publication/_index.md
@@ -0,0 +1,11 @@
+---
+title: Publications
+
+# Listing view
+view: citation
+
+# Optional banner image (relative to `assets/media/` folder).
+banner:
+ caption: ''
+ image: ''
+---
diff --git a/content/publication/conference-paper/cite.bib b/content/publication/conference-paper/cite.bib
new file mode 100644
index 0000000..98c3748
--- /dev/null
+++ b/content/publication/conference-paper/cite.bib
@@ -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}
+}
diff --git a/content/publication/conference-paper/conference-paper.pdf b/content/publication/conference-paper/conference-paper.pdf
new file mode 100644
index 0000000..747064e
Binary files /dev/null and b/content/publication/conference-paper/conference-paper.pdf differ
diff --git a/content/publication/conference-paper/featured.jpg b/content/publication/conference-paper/featured.jpg
new file mode 100644
index 0000000..2ebab27
Binary files /dev/null and b/content/publication/conference-paper/featured.jpg differ
diff --git a/content/publication/conference-paper/index.md b/content/publication/conference-paper/index.md
new file mode 100644
index 0000000..3f1178b
--- /dev/null
+++ b/content/publication/conference-paper/index.md
@@ -0,0 +1,86 @@
+---
+title: 'An example conference paper'
+
+# Authors
+# If you created a profile for a user (e.g. the default `admin` user), write the username (folder name) here
+# and it will be replaced with their full name and linked to their profile.
+authors:
+ - admin
+ - Robert Ford
+
+# Author notes (optional)
+author_notes:
+ - 'Equal contribution'
+ - 'Equal contribution'
+
+date: '2013-07-01T00:00:00Z'
+doi: ''
+
+# Schedule page publish date (NOT publication's date).
+publishDate: '2017-01-01T00:00:00Z'
+
+# Publication type.
+# Accepts a single type but formatted as a YAML list (for Hugo requirements).
+# Enter a publication type from the CSL standard.
+publication_types: ['paper-conference']
+
+# Publication name and optional abbreviated publication name.
+publication: In *Wowchemy Conference*
+publication_short: In *ICW*
+
+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: []
+
+# Display this page in the Featured widget?
+featured: true
+
+# Custom links (uncomment lines below)
+# links:
+# - name: Custom Link
+# url: http://example.org
+
+url_pdf: ''
+url_code: 'https://github.com/HugoBlox/hugo-blox-builder'
+url_dataset: 'https://github.com/HugoBlox/hugo-blox-builder'
+url_poster: ''
+url_project: ''
+url_slides: ''
+url_source: 'https://github.com/HugoBlox/hugo-blox-builder'
+url_video: 'https://youtube.com'
+
+# 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:
+ - example
+
+# 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
+---
+
+{{% callout note %}}
+Click the _Cite_ button above to demo the feature to enable visitors to import publication metadata into their reference management software.
+{{% /callout %}}
+
+{{% callout note %}}
+Create your slides in Markdown - click the _Slides_ button to check out the example.
+{{% /callout %}}
+
+Add the publication's **full text** or **supplementary notes** here. You can use rich formatting such as including [code, math, and images](https://docs.hugoblox.com/content/writing-markdown-latex/).
diff --git a/content/publication/journal-article/cite.bib b/content/publication/journal-article/cite.bib
new file mode 100644
index 0000000..a7da7ac
--- /dev/null
+++ b/content/publication/journal-article/cite.bib
@@ -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
+}
diff --git a/content/publication/journal-article/featured.jpg b/content/publication/journal-article/featured.jpg
new file mode 100644
index 0000000..15272c0
Binary files /dev/null and b/content/publication/journal-article/featured.jpg differ
diff --git a/content/publication/journal-article/index.md b/content/publication/journal-article/index.md
new file mode 100644
index 0000000..079228a
--- /dev/null
+++ b/content/publication/journal-article/index.md
@@ -0,0 +1,75 @@
+---
+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.
+# Accepts a single type but formatted as a YAML list (for Hugo requirements).
+# Enter a publication type from the CSL standard.
+publication_types: ["article-journal"]
+
+# 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: 'https://github.com/HugoBlox/hugo-blox-builder'
+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
+---
+
+{{% callout note %}}
+Click the *Cite* button above to demo the feature to enable visitors to import publication metadata into their reference management software.
+{{% /callout %}}
+
+{{% callout note %}}
+Create your slides in Markdown - click the *Slides* button to check out the example.
+{{% /callout %}}
+
+Add the publication's **full text** or **supplementary notes** here. You can use rich formatting such as including [code, math, and images](https://docs.hugoblox.com/content/writing-markdown-latex/).
diff --git a/content/publication/preprint/featured.jpg b/content/publication/preprint/featured.jpg
new file mode 100644
index 0000000..8fdeeee
Binary files /dev/null and b/content/publication/preprint/featured.jpg differ
diff --git a/content/publication/preprint/index.md b/content/publication/preprint/index.md
new file mode 100644
index 0000000..ccb94da
--- /dev/null
+++ b/content/publication/preprint/index.md
@@ -0,0 +1,68 @@
+---
+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.
+# Accepts a single type but formatted as a YAML list (for Hugo requirements).
+# Enter a publication type from the CSL standard.
+publication_types: ["article"]
+
+# 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: 'https://github.com/HugoBlox/hugo-blox-builder'
+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
+---
+
+{{% callout note %}}
+Create your slides in Markdown - click the *Slides* button to check out the example.
+{{% /callout %}}
+
+Add the publication's **full text** or **supplementary notes** here. You can use rich formatting such as including [code, math, and images](https://docs.hugoblox.com/content/writing-markdown-latex/).
diff --git a/content/tour/index.md b/content/tour/index.md
new file mode 100644
index 0000000..28554db
--- /dev/null
+++ b/content/tour/index.md
@@ -0,0 +1,54 @@
+---
+title: Tour
+date: 2022-10-24
+
+type: landing
+
+sections:
+ - block: slider
+ content:
+ slides:
+ - title: 👋 Welcome to the group
+ content: Take a look at what we're working on...
+ align: center
+ background:
+ image:
+ filename: coders.jpg
+ filters:
+ brightness: 0.7
+ position: right
+ color: '#666'
+ - title: Lunch & Learn ☕️
+ content: 'Share your knowledge with the group and explore exciting new topics together!'
+ align: left
+ background:
+ image:
+ filename: contact.jpg
+ filters:
+ brightness: 0.7
+ position: center
+ color: '#555'
+ - title: World-Class Semiconductor Lab
+ content: 'Just opened last month!'
+ align: right
+ background:
+ image:
+ filename: welcome.jpg
+ filters:
+ brightness: 0.5
+ position: center
+ color: '#333'
+ link:
+ icon: graduation-cap
+ icon_pack: fas
+ text: Join Us
+ url: ../contact/
+ design:
+ # Slide height is automatic unless you force a specific height (e.g. '400px')
+ slide_height: ''
+ is_fullscreen: true
+ # Automatically transition through slides?
+ loop: false
+ # Duration of transition between slides (in ms)
+ interval: 2000
+---
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..16f02e7
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,9 @@
+module github.com/wowchemy/starter-hugo-research-group
+
+go 1.15
+
+require (
+ github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.8-0.20240513193311-41bd113535e8
+ github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms v0.1.2-0.20231108143325-448ed0e3bd2b
+ github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20240509231741-c3d23d929bc6
+)
diff --git a/images/screenshot.png b/images/screenshot.png
new file mode 100644
index 0000000..8cb8b83
Binary files /dev/null and b/images/screenshot.png differ
diff --git a/images/tn.png b/images/tn.png
new file mode 100644
index 0000000..34a15a3
Binary files /dev/null and b/images/tn.png differ
diff --git a/netlify.toml b/netlify.toml
new file mode 100644
index 0000000..f2014ae
--- /dev/null
+++ b/netlify.toml
@@ -0,0 +1,21 @@
+[build]
+ command = "hugo --gc --minify -b $URL"
+ publish = "public"
+
+[build.environment]
+ HUGO_VERSION = "0.125.7"
+ HUGO_ENABLEGITINFO = "true"
+
+[context.production.environment]
+ HUGO_ENV = "production"
+
+[context.deploy-preview]
+ command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
+
+[context.branch-deploy]
+ command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
+
+[[plugins]]
+ package = "netlify-plugin-hugo-cache-resources"
+ [plugins.inputs]
+ debug = true
diff --git a/preview.png b/preview.png
new file mode 100644
index 0000000..74fccae
Binary files /dev/null and b/preview.png differ
diff --git a/static/uploads/.gitkeep b/static/uploads/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/theme.toml b/theme.toml
new file mode 100644
index 0000000..41259bd
--- /dev/null
+++ b/theme.toml
@@ -0,0 +1,41 @@
+name = "Research Group"
+license = "MIT"
+licenselink = "https://github.com/wowchemy/starter-hugo-research-group/blob/main/LICENSE.md"
+description = "The **Research Group Template** empowers your research group to easily create a beautiful website with a stunning homepage, news, academic publications, events, team profiles, and a contact form."
+homepage = "https://github.com/wowchemy/starter-hugo-research-group"
+demosite = "https://research-group.netlify.app/"
+tags = ["academic",
+ "university",
+ "research",
+ "publications",
+ "widgets",
+ "portfolio",
+ "responsive",
+ "clean",
+ "company",
+ "blog",
+ "events",
+ "minimal",
+ "light",
+ "dark",
+ "multilingual",
+ "landing page",
+ "contact form",
+ "mobile",
+ "search",
+ "presentation",
+ "simple",
+ "minimalist",
+ "starter",
+ "modern",
+ "one page",
+ "customizable",
+ "technical",
+ "slide"
+ ]
+features = ["page builder", "widgets", "themes", "search", "research publication system", "filterable portfolio",
+ "blog", "create courses", "talks", "events", "slides", "gallery", "contact form"]
+
+[author]
+ name = "George Cushen"
+ homepage = "https://georgecushen.com"