-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtpl_start.php
35 lines (33 loc) · 1.12 KB
/
tpl_start.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
<?php
/**
* Template start page, included in the main
*/
// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();
require_once(DOKU_INC.'inc/FeedParser.php');
?>
<div class="start-page">
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="well">
<?php tpl_include_page('association:presentation'); ?>
</div>
</div>
<div class="col-sm-6 col-md-4">
<?php tpl_include_page('actus'); ?>
</div>
<div class="col-sm-6 col-md-4">
<h2>Événements du Libre</h2>
<?php _tpl_agenda_short('http://www.agendadulibre.org/events.rss?region=16&daylimit=35'); ?>
</div>
<div class="clearfix hidden-xs hidden-sm"></div>
<div class="col-sm-6 col-md-4">
<?php tpl_include_page('rencontres:presentation'); ?>
</div>
<div class="col-sm-6 col-md-4">
<?php tpl_include_page('installparty:presentation'); ?>
</div>
<div class="col-sm-6 col-md-4">
<?php tpl_include_page('ateliers:presentation'); ?>
</div>
</div>