Comma-separated list of speakers

This commit is contained in:
Stefan Schlott 2013-08-24 16:52:47 +02:00
parent 37cfd0faa6
commit 21257425e0
3 changed files with 35 additions and 2 deletions

View file

@ -1,12 +1,12 @@
---
kind: event
startdate: 2003-02-14 19:30
startdate: 2003-02-14T19:30:00
duration: 2h
title: "Über die besonderen Anforderungen beim Sammeln von historischen Großrechnern"
speakers:
-
name: Wolfgang Stief
affiliaton: GUUG München
affiliation: GUUG München
location:
location: bib
details: Max-Bense-Forum (UG)

View file

@ -113,4 +113,17 @@ ul.horizontal {
}
}
.commaseparated {
display: inline;
list-style: none;
li {
isplay: inline;
}
li:after {
content: ", ";
}
li:last-child:after {
content: "";
}
}