Compare commits

...

3 Commits

Author SHA1 Message Date
Niklas Meinzer
bce2ce56b5 Move css code to file 2025-02-27 08:40:42 +01:00
Niklas Meinzer
089d3d2509 Add test.php to gitignore 2025-02-27 08:25:39 +01:00
Niklas Meinzer
495c782e34 Add past event section 2025-02-27 08:25:17 +01:00
3 changed files with 116 additions and 86 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
config.php
test.php

122
index.php
View File

@@ -3,84 +3,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Allmende-Essen</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
float: left;
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header #branding img {
height: 50px;
width: 40px;
margin-right: 10px;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
.dinner-option {
background: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.dinner-option h2 {
margin-top: 0;
}
.btn {
background: #77aaff;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
margin-top: 10px;
}
.btn-grey {
background: #ccc;
color: #333;
}
.btn:hover {
background: #5a99d0;
}
</style>
<title>Allmende-Essen Test</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
@@ -109,8 +33,8 @@
$dsn = "pgsql:host=$host;dbname=$dbname";
$pdo = new PDO($dsn, $username, $password);
// Query to fetch dinner options
$sql = "SELECT id, title, link, event_date, registration_closes FROM meals order by registration_closes < now(), event_date";
// Query to fetch future dinner options
$sql = "SELECT id, title, link, event_date, registration_closes FROM meals WHERE event_date >= now()::date order by registration_closes < now(), event_date";
$stmt = $pdo->prepare($sql);
$stmt->execute();
@@ -129,9 +53,6 @@
$event_date = strtotime($row["event_date"]);
if ($event_date < $today) {
continue;
}
$weekday = date("w", $event_date);
$date = new DateTimeImmutable($row["event_date"]);
@@ -146,9 +67,42 @@
}
echo '</div>';
}
// close container
echo '</div>';
// Query to fetch past dinner options
$sql = "SELECT id, title, link, event_date FROM meals WHERE event_date < now()::date order by event_date";
$stmt = $pdo->prepare($sql);
$stmt->execute();
$result = $stmt->fetchAll(PDO::FETCH_ASSOC);
if(sizeof($result) > 0) {
?>
</div>
<div class="container">
<h2>Vergangene Essen</h2>
<?php
for($i = 0; $i < sizeof($result); $i++) {
$row = $result[$i];
$event_date = strtotime($row["event_date"]);
$weekday = date("w", $event_date);
$date = new DateTimeImmutable($row["event_date"]);
echo '<div class="dinner-option">';
echo '<h2>' . $days[$weekday] . " " . $date->format('d.m.Y') .'</h2>';
echo '<p>' . htmlspecialchars($row["title"]) . '</p>';
echo '<a href="' . $row["link"] . '" class="btn btn-grey">Anmeldungen ansehen</a>';
echo '</div>';
}
// close container
echo '</div>';
}
?>
</body>
</html>

75
style.css Normal file
View File

@@ -0,0 +1,75 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
float: left;
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header #branding img {
height: 50px;
width: 40px;
margin-right: 10px;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
.dinner-option {
background: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.dinner-option h2 {
margin-top: 0;
}
.btn {
background: #77aaff;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
margin-top: 10px;
}
.btn-grey {
background: #ccc;
color: #333;
}
.btn:hover {
background: #5a99d0;
}