Skip to content

Commit

Permalink
add new project meta fields
Browse files Browse the repository at this point in the history
  • Loading branch information
bkleinen committed Jun 16, 2024
1 parent f21e4f4 commit 4f52cbd
Show file tree
Hide file tree
Showing 13 changed files with 77 additions and 18 deletions.
12 changes: 10 additions & 2 deletions archetypes/semester/bachelor/b0-template-minimal/_index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
+++
title = "Bachelor Project Template"
project_id = "B0"
title = "Minimal Template"
subtitle = ""
claim = ""
abstract = ""

# Properties for displaying the project in the project list
card_image = "kitty.jpg"
# card_description is deprecated, will be replaced by abstract/and or claim
card_description = "This is only a template"

# Names are optional, team size is sufficient
team = ["Member 1", "Member 2"]
supervisor = "Supervisor"
draft = true
draft = false

website_link = ""
source_link = ""
+++

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla facilisis neque id vulputate malesuada. Quisque dignissim finibus urna sed sagittis.
Expand Down
13 changes: 11 additions & 2 deletions archetypes/semester/bachelor/b0-template/_index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
+++
title = "Bachelor Project Template"
project_id = "B0"
title = "Bachelor Project Template"
subtitle = ""
claim = ""
abstract = ""

# Properties for displaying the project in the project list
card_image = "kitty.jpg"
# card_description is deprecated, will be replaced by abstract/and or claim
card_description = "This is only a template"

# Names are optional, team size is sufficient
team = ["Member 1", "Member 2"]
supervisor = "Supervisor"
draft = true
draft = false

website_link = ""
source_link = ""

+++

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla facilisis neque id vulputate malesuada. Quisque dignissim finibus urna sed sagittis.
Expand Down
3 changes: 2 additions & 1 deletion archetypes/semester/bachelor/b0-template/features.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Features"
weight = 1
weight = 20
draft = true
+++

{{<section title="Features">}}
Expand Down
3 changes: 2 additions & 1 deletion archetypes/semester/bachelor/b0-template/process.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Process"
weight = 1
weight = 10
draft = false
+++

{{<section title="Process">}}
Expand Down
3 changes: 2 additions & 1 deletion archetypes/semester/bachelor/b0-template/techstack.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Tech Stack"
weight = 1
weight = 30
draft = true
+++

{{<section title="Tech Stack">}}
Expand Down
14 changes: 12 additions & 2 deletions archetypes/semester/master/m0-template/_index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
+++
title = "Master Project Template"
project_id = "M0"
title = "Master Project Template"
project_id = "B0"
title = "Bachelor Project Template"
subtitle = ""
claim = ""
abstract = ""

# Properties for displaying the project in the project list
card_image = "kitty.jpg"
# card_description is deprecated, will be replaced by abstract/and or claim
card_description = "This is only a template"

# Names are optional, team size is sufficient
team = ["Member 1", "Member 2"]
supervisor = "Supervisor"
draft = true
draft = false

website_link = ""
source_link = ""
+++

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla facilisis neque id vulputate malesuada. Quisque dignissim finibus urna sed sagittis.
Expand Down
3 changes: 2 additions & 1 deletion archetypes/semester/master/m0-template/features.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Features"
weight = 1
weight = 20
draft = true
+++

{{<section title="Features">}}
Expand Down
3 changes: 2 additions & 1 deletion archetypes/semester/master/m0-template/process.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Process"
weight = 1
weight = 10
draft = true
+++

{{<section title="Process">}}
Expand Down
3 changes: 2 additions & 1 deletion archetypes/semester/master/m0-template/techstack.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Tech Stack"
weight = 1
weight = 30
draft = true
+++

{{<section title="Tech Stack">}}
Expand Down
7 changes: 7 additions & 0 deletions content/ws23/debug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
+++
title = "ws23"
full_title = "Winter semester 2023"
layout = "projects_list_debug"
category = "project-archive"
weight = 20232
+++
17 changes: 17 additions & 0 deletions doc/review_process.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
```mermaid
flowchart TD
A[Team: Edit Website] -->|"publish on fork website\n(username.github.io/showtime-website)"| B(Team: Request Review from Supervisor)
B --> R(Supervisor: Review Website)
R --> C{Website OK?}
C -->|Yes| D[Team: Pull Request]
C -->|No| A
D -->R1(Team: Request review from SGS)
R1 --> R2(SGS: Review Website)
R2 --> C1{Website OK?}
C1 -->|Yes| M[SGS: Merge PR]
C1 -->|No| A1[Team: Edit Website]
A1 --> D1[Team: Update Pull Request]
D1 --> R1
```
12 changes: 7 additions & 5 deletions layouts/partials/project_fields.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
{{ range $projects }}
<p id ="{{ .Params.project_id }}"></p>
<h4>{{ .Params.project_id }} / {{ .Type }} <a href="{{ .RelPermalink }}">{{ .RelPermalink }}</a></h4>
<ul>
<li>.Title: {{ .Title }}</li>
<li>.Params.card_description: {{ .Params.card_description }}</li>

<p>Supervisor: {{ .Params.Supervisor }}</p>
<p>title = {{ .Title }}</p>
<p>subtitle = {{ .Params.Subtitle }}</p>
<p>claim = {{ .Params.claim }}</p>
<p>abstract = {{ .Params.abstract }}</p>

</ul>

<p>card_description = {{ .Params.card_description }}</p>
<hr class="alternate">
{{ end }}
</main>
2 changes: 1 addition & 1 deletion themes/showtime-theme-2021

0 comments on commit 4f52cbd

Please sign in to comment.