summaryrefslogtreecommitdiff
path: root/src/web/_views/apps/projects.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/_views/apps/projects.php')
-rw-r--r--src/web/_views/apps/projects.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/web/_views/apps/projects.php b/src/web/_views/apps/projects.php
deleted file mode 100644
index 6137942..0000000
--- a/src/web/_views/apps/projects.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?=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>