-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdates.php
26 lines (22 loc) · 833 Bytes
/
dates.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
$pageTitle='Dates and Deadlines'; //THIS MUST BE SET FOR EACH PAGE
$stylesheet='css/dates.css';
require 'header-left-bar.php'; //THIS MUST BE INCLUDED FOR EACH PAGE
?>
<div class="dates-container">
<ul>
<?php
//Print out all the deadlines from the config file
$dates = $json['dates'];
for ($i = 0; $i < count($dates); $i++) {
echo '<li>
<div class="title">'.$dates[$i]['title'].'</div>
<div class="date"><i class="fa fa-lg fa-calendar" aria-hidden="true"></i>
'.$dates[$i]['date'].'</div>
</li>';
}
?>
<li style="font-size:small;color:red;text-transform:uppercase;cursor:pointer"><a target="_blank" href="resources/CCTA2017.call.for.papers.pdf">Download the call for papers</a></li>
</ul>
</div>
<?php require 'right-bar-footer.php'; //THIS MUST BE INCLUDED FOR EACH PAGE ?>