summaryrefslogtreecommitdiff
path: root/src/web/_views/apps/blog.php
blob: f64453ce998ca9019daf65beda0260ab749f2c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?=aria_section('blog', lang('title'))?>
	<p><?=lang('blog_desc', sub: [$this->get_url('rss.xml')])?></p>
	<?php
		foreach($blog as $name => $post) {
			$meta = $post['meta'];
			$link = $this->get_url('blog/post/' . substr($name, 0, -3));
			echo '<a href="' . $link . '"><h3>' . $meta['name'] . '</h3></a>';
			echo '<span>' . $meta['desc'] . '</span><br>';
			echo '<span><time>' . $this->format_date($meta['date']) . '</time></span>';
		}
	?>
</div>