-
Notifications
You must be signed in to change notification settings - Fork 10
/
event.php
23 lines (21 loc) · 1.12 KB
/
event.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$title = "ACM @ PSU - Events";
$section = 'events';
require_once(dirname(__FILE__).'/scripts/top.php');
$event = $events[$_GET['event']];
if($event){ ?>
<div class='event_full'>
<h1><?=$event['title']?></h1>
<sub><?=$event['date']->format('m/d/Y')?> - <?=$event['speaker']?></sub>
<?php if(isset($event['url'])){?><p><a href="<?=$event['url']?>">Link</a></p><?php }?>
<?php if(isset($event['github'])){?><p><a href="<?=$event['github']?>">Source code</a></p><?php }?>
<?php if(isset($event['tutorial'])){?><p><a href="<?=$event['tutorial']?>">Tutorial</a></p><?php }?>
<?php if(isset($event['slides'])){?><p><a href="<?=$event['slides']?>">Slides</a></p><?php }?>
<?php if(isset($event['nda'])){?><p><a href="<?=$event['nda']?>">NDA</a></p><?php }?>
<?php if(isset($event['ip'])){?><p><a href="<?=$event['ip']?>">IP</a></p><?php }?>
<?php if(isset($event['survey'])){?><p><a href="<?=$event['survey']?>">Survey</a></p><?php }?>
<?=\Michelf\Markdown::defaultTransform($event['description'])?>
</div>
<?php }
require_once(dirname(__FILE__).'/scripts/bottom.php')
?>