diff --git a/README.md b/README.md
index 8c2e8684..48f6e040 100644
--- a/README.md
+++ b/README.md
@@ -100,9 +100,17 @@ Then edit the newly created file `blog/my-article-name.md` with your full title
You may use Markdown to format the content. Furthermore, code highlighting is allowed in case your news articles are related to discussing programming or computer science. An example can be seen in `themes/hugo-academic/exampleSite/example-post.md`. Note that post tagging is not currently used, but is a placeholder for a future update.
+### Create a project
+
+To create a project:
+
+ hugo new projects/my-project-name.md
+
+Then edit the newly created file `projects/my-project-name.md`. Either you can link the project to an external project website by setting the `external_link = "http://external-project.com"` variable at the top of the file, or you can add content (below the final `+++`) in order to render a project page on your website.
+
### Removing content
-Generally, to remove content, simply delete the relevant file from your `content/blog` or `content/publications` folder.
+Generally, to remove content, simply delete the relevant file from your `content/blog`, `content/publications`, or `content/projects` folder.
Otherwise, to remove the Teaching section from the home page, simply delete the `content/home/teaching.md` file. Alternatively, you may re-purpose the section by editing the heading and contents within the file.
diff --git a/archetypes/blog.md b/archetypes/blog.md
index e496e775..1edebb80 100644
--- a/archetypes/blog.md
+++ b/archetypes/blog.md
@@ -1,3 +1,3 @@
+++
-tags = [""]
+tags = []
+++
diff --git a/archetypes/projects.md b/archetypes/projects.md
new file mode 100644
index 00000000..c8fd12fc
--- /dev/null
+++ b/archetypes/projects.md
@@ -0,0 +1,8 @@
++++
+tags = []
+summary = ""
+img = ""
+img_preview = ""
+client_name = ""
+external_link = ""
++++
\ No newline at end of file
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 4d02e0fe..87546802 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -14,6 +14,10 @@ googleAnalytics = ""
address = "Stanford AI Lab, Stanford University, California, 90210, USA."
phone = "888 888 88 88"
+ # Date format (refer to Go's formatting options)
+ # Examples: "Mon, Jan 2, 2006" or "2006-01-02"
+ date_format = "Mon, Jan 2, 2006"
+
[[params.education]]
course = "PhD in Artificial Intelligence"
institution = "Stanford University"
@@ -70,12 +74,17 @@ googleAnalytics = ""
url = "/#news"
weight = 3
+[[menu.main]]
+ name = "Projects"
+ url = "/#projects"
+ weight = 4
+
[[menu.main]]
name = "Teaching"
url = "/#teaching"
- weight = 4
+ weight = 5
[[menu.main]]
name = "Contact"
url = "/#contact"
- weight = 5
+ weight = 6
diff --git a/exampleSite/static/.gitkeep b/exampleSite/static/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/images/screenshot.png b/images/screenshot.png
index c02c55a7..d80db9f9 100644
Binary files a/images/screenshot.png and b/images/screenshot.png differ
diff --git a/images/tn.png b/images/tn.png
index 7f013ad7..4fa1597d 100644
Binary files a/images/tn.png and b/images/tn.png differ
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 888159d5..960bc2e3 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -5,7 +5,7 @@
{{ range .Data.Pages }}