Skip to content

Commit

Permalink
Added a Student Theses menu
Browse files Browse the repository at this point in the history
  • Loading branch information
shinhyungyang committed Dec 10, 2024
1 parent 9309281 commit 6bf5dc0
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
46 changes: 46 additions & 0 deletions _layouts/theses.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
layout: page
---

{% for item in site.pages %}
{% if item.title == "Current Projects" %}
{% assign currentProjects = item.projects %}
{% endif %}
{% endfor %}

<div class="post">
<article>
<table class="table-borderless">
<thead>
<tr>
<th style="text-align: left; width: 75%;">Thema für Abschlussarbeit</th>
<th style="text-align: left; width: 25%;">Betreuer</th>
</tr>
</thead>
{% for theme in page.themes %}
<tr>
<td>
<div style="text-align: left;">
{{ theme.desc | prepend: "**" | append: "**" | markdownify }}
</div>
</td>
<td>
{% if theme.logo %}
{% assign project_image_path = theme.logo| prepend: 'assets/img/' %}
{% assign project_image_class = 'img-fluid' %}
{% capture sizes %}(min-width: 100px) 30vw"{% endcapture %}
{% include figure.liquid loading="eager" path=project_image_path class=project_image_class sizes=sizes alt=theme.logo %}
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</article>
</div>

{% if page.content %}
<div class="clearfix">
{{ page.content | markdownify }}
</div>
{% endif %}

22 changes: 22 additions & 0 deletions _pages/student-theses.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
layout: theses
permalink: /student-theses/
title: Student Theses
description:
nav: true
nav_order: 3

themes:
- desc: Abschlussarbeiten im Kontext des Open Source Projekts [Kieker Monitoring Framework](http://kieker-monitoring.net/research/theses/). siehe auch [Liste der offenen Themen](http://kieker-monitoring.net/research/theses/).
logo: SustainKieker-logo.svg
- desc: Abschlussarbeiten / Projekte im Kontext des Open Source Forschungsprojekts [ExplorViz](https://explorviz.uni-kiel.de/)
logo: explorviz-logo-dark.png
- desc: Dynamic Software Quality Metrics -- [Henning Schnoor](/team/Priv-Doz-Dr-Henning-Schnoor/)
logo:
---
---
##### Finished Theses

Finished theses are uploaded to KielPrints, a prints publication repository.

[![KielPrints](/assets/img/Kielprints.png)](https://oceanrep.geomar.de/cgi/search/archive/advanced?screen=Search&dataset=archive&book_title%2Ftitle_merge=ALL&book_title%2Ftitle=&contributors_name%2Fcreators_name%2Feditors_name_merge=ALL&contributors_name%2Fcreators_name%2Feditors_name=&corp_creators_merge=ALL&corp_creators=&dates_date=&publication%2Fseries_merge=ALL&publication%2Fseries=&issn_merge=ALL&issn=&event_title_merge=ALL&event_title=&keywords_merge=ALL&keywords=&abstract_merge=ALL&abstract=&projects_merge=ALL&projects=&expeditions_name_merge=ALL&expeditions_name=&platform_merge=ALL&platform=&thesis_type=diploma&thesis_type=batchelor&thesis_type=masters&thesis_type=student&open_access=EITHER&dates_date_type_merge=ANY&subjects_merge=ANY&dewey_merge=ANY&divisions=soft_eng&divisions_merge=ANY&contribution_number_number=&publisher_merge=ALL&publisher=&country_merge=ANY&poftopics_merge=ANY&id_number_merge=ALL&id_number=&q_merge=ALL&q=&satisfyall=ALL&order=-date%2Fcreators_browse_name%2Ftitle&_action_search=Suchen)

0 comments on commit 6bf5dc0

Please sign in to comment.