[gnome-web-www: 1/2] Display more information for GNOME Circle applications and libraries



commit 4c1833a525f9c2d7770c231be877f21b1909d3e2
Author: Martin Abente Lahaye <martin abente lahaye gmail com>
Date:   Fri Jul 17 16:09:38 2020 -0400

    Display more information for GNOME Circle applications and libraries

 theme/page-circle.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/theme/page-circle.php b/theme/page-circle.php
index 4094815..5852628 100644
--- a/theme/page-circle.php
+++ b/theme/page-circle.php
@@ -21,7 +21,7 @@ $libs = json_decode(file_get_contents($libs_url));
             if (isset($apps)) {
               echo '<ul class="circle_apps_list">'."\n";
               foreach ($apps as $app) {
-                  echo '<li>' . $app->name . '</li>';
+                  echo '<li><a href="' . $app->url . '">' . $app->name . '</a></li>';
               }
               echo '</ul>'."\n";
             } else {
@@ -31,7 +31,7 @@ $libs = json_decode(file_get_contents($libs_url));
             if (isset($libs)) {
               echo '<ul class="circle_libs_list">'."\n";
               foreach ($libs as $lib) {
-                  echo '<li>' . $lib->name . '</li>';
+                  echo '<li><a href="' . $lib->url . '">' . $lib->name . '</a></li>';
               }
               echo '</ul>'."\n";
             } else {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]