Skip to content
Snippets Groups Projects
Commit df0ffbd4 authored by Arthur Le Bars's avatar Arthur Le Bars
Browse files

fix links

parent 435981ee
No related branches found
No related tags found
No related merge requests found
...@@ -330,7 +330,7 @@ ...@@ -330,7 +330,7 @@
<div class="tripal_analysis_blast-teaser tripal-teaser"> <div class="tripal_analysis_blast-teaser tripal-teaser">
<div class="tripal-analysis-blast-teaser-title tripal-teaser-title"> <div class="tripal-analysis-blast-teaser-title tripal-teaser-title">
<?php <?php
print "Genome assembly: <a href=".$GLOBALS['base_url'].'/jbrowse/'.">".$an->name."</a>"; print "Genome assembly: <a href=".$GLOBALS['base_url'].'/jbrowse/'.">".$an->name."</a>"; /* removed span, added placeholder link */
?> ?>
</div> </div>
<div class="tripal-analysis-blast-teaser-text tripal-teaser-text"><?php <div class="tripal-analysis-blast-teaser-text tripal-teaser-text"><?php
...@@ -352,20 +352,20 @@ ...@@ -352,20 +352,20 @@
<?php if ($an->human_kind != 'assembly'): ?> <?php if ($an->human_kind != 'assembly'): ?>
<div class="tripal_analysis_blast-teaser tripal-teaser"> <div class="tripal_analysis_blast-teaser tripal-teaser">
<div class="tripal-analysis-blast-teaser-title tripal-teaser-title"> <div class="tripal-analysis-blast-teaser-title tripal-teaser-title">
<?php <?php /* removed span, added placeholder link */
if ($an->human_kind == 'functional') { if ($an->human_kind == 'functional') {
print "Functional annotation: <span class='data_highlight'>".$an->name; print "Functional annotation: <a href=".$GLOBALS['base_url'].'/jbrowse/'.">".$an->name."</a>".$an->name;
} }
else if ($an->human_kind == 'structural') { else if ($an->human_kind == 'structural') {
print "Structural annotation: <span class='data_highlight'>".$an->name; print "Structural annotation: <a href=".$GLOBALS['base_url'].'/jbrowse/'.">".$an->name."</a>".$an->name;
} }
else if ($an->human_kind == 'transcriptome') { else if ($an->human_kind == 'transcriptome') {
print "Transcriptome: <span class='data_highlight'>".$an->name; print "Transcriptome: <a href=".$GLOBALS['base_url'].'/jbrowse/'.">".$an->name."</a>".$an->name;
} }
else { else {
print "Analysis: <span class='data_highlight'>".$an->name; print "<a href=".$GLOBALS['base_url'].'/jbrowse/'.">".$an->name."</a>".$an->name;
} }
?></span> ?>
</div> </div>
<div class="tripal-analysis-blast-teaser-text tripal-teaser-text"><?php <div class="tripal-analysis-blast-teaser-text tripal-teaser-text"><?php
print substr($an->description, 0, 650); print substr($an->description, 0, 650);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment