summaryrefslogtreecommitdiff
path: root/src/web/_views/projects/main.php
blob: 6137942253d3a70856371e1839bd8edc22cfd45f (plain)
1
2
3
4
5
6
7
8
9
10
11
<?=aria_section('projects', lang('title'))?>
	<?php
		foreach($projects as $project) {
			$meta = $project['meta'];
			$content = $project['content'];
			$link = CONFIG['git_url'] . '/' . $meta['repo'];
			echo '<a href="' . $link . '"><h3>' . $meta['name'] . '</h3></a>';
			echo $content;
		}
	?>
</div>