summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-12-22 18:45:29 +0100
committerLudovic Courtès <ludo@gnu.org>2015-12-22 18:51:02 +0100
commit2e02412a90fc9933735a4de74746091ee699174e (patch)
tree5f7642ac5504751e429be12e02e322d3e799d8bd
parent497145ef95cfc7548eb7c406d6227104f4b66700 (diff)
downloadguix-artwork-2e02412a90fc9933735a4de74746091ee699174e.tar
guix-artwork-2e02412a90fc9933735a4de74746091ee699174e.tar.gz
website: packages: Move anchor to the right place.
* website/www/packages.scm (package->sxml): Move 'a' within the 'span' that contains the synopsis. Before that the "Expand" link would appear at the wrong place.
-rw-r--r--website/www/packages.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/www/packages.scm b/website/www/packages.scm
index a943961..483c32b 100644
--- a/website/www/packages.scm
+++ b/website/www/packages.scm
@@ -214,8 +214,8 @@ description-ids as formal parameters."
(title "Link to the Guix package source code"))
,(package-name package) " "
,(package-version package)))
- (td (a (@ (name ,anchor)))
- (span ,(package-synopsis package))
+ (td (span ,(package-synopsis package)
+ (a (@ (name ,anchor))))
(div (@ (id ,description-id))
,(match (package-logo (package-name package))
((? string? url)