diff options
author | MaZderMind | 2015-03-31 23:18:52 +0200 |
---|---|---|
committer | MaZderMind | 2015-03-31 23:18:52 +0200 |
commit | 90ffc426a0366f4baf93ba8d2a8fc411bbdfd41b (patch) | |
tree | b5d7063342df511c6d66e9845c14a9e3cc7665f8 | |
parent | 024d632396def58c335944cae24371a10a3306b9 (diff) |
Fix About-Page by using the Model-Class
Diffstat (limited to '')
-rw-r--r-- | template/about.phtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/about.phtml b/template/about.phtml index b2b2920..b38f049 100644 --- a/template/about.phtml +++ b/template/about.phtml @@ -1,7 +1,7 @@ <div class="container about"> <h1>About the Live-Streams and Recordings</h1> <p> - Lecture recording and streaming at <?=h(get('CONFERENCE.TITLE'))?> is organized and performed by the <a href="http://c3voc.de">Chaos Computer Club Video Operation Center</a>. + Lecture recording and streaming at <strong><?=h($conference->getTitle())?></strong> is organized and performed by the <a href="http://c3voc.de">Chaos Computer Club Video Operation Center</a>. </p> <p> If you like what we're doing, you can flattr us:<br /><br /> @@ -17,8 +17,8 @@ </p> <p> Although the licence permits it, we would like to ask you to don't distribute stream dumps. We try to release finished cuts of recordings as quickly as possible - <? if(has('OVERVIEW.RELEASES')): ?> - on <a href="<?=h(get('OVERVIEW.RELEASES'))?>"><?=h(get('OVERVIEW.RELEASES'))?></a> + <? if($conference->hasReleases()): ?> + on <a href="<?=h($conference->getReleasesUrl())?>"><?=h($conference->getReleasesUrl())?></a> <? endif ?>. Early releases of incomplete stream dumps without audio translation, subtitles, intros, <a href="https://auphonic.com/">unprocessed audio</a> and missing meta data is not what we have in mind when we spend three month of preparation in our spare time. </p> |