-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
41 lines (39 loc) · 947 Bytes
/
home.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/** @var \PHPDX\Site\Template\Template $this */
$this->layout('layout', [
'title' => 'PDXPHP Usergroup',
'nologo' => true,
'active' => '/'
]);
?>
<div class="row">
<div class="col-12 center">
<div class="logo img center">
<img src="/images/logo.svg">
</div>
<p><?= $this->markdown('mission') ?></p>
</div>
</div>
<div class="row">
<div class="col-6">
<h3 class="center">Next Event</h3>
<?php
$this->insert('events/list', [
'eventList' => $eventList,
'limit' => 1,
'small' => true
]);
?>
</div>
<div class="col-6">
<h3 class="center">Last Event</h3>
<?php
$this->insert('events/list', [
'eventList' => $pastEventList,
'limit' => 1,
'small' => true
]);
?>
</div>
</div>
<div class="spacer" style="height:50px"></div>