This repository has been archived on 2024-01-11. You can view files and clone it, but cannot push or open issues or pull requests.
site/memos/index.php

27 lines
519 B
PHP

<!DOCTYPE html>
<html lang="gb">
<head>
<meta charset="utf-8">
<title>memos - south london</title>
<link rel="stylesheet" href="/memos/main.css">
<link rel="stylesheet" href="/memos/fonts.css">
</head>
<body>
<header>
<em>south london</em>
<h1>memos</h1>
</header>
<main>
<?php
foreach (glob("memos/*.html") as $filename)
{
include $filename;
}
?>
</main>
<footer><a href="./memos.rss">rss</a></footer>
</body>
</html>