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

Make posts nicer

parent 128f1ec3
Branches
No related tags found
No related merge requests found
......@@ -3,6 +3,6 @@ layout: post
author: mkohlhase
title: KWARC established at FAU
tags:
- announcement
- Announcements
---
With Dennis Müller movint to Erlangen, we have (the beginnings of) a group presence at FAU. The Winter semester begins later this month with an AI course.
......@@ -3,6 +3,6 @@ layout: post
author: mkohlhase
title: KWARC established at FAU
tags:
- announcement
- Announcements
---
With Dennis Müller movint to Erlangen, we have (the beginnings of) a group presence at FAU.
With Dennis Müller moving to Erlangen, we have (the beginnings of) a group presence at FAU.
......@@ -3,7 +3,7 @@ layout: post
author: mkohlhase
title: Math Modeling Workshop at FAU; Math-in-the-Middle Ontology
tags:
- workshop
- Workshops
---
KWARC had a very productive workshop on modeling mathematical models with two members of the
......
......@@ -3,7 +3,7 @@ layout: post
author: mkohlhase
title: Report on the WP6-WIAS Workshop on Math-in-the-Middle Content
tags:
- workshop
- Workshops
---
WP6 participants JacU (Florian Rabe), FAU (Dennis Müller, Michael Kohlhase) and UZH (Paul
......
......@@ -3,7 +3,7 @@ layout: post
author: mkohlhase
title: First OpenDreamKit Review
tags:
- announcement
- Announcements
- ODK
---
......
......@@ -3,7 +3,7 @@ layout: post
author: mkohlhase
title: KWARC is recruiting Ph.D. Candidates and PostDocs (multiple Projects)
tags:
- recruiting
- Recruiting
---
The KWARC group at [FAU Erlangen-Nürnberg](http://cs.fau.de) is looking for Ph.D. candidates and PostDocs in multiple MKM-related projects: e.g. OAF, OpenDreamKit (others are in the pipeline)
......
This folder contains a page for each *tag* on the website. Tags are used to organize
posts by thematics. The tag system works almost automatically except that we need
to explicitly create a page for each tag we use (due to some limitations of jekyll
gitHub pages).
For each tag, we create a *almost empty* *md* file which only contains:
---
layout: tagpage
tag: my-tag-name
title: My tag Title
class: (optional) either software (appears in yellow), keyword (appears in green), or event (appears in blue)
---
Use the other tag pages as examples.
---
layout: tagpage
tag: blogpost
title: Blogpost
---
---
layout: tagpage
tag: conference
title: Conference
class: event
---
---
layout: tagpage
tag: publication
title: Publication
---
---
layout: tagpage
tag: recruiting
title: Recruiting
---
---
layout: tagpage
tag: release
title: Release
---
---
layout: tagpage
tag: talk
class: event
title: Talk
---
---
layout: tagpage
tag: workshop
title: Workshop
class: event
---
......@@ -12,11 +12,13 @@ This level of markup allows for offering interesting [knowledge management servi
## Recent News ([see all](/news/posts/))
## Recent News ([see all](/news/))
<ul class="collection">
{% for post in site.posts limit:5 %}
{% include post_link.html %}
{% endfor %}
</ul>
<p>&copy; {{ site.time | date: '%Y' }}. All rights reserved.</p>
......
......@@ -4,15 +4,12 @@ title: News
source: _posts/
---
{% comment %}
To add a new blog/news post, please create a file in the _posts/
directory, taking the existing files as examples.
{% endcomment %}
<div class="posts">
<ul class="collection">
{% for post in paginator.posts %}
{% include post_link.html %}
{% endfor %}
</ul>
</div>
{% include pagination.html %}
\ No newline at end of file
---
layout: page
title: Project Activites
alltags: True
menu_order: 101
---
{% comment %}
Project activities are generated through the /_posts/ folder
{% endcomment %}
<h2>By tag</h2>
{% assign with_post_numbers = true %}
{% include tags_module.html %}
<div class="tagcloud" >
<span class="tag" >
<a class="btn btn-default" href="{{ site.blog_path}}">
All activites <span class="badge">{{ site.posts.size }}</span>
</a>
</span>
{{ tagscontent }}
</div>
<h2>Most recent Posts (<a href="{{site.blog_path}}">See all</a>)</h2>
{% for post in site.posts %}
{% if forloop.index < 5 %}
{% include post_link.html %}
{% endif %}
{% endfor %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment