nettsiden/www/brettspill/index.php

58 lines
1.5 KiB
PHP
Raw Normal View History

2016-08-26 22:52:59 +02:00
<!DOCTYPE html>
<?php
date_default_timezone_set('Europe/Oslo');
setlocale(LC_ALL, 'no_NO');
require __DIR__ . '/../../src/_autoload.php';
require __DIR__ . '/../../sql_config.php';
2016-08-26 23:14:46 +02:00
use \pvv\side\Agenda;
2016-08-26 22:52:59 +02:00
?>
<html lang="no">
<title>Sosialverkstedet</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="stylesheet" href="../css/normalize.css">
<link rel="stylesheet" href="../css/style.css">
<link rel="stylesheet" href="../css/events.css">
<nav>
<li><a href="../index.php">hjem</a></li>
<li><a href="../kurs/index.html">kurs</a></li>
<li><a href="../prosjekt/index.html">prosjekt</a></li>
<li class="active"><a href="../sosiale/index.html">sosiale</a></li>
<li><a href="../wiki/index.html">wiki</a></li>
</nav>
<header>Sosial&shy;verk&shy;stedet</header>
<main>
<?php
$activity = new \pvv\side\social\BrettspillActivity;
$nextEvent = $activity->getNextEventFrom(new DateTimeImmutable);
?>
<article>
<h2><em><?= $nextEvent->getRelativeDate()?></em> Brettspillkveld</h2>
<ul class="subtext">
2016-08-26 23:17:59 +02:00
<li>Tid:
<strong>
<?= Agenda::getFormattedDate($nextEvent->getStart());?>
</strong>
2016-08-26 22:52:59 +02:00
<li>Sted:
2016-08-26 23:17:59 +02:00
<strong>
<?= $nextEvent->getLocation();?>
</strong>
2016-08-26 22:52:59 +02:00
<li>Arrangør:
2016-08-26 23:17:59 +02:00
<strong>
<?= $nextEvent->getOrganiser();?>
</strong>
2016-08-26 22:52:59 +02:00
</ul>
<?= implode($nextEvent->getDescription(), "<p>\n</p>")?>
2016-08-26 22:52:59 +02:00
<p><a class="btn" href="#">Påminn meg</a>
</article>
</main>