Skip to content

Commit

Permalink
Review from Sas
Browse files Browse the repository at this point in the history
  • Loading branch information
hexylena committed Jun 25, 2024
1 parent b1909e2 commit c916faf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ icon-tag:
galaxy-tags: fas fa-tags
galaxy-toggle: fas fa-toggle-on
galaxy-upload: fas fa-upload
galaxy-download: fas fa-download
galaxy-wf-connection: fas fa-arrows-alt-h
galaxy-wf-edit: fa fa-edit
galaxy-wf-new: fas fa-plus
Expand Down
12 changes: 8 additions & 4 deletions _layouts/workflow.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ <h1 data-toc-skip>{{ workflow.title }}</h1>
{% icon galaxy-tags %}
<b>Tags</b>
<br/>
{{ workflow.tags | join: ", " }}

{% for tag in workflow.tags %}
<div class="label label-default tutorial_tag" style="{{ tag | colour_tag }}">{{ tag }}</div>
{% endfor %}
</br>
{% endif %}

Expand Down Expand Up @@ -125,9 +128,6 @@ <h1 data-toc-skip>{{ workflow.title }}</h1>
<a href="{% link faqs/galaxy/tutorial_mode.md %}" class="show-when-galaxy-proxy-active">{% icon question %}</a>
<br/>

<a class="btn btn-secondary" href="{{ site.url }}{{ site.baseurl }}/{{ workflow.path }}">
Download
</a>
<span class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false">
<img src="{% link assets/images/galaxylogo.png %}" style="height: 16px" alt="galaxy logo"/>
Expand All @@ -143,6 +143,10 @@ <h1 data-toc-skip>{{ workflow.title }}</h1>
</li>
</ul>
</span>
<a class="btn btn-primary" href="{{ site.url }}{{ site.baseurl }}/{{ workflow.path }}">
{% icon galaxy-download %}
Download
</a>
<pre class="mermaid">{{ workflow.mermaid }}</pre>

<p>To use these workflows in Galaxy you can either click the links to download the workflows, or you can right-click and copy the link to the workflow which can be used in the Galaxy form to import workflows.</p>
Expand Down

0 comments on commit c916faf

Please sign in to comment.