diff options
author | Freya Murphy <freya@freyacat.org> | 2024-05-24 09:05:42 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-05-24 09:05:42 -0400 |
commit | c5f39ea2cd7cf02246705ea8872d3b350526165c (patch) | |
tree | 2694f9fdc5d83b529a01f2997c1d89c271c86592 /src/web/_views/apps/projects.php | |
download | website-c5f39ea2cd7cf02246705ea8872d3b350526165c.tar.gz website-c5f39ea2cd7cf02246705ea8872d3b350526165c.tar.bz2 website-c5f39ea2cd7cf02246705ea8872d3b350526165c.zip |
initial
Diffstat (limited to 'src/web/_views/apps/projects.php')
-rw-r--r-- | src/web/_views/apps/projects.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/web/_views/apps/projects.php b/src/web/_views/apps/projects.php new file mode 100644 index 0000000..bac1004 --- /dev/null +++ b/src/web/_views/apps/projects.php @@ -0,0 +1,11 @@ +<?=aria_section('projects', lang('title'))?> + <?php + foreach($projects as $project) { + $meta = $project['meta']; + $content = $project['content']; + $link = lang('git_url') . '/' . $meta['repo']; + echo '<a href="' . $link . '"><h3>' . $meta['name'] . '</h3></a>'; + echo $content; + } + ?> +</div> |