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.
* `public/*.md`: descriptions of the research areas
* `students/*.md`: pages for students
* `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
This jekyll page is tuned in order to build as fast as possible.
......
......@@ -78,8 +78,15 @@ menu:
- title: '4Students'
url: '/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'
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
<div class="col s12 m5 left">
<div class="card">
<div class="card-content">
<span class="card-title">{{page.title}} ({{page.taught}})</span>
<span class="card-title">{{page.title}}</span>
{% 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>
......
---
layout: course
instructor: mkohlhase
title: Projekt zur Künstlichen Intelligenz
menu_title: KI-Projekt
taught: WS16/17, SS16
instructor: mkohlhase
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.
We extend techniques from formal methods so that they can be used in settings where formalization is either infeasible or too costly.
We concentrate on developing techniques for marking up the structural semantics in technical documents.
This level of markup allows for offering interesting knowledge management services without forcing theauthor to formalize the document contents.
......
---
layout: course
instructor: mkohlhase
title: Vorlesung *Logik-Basierte Wissensrepräsentation für Mathematisch/Technisches Wissen*
menu_title: Vorlesung KRMT
taught: SS16/17
instructor: mkohlhase
semesters:
- SS16/17
---
Dieser Kurs behandelt Grundlagen der Mathematik, Modulare Formalisierung in
......
---
layout: course
instructor: mkohlhase
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),
insbesondere
* Agentenmodelle als Grundlagen der KI
......
---
layout: course
instructor: mkohlhase
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.
......
......@@ -7,8 +7,10 @@ examples.We keep the pages in the language the course will be in.
Each file needs some specific parameters:
* **layout** use *course*
* **title** the title of the course/seminar
* **subtitle** (optionnal) a subtitle. It will be adjuncted to your title in the post
link and just under the title in the post page
* **instructor** instructors
* **menu_title** the title in the menu
* **instructor** instructor of the course
* **semesters** semesters in which the course was taught
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
instructor: mkohlhase
title: Seminar Wissensrepräsentation und -verarbeitung
menu_title: Seminar WuV
instructor: mkohlhase
semesters: []
---
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.
Finish editing this message first!
Please register or to comment