Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicky <vicky@vickylai.com>2018-09-03 07:00:54 +0300
committerVicky <vicky@vickylai.com>2018-09-03 07:00:54 +0300
commitf43e8a50584698bbec15ec7872559096ef26efac (patch)
tree66bc618842a6655c1da59a1346dcfe09e1c0e72e /archetypes
parent4dd00f9d00d3c9c58b0707dc27ed3bcb4be41e9e (diff)
Add helpful comments to project archetype frontmatter
Diffstat (limited to 'archetypes')
-rw-r--r--archetypes/projects.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/archetypes/projects.md b/archetypes/projects.md
index e1cc3fa..ab9bf7f 100644
--- a/archetypes/projects.md
+++ b/archetypes/projects.md
@@ -1,7 +1,11 @@
---
-title: "{{ replace .TranslationBaseName "-" " " | title }}"
-date: {{ .Date }}
-weight: 0
-external_link: ""
+title: "{{ replace .TranslationBaseName "-" " " | title }}" # Title of your project
+date: {{ .Date }}
+weight: 0 # Order in which to show this project on the home page
+external_link: "" # Optional external link instead of modal
+resources:
+ - src: plant.jpg
+ params:
+ weight: -100 # Optional weighting for a specific image in this project folder
draft: true
---