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:
authorCrt Mori <crt.mori@gmail.com>2021-03-20 13:52:23 +0300
committerGitHub <noreply@github.com>2021-03-20 13:52:23 +0300
commit48159c6b4d5be773e0958ca6708b9f686d4e2029 (patch)
treef521d140a3a3c4c337d9364745272b86ee9f5f95
parentf56393304395e9f16536676e7d722647601bf919 (diff)
Add option to display project_timeframe to the project pages and home page (#289)
* Add project_timeline to the project template Project timeline is sometimes very important aspect of your project as it shows that you have been working on it for some time. This adds the feature to the template, but only uses it when it is defined. * Add description of a new feature to README * Apply suggestions from code review Co-authored-by: Victoria Drake <24644237+victoriadrake@users.noreply.github.com>
-rw-r--r--README.md3
-rw-r--r--layouts/partials/home/projects.html7
2 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1ad528e..e048001 100644
--- a/README.md
+++ b/README.md
@@ -138,8 +138,11 @@ resources:
- src: NameOfYourImage.jpg
params:
weight: -100
+project_timeframe: "June-December"
```
+You can add a `project_timeframe` parameter to the frontmatter of your project to optionally display an arbitrary string on the homepage and modal.
+
## Blog section
Create an index file for the blog:
diff --git a/layouts/partials/home/projects.html b/layouts/partials/home/projects.html
index c62c40d..ea85a4d 100644
--- a/layouts/partials/home/projects.html
+++ b/layouts/partials/home/projects.html
@@ -34,6 +34,9 @@
<a {{ if .Params.external_link }} href="{{ .Params.external_link }}" {{ end }}>
{{ .Title | markdownify }}
</a>
+ {{ if .Params.project_timeframe }}
+ <p class="fa-xs">{{ .Params.project_timeframe }}</p>
+ {{ end }}
</div>
</div>
</div>
@@ -58,7 +61,9 @@
<p class="modal-card-title has-text-centered">{{ . }}</p>
</header>
{{ end }}
-
+ {{ if .Params.project_timeframe }}
+ <p class="fa-xs">{{ .Params.project_timeframe }}</p>
+ {{ end }}
{{ with .Resources.ByType "image" }}
{{ $moreThenOneImage := gt (len .) 1 }}
{{ if $moreThenOneImage }}