diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-20 16:49:56 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-20 16:49:56 -0400 |
commit | e751b692c2e4fcc79e2652d4d05f88ce724a7e5f (patch) | |
tree | 74af52740361353c81fa5eb23da578a0a37530c4 /src/web/_views | |
parent | refactor config and add allowed_hosts (diff) | |
download | website-e751b692c2e4fcc79e2652d4d05f88ce724a7e5f.tar.gz website-e751b692c2e4fcc79e2652d4d05f88ce724a7e5f.tar.bz2 website-e751b692c2e4fcc79e2652d4d05f88ce724a7e5f.zip |
fix git url
Diffstat (limited to 'src/web/_views')
-rw-r--r-- | src/web/_views/apps/projects.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_views/apps/projects.php b/src/web/_views/apps/projects.php index bac1004..6137942 100644 --- a/src/web/_views/apps/projects.php +++ b/src/web/_views/apps/projects.php @@ -3,7 +3,7 @@ foreach($projects as $project) { $meta = $project['meta']; $content = $project['content']; - $link = lang('git_url') . '/' . $meta['repo']; + $link = CONFIG['git_url'] . '/' . $meta['repo']; echo '<a href="' . $link . '"><h3>' . $meta['name'] . '</h3></a>'; echo $content; } |