-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project page creation tooling to PW40
- Loading branch information
Showing
6 changed files
with
140 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
layout: pw40-project | ||
|
||
permalink: /:path/ | ||
|
||
project_title: Write full project title here | ||
category: Uncategorized | ||
presenter_location: Online | ||
|
||
key_investigators: | ||
- name: Person Doe | ||
affiliation: University | ||
|
||
- name: Person2 Doe2 | ||
affiliation: University2 | ||
country: Spain | ||
--- | ||
|
||
# Project Description | ||
|
||
<!-- Add a short paragraph describing the project. --> | ||
|
||
## Objective | ||
|
||
<!-- Describe here WHAT you would like to achieve (what you will have as end result). --> | ||
|
||
1. Objective A. Describe **what you plan to achieve** in 1-2 sentences. | ||
1. Objective B. ... | ||
1. Objective C. ... | ||
|
||
## Approach and Plan | ||
|
||
<!-- Describe here HOW you would like to achieve the objectives stated above. --> | ||
|
||
1. Describe specific steps of **what you plan to do** to achieve the above described objectives. | ||
1. ... | ||
1. ... | ||
|
||
## Progress and Next Steps | ||
|
||
<!-- Update this section as you make progress, describing of what you have ACTUALLY DONE. | ||
If there are specific steps that you could not complete then you can describe them here, too. --> | ||
|
||
1. Describe specific steps you **have actually done**. | ||
1. ... | ||
1. ... | ||
|
||
# Illustrations | ||
|
||
<!-- Add pictures and links to videos that demonstrate what has been accomplished. | ||
![Description of picture](Example2.jpg) | ||
![Some more images](Example2.jpg) | ||
--> | ||
|
||
# Background and References | ||
|
||
<!-- If you developed any software, include link to the source code repository. | ||
If possible, also add links to sample data, and to any relevant publications. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
layout: pw40-project | ||
|
||
permalink: /:path/ | ||
|
||
project_title: {{ title | to_yaml | regex_replace("\n$|\n\.\.\.\n$", "") }} | ||
category: {{ category | regex_replace("\n$|\n\.\.\.\n$", "") }} | ||
presenter_location: {{ presenter_location | regex_replace("\n$|\n\.\.\.\n$", "") }} | ||
|
||
key_investigators: | ||
{% for investigator in investigators %} | ||
- name: {{ investigator.name | to_yaml | regex_replace("\n$|\n\.\.\.\n$", "") }} | ||
affiliation: {{ investigator.affiliation | to_yaml | regex_replace("\n$|\n\.\.\.\n$", "") }} | ||
{%- if investigator.country %} | ||
country: {{ investigator.country | to_yaml | regex_replace("\n$|\n\.\.\.\n$", "") }} | ||
{%- endif %} | ||
{% endfor %} | ||
--- | ||
|
||
# Project Description | ||
|
||
<!-- Add a short paragraph describing the project. --> | ||
|
||
{{ description }} | ||
|
||
## Objective | ||
|
||
<!-- Describe here WHAT you would like to achieve (what you will have as end result). --> | ||
|
||
{{ objective }} | ||
|
||
## Approach and Plan | ||
|
||
<!-- Describe here HOW you would like to achieve the objectives stated above. --> | ||
|
||
{{ approach }} | ||
|
||
## Progress and Next Steps | ||
|
||
<!-- Update this section as you make progress, describing of what you have ACTUALLY DONE. | ||
If there are specific steps that you could not complete then you can describe them here, too. --> | ||
|
||
{{ progress }} | ||
|
||
# Illustrations | ||
|
||
<!-- Add pictures and links to videos that demonstrate what has been accomplished. --> | ||
|
||
{{ illustrations }} | ||
|
||
# Background and References | ||
|
||
<!-- If you developed any software, include link to the source code repository. | ||
If possible, also add links to sample data, and to any relevant publications. --> | ||
|
||
{{ background }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
Back to <a href="../../#projects">Projects List</a> | ||
|
||
<h1>{{ page.project_title }}</h1> | ||
|
||
<h2>Key Investigators</h2> | ||
|
||
<ul> | ||
{% if page.key_investigators %} | ||
{% for investigator in page.key_investigators %} | ||
<li>{{ investigator.name }} ({{ investigator.affiliation }}{% if investigator.country %}, {{ investigator.country }}{% endif %})</li> | ||
{% endfor %} | ||
{% endif %} | ||
</ul> | ||
|
||
<i>Presenter location: {{page.presenter_location}}</i> | ||
|
||
{{ content }} | ||
|
||
</div> |