summaryrefslogtreecommitdiff
path: root/src/web/_views/apps/blog.php
blob: 78abaa77afdcbeb60e9eb689fb718ad59dd66933 (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 '<div class="span">' . $meta['desc'] . '</div>';
			echo '<div class="span"><time>' . $this->format_date($meta['date']) . '</time></div>';
		}
	?>
</div>