jbrowse-instance--public-listing.tpl.php 579 B

1234567891011121314
  1. <p>The JBrowse genome browser allows you to visually explore genomes and their associated large-scale datasets. JBrowse is a widely used application that is fast, intuitive, and compatible with most web browsers.</p>
  2. <div class="jbrowse-list">
  3. <?php foreach ($instances as $instance) { ?>
  4. <div class="jbrowse-instance">
  5. <h3><?php print l($instance->title, $instance->url); ?></h3>
  6. <p><?php print $instance->description; ?></p>
  7. <span class="jbrowse-launch-link"><?php print l('Launch JBrowse', $instance->url); ?></span>
  8. </div>
  9. <?php } ?>
  10. </div>