diff --git a/.github/ISSUE_TEMPLATE/project.yml b/.github/ISSUE_TEMPLATE/project.yml index 434641839..2703bede3 100644 --- a/.github/ISSUE_TEMPLATE/project.yml +++ b/.github/ISSUE_TEMPLATE/project.yml @@ -1,7 +1,7 @@ name: Project description: Issue template to streamline the creation of project pages. title: "Project: " -labels: ["project", "event:PW39_2023_Montreal"] +labels: ["project", "event:PW40_2024_GranCanaria"] assignees: - drouin-simon - piiq diff --git a/.github/ISSUE_TEMPLATE/proposal.yml b/.github/ISSUE_TEMPLATE/proposal.yml index ae7aac762..4d92ecedf 100644 --- a/.github/ISSUE_TEMPLATE/proposal.yml +++ b/.github/ISSUE_TEMPLATE/proposal.yml @@ -1,7 +1,7 @@ name: Proposal description: Issue template for creating an issue supporting discussion around a project concept or idea. title: "Proposal: " -labels: ["proposal", "event:PW39_2023_Montreal"] +labels: ["proposal", "event:PW40_2024_GranCanaria"] assignees: - drouin-simon - piiq diff --git a/.github/workflows/project-page-pull-request.yml b/.github/workflows/project-page-pull-request.yml index 54107b553..11e2553c5 100644 --- a/.github/workflows/project-page-pull-request.yml +++ b/.github/workflows/project-page-pull-request.yml @@ -54,7 +54,7 @@ jobs: id: event_info run: | # TODO: Extract event name from "event:NAME" label - event_name="PW39_2023_Montreal" + event_name="PW40_2024_GranCanaria" echo "name=$event_name" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 diff --git a/PW40_2024_GranCanaria/Projects/Template/README.md b/PW40_2024_GranCanaria/Projects/Template/README.md new file mode 100644 index 000000000..270e7d02f --- /dev/null +++ b/PW40_2024_GranCanaria/Projects/Template/README.md @@ -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 + + + +## Objective + + + +1. Objective A. Describe **what you plan to achieve** in 1-2 sentences. +1. Objective B. ... +1. Objective C. ... + +## Approach and Plan + + + +1. Describe specific steps of **what you plan to do** to achieve the above described objectives. +1. ... +1. ... + +## Progress and Next Steps + + + +1. Describe specific steps you **have actually done**. +1. ... +1. ... + +# Illustrations + + + +# Background and References + + diff --git a/PW40_2024_GranCanaria/Projects/Template/README.md.j2 b/PW40_2024_GranCanaria/Projects/Template/README.md.j2 new file mode 100644 index 000000000..01c72fcf0 --- /dev/null +++ b/PW40_2024_GranCanaria/Projects/Template/README.md.j2 @@ -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 + + + +{{ description }} + +## Objective + + + +{{ objective }} + +## Approach and Plan + + + +{{ approach }} + +## Progress and Next Steps + + + +{{ progress }} + +# Illustrations + + + +{{ illustrations }} + +# Background and References + + + +{{ background }} diff --git a/_layouts/pw40-project.html b/_layouts/pw40-project.html new file mode 100644 index 000000000..868ee88d7 --- /dev/null +++ b/_layouts/pw40-project.html @@ -0,0 +1,23 @@ +--- +layout: default +--- + +Back to Projects List + +