aboutsummaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorMaZderMind2015-11-08 16:31:29 +0100
committerMaZderMind2015-11-08 16:31:29 +0100
commit0d91cc5f111fac882f1bb375c2bf426195c9cae2 (patch)
tree255e2f352f204fac8090cc837287167d3714f600 /template
parenta0b2129479ba10561811847c0651df8b55c8a6ba (diff)
finish overview-page
Diffstat (limited to '')
-rw-r--r--template/about.phtml2
-rw-r--r--template/allconferences.phtml33
2 files changed, 34 insertions, 1 deletions
diff --git a/template/about.phtml b/template/about.phtml
index 68aa2fb..eee4896 100644
--- a/template/about.phtml
+++ b/template/about.phtml
@@ -6,7 +6,7 @@
<p>
If you like what we're doing, you can flattr us:<br /><br />
<a href="https://flattr.com/thing/3755795/">
- <img src="assets/img/flattrbutton.png" alt="Flattr this" />
+ <img src="<?=h($assets)?>/img/flattrbutton.png" alt="Flattr this" />
</a>
</p>
diff --git a/template/allconferences.phtml b/template/allconferences.phtml
new file mode 100644
index 0000000..2d47b82
--- /dev/null
+++ b/template/allconferences.phtml
@@ -0,0 +1,33 @@
+<div class="container">
+ <h1><?=h($title)?></h1>
+ <p>We are currently active on multiple Conferences. Please choose which one you want access.</p>
+
+ <br><br>
+
+ <div class="row clearfix">
+ <? $count = count($conferences) ?>
+ <? foreach($conferences as $idx => $info): ?>
+ <?
+ // when we have more then 3 conferences, all but the last 3 will be displayed with 1/3 width
+ if($count - $idx <= ($count % 3))
+ $w = 12/($count%3);
+ else
+ $w = 12/3;
+ ?>
+
+ <div class="
+ clearfix
+ conference
+ col-xs-12
+ col-md-<?=h($w)?>
+ ">
+ <div class="panel panel-default">
+ <div class="panel-body">
+ <a href="<?=h($info['link'])?>"><?=h($info['title'])?></a>
+ <p><?=h($info['description'])?></p>
+ </div>
+ </div>
+ </div>
+ <? endforeach ?>
+ </div>
+</div>