Skip to content
Snippets Groups Projects
Unverified Commit c0f4d561 authored by Tom Wiesing's avatar Tom Wiesing
Browse files

Get courses pages ready for deployment

parent 6494fe11
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ See the above links for details. ...@@ -25,7 +25,7 @@ See the above links for details.
* `public/*.md`: descriptions of the research areas * `public/*.md`: descriptions of the research areas
* `students/*.md`: pages for students * `students/*.md`: pages for students
* `systems/*.md`: descriptions of the KWARC sytems * `systems/*.md`: descriptions of the KWARC sytems
* `teaching/*.md`: KWARC courses (this may be obsoleted by univis) * `courses/*.md`: KWARC courses (this may be obsoleted by univis)
## Performance ## Performance
This jekyll page is tuned in order to build as fast as possible. This jekyll page is tuned in order to build as fast as possible.
......
...@@ -78,8 +78,15 @@ menu: ...@@ -78,8 +78,15 @@ menu:
- title: '4Students' - title: '4Students'
url: '/students/' url: '/students/'
active: '/students/' active: '/students/'
- title: 'Teaching'
folder: 'teaching' - title: 'Courses'
active: '/courses/'
items:
- title: 'Current Courses'
url: '/courses/'
- title: 'Former Courses'
url: '/courses/former/'
- title: 'Contact' - title: 'Contact'
url: '/contact/' url: '/contact/'
......
{% comment %}
Renders a link to a single course. Expects 'item' as a parameter.
{% endcomment %}
<li class="collection-item">
<a href="{{item.url}}" class="title">{{item.title}}</a>
</li>
\ No newline at end of file
{% comment %}
Renders the name of a single semester. Expects 'semester' as a parameter.
{% endcomment %}
{% assign nosummer = semester | remove: "SS" %}
{% assign semesteryear = nosummer | remove: "WS" %}
<!-- string.contains doesn't work, neither does substring -->
{% if nosummer == semester %}
Winter
{% else %}
Summer
{% endif %}
20{{semesteryear}}
\ No newline at end of file
...@@ -6,9 +6,15 @@ layout: default ...@@ -6,9 +6,15 @@ layout: default
<div class="col s12 m5 left"> <div class="col s12 m5 left">
<div class="card"> <div class="card">
<div class="card-content"> <div class="card-content">
<span class="card-title">{{page.title}} ({{page.taught}})</span> <span class="card-title">{{page.title}}</span>
{% assign person = page.instructor %} {% assign person = page.instructor %}
Instructor: {% include people_chip.html %} {% include people_chip.html %}
<hr />
{% for semester in page.semesters %}
{% include semester.html %}<br />
{% endfor %}
</div> </div>
</div> </div>
</div> </div>
......
--- ---
layout: course layout: course
instructor: mkohlhase
title: Projekt zur Künstlichen Intelligenz title: Projekt zur Künstlichen Intelligenz
menu_title: KI-Projekt instructor: mkohlhase
taught: WS16/17, SS16
semesters:
- WS16/17
- SS16
- SS17
--- ---
The KWARC group (Wissensrepräsentation und Verarbeitung) conducts research in knowledge representation and reasoning techniques with a view towards applications in knowledge management. The KWARC group (Wissensrepräsentation und Verarbeitung) conducts research in knowledge representation and reasoning techniques with a view towards applications in knowledge management.
......
--- ---
layout: course layout: course
instructor: mkohlhase
title: Vorlesung *Logik-Basierte Wissensrepräsentation für Mathematisch/Technisches Wissen* title: Vorlesung *Logik-Basierte Wissensrepräsentation für Mathematisch/Technisches Wissen*
menu_title: Vorlesung KRMT instructor: mkohlhase
taught: SS16/17
semesters:
- SS16/17
--- ---
Dieser Kurs behandelt Grundlagen der Mathematik, Modulare Formalisierung in Dieser Kurs behandelt Grundlagen der Mathematik, Modulare Formalisierung in
......
--- ---
layout: course layout: course
instructor: mkohlhase
title: Künstliche Intelligenz I title: Künstliche Intelligenz I
taught: WS16 instructor: mkohlhase
semesters:
- WS16/17
--- ---
Diese Vorlesung beschäftigt sich mit den Grundlagen der Künstlichen Intelligenz (KI), Diese Vorlesung beschäftigt sich mit den Grundlagen der Künstlichen Intelligenz (KI),
insbesondere insbesondere
* Agentenmodelle als Grundlagen der KI * Agentenmodelle als Grundlagen der KI
......
--- ---
layout: course layout: course
instructor: mkohlhase
title: Künstliche Intelligenz II title: Künstliche Intelligenz II
taught: SS16/17 instructor: mkohlhase
semesters:
- SS17
--- ---
Dieser Kurs beschäftigt sich mit den Grundlagen der Künstlichen Intelligenz (KI), insbesondere mit Techniken des Schliessens unter Unsicherheit, des maschinellen Lernens und des Sprachverstehens. Dieser Kurs beschäftigt sich mit den Grundlagen der Künstlichen Intelligenz (KI), insbesondere mit Techniken des Schliessens unter Unsicherheit, des maschinellen Lernens und des Sprachverstehens.
......
...@@ -7,8 +7,10 @@ examples.We keep the pages in the language the course will be in. ...@@ -7,8 +7,10 @@ examples.We keep the pages in the language the course will be in.
Each file needs some specific parameters: Each file needs some specific parameters:
* **layout** use *course* * **layout** use *course*
* **title** the title of the course/seminar * **title** the title of the course/seminar
* **subtitle** (optionnal) a subtitle. It will be adjuncted to your title in the post * **instructor** instructor of the course
link and just under the title in the post page
* **instructor** instructors * **semesters** semesters in which the course was taught
* **menu_title** the title in the menu
A semester is automatically regarded as active if the current semester matches one of the one in which the course was offered.
\ No newline at end of file
---
layout: default
title: Former Courses
permalink: /courses/former/
---
{% assign courses = site.pages | where: "layout", "course" | sort: "title" %}
<ul class="collection">
{% for item in courses %}
{% unless item.semesters contains site.semester %}
{% include course.html %}
{% endunless %}
{% endfor %}
</ul>
\ No newline at end of file
---
layout: default
title: Courses
permalink: /courses/
---
{% assign courses = site.pages | where: "layout", "course" | sort: "title" %}
<ul class="collection">
{% for item in courses %}
{% if item.semesters contains site.semester %}
{% include course.html %}
{% endif %}
{% endfor %}
</ul>
--- ---
layout: course layout: course
instructor: mkohlhase
title: Seminar Wissensrepräsentation und -verarbeitung title: Seminar Wissensrepräsentation und -verarbeitung
menu_title: Seminar WuV instructor: mkohlhase
semesters: []
--- ---
This seminar covers topics from knowledge representation and knowledge processing, mostly This seminar covers topics from knowledge representation and knowledge processing, mostly
with a focus on mathematical knowledge. with a focus on mathematical knowledge.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment