diff options
Diffstat (limited to 'web/view/view.scm')
-rw-r--r-- | web/view/view.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/web/view/view.scm b/web/view/view.scm index 7ba7979..669cc9f 100644 --- a/web/view/view.scm +++ b/web/view/view.scm @@ -13,18 +13,20 @@ #:export (view-brand)) + (define (view-aging) (aging-html #:info `( - (p "New aging portal! This is initial work for providing a full community webservice for aging.") - ,(markdown-file->sxml "test.md") - (h2 "Explore GeneNetwork for aging (GN4AGING)") - (p "Find all " (mark "genes") " that have a hit for") + ,(markdown-github->sxml "genenetwork/gn-docs/general/brand/aging/home.md") + (h2 "Explore GeneNetwork2 for aging (GN4AGING)") + (p "Find all " (strong "genes") " that have a hit for") (ul - (li (a (@ (href "https://genenetwork.org/gsearch?type=gene&terms=aging")) "aging"))) - (p "Find all " (mark "phenotypes") " that have a hit for") + (li (a (@ (href "https://genenetwork.org/gsearch?type=gene&terms=aging")) "aging")) + (li (a (@ (href "https://genenetwork.org/gsearch?type=gene&terms=alzheimer")) "alzheimer's"))) + (p "Find all " (strong "phenotypes") " that have a hit for") (ul (li (a (@ (href "https://genenetwork.org/gsearch?type=phenotype&terms=aging")) "aging")) + (li (a (@ (href "https://genenetwork.org/gsearch?type=phenotype&terms=alzheimer")) "alzheimer's")) ) (p "Note that you can use the powerful search at the top of the results page! Search terms can be " |