comparison get_data/cfg/templates/base.html @ 0:89592faa2875 draft

Uploaded
author chrisb
date Wed, 23 Mar 2016 14:35:56 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:89592faa2875
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 </head>
6 <body>
7
8 <h1>{{title}}</h1>
9 <h2> Species : {{species}} </h2>
10 <h2> PI: {{investigator}} </h2>
11 <h2> Glycan type : {{glycan}} </h2>
12 <h2> Cell type : {{cell}}</h2>
13
14 * Galaxy note - each msa file is exposed as a new dataset in your history, thus links in this html file do not work in Galaxy. You may need to refresh your history to see all datasets.
15 <ul>
16 {% for item in items %}
17 <li><a href="{{ item.href }}">{{ item.caption }}</a></li>
18 {% endfor %}
19 </ul>
20
21
22 </body>
23 </html>