Ensemble Aerials
In her wok within ensembles and compagnies, Jana Korb is searching for interdisciplinarity and transcendation of traditional borders: by combining physical theater with circus arts, dance with aerials and new media…
Thus she creates deep, condensed and touching theater pieces – using aerial arts as her physical expression and narrative.
Her world of aerial theater is painfully human, is about personal dreams and examines pure emotions.
$cat = OOCategory::getCategoryById($this->getValue("category_id"));
$articles = $cat->getArticles();
foreach ( $articles as $ooarticle) {
if ($ooarticle->isOnline(true) && ($ooarticle->isStartArticle() != 1)) {
$embed_article = new article($ooarticle->getId());
$articleId = $ooarticle->getId();
$embed_article->setArticleId( $articleId);
$embed_article->setCLang($REX["CUR_CLANG"]);
$articleContent = $embed_article->getArticle();
// Leerzeichen entfernen am Anfang und Ende des Strings
$articleContent = trim($articleContent);
// Leerzeichen vor einfuegen.
// Sonst wird das letzte Wort eines Absatzes und das erste Wort
// des nachfolgenden Absatzes als ein Wort erkannt
$articleContent = str_replace("", " ", $articleContent);
// Leerzeichen vor
einfuegen.
// Sonst wird das letzte Wort einer Zeile und das erste Wort
// des nachfolgenden Zeile als ein Wort erkannt
$articleContent = str_replace("
", "
", $articleContent);
print '
';
print $articleContent;
}
}
?>