Skip to content

Commit

Permalink
Added Uppsala Swedac logo + config.swedac_location
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Mar 5, 2019
1 parent 13daca0 commit c7dc239
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 17 additions & 2 deletions multiqc_ngi/templates/ngi/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,34 @@

#}

{% if config.swedac_accredited and config.swedac_location == 'stockholm' %}
<a href="http://search.swedac.se/en/accreditations/1850" target="_blank" class="pull-right">
<img src="data:image/png;base64,{{ include_file('assets/img/Swedac-logo.png', b64=True) }}">
<img src="data:image/png;base64,{{ include_file('assets/img/Swedac-logo-stockholm.png', b64=True) }}">
</a>
{% endif %}
{% if config.swedac_accredited and config.swedac_location == 'uppsala' %}
<a href="http://search.swedac.se/en/accreditations/1239" target="_blank" class="pull-right">
<img src="data:image/png;base64,{{ include_file('assets/img/Swedac-logo-uppsala.png', b64=True) }}">
</a>
{% endif %}

<div style="margin-right: 120px;">
{% if config.swedac_accredited %}
{% if config.swedac_accredited and config.swedac_location == 'stockholm' %}
<div class="well text-muted">
The National Genomics Infrastructure is accredited by
<a href="http://search.swedac.se/en/accreditations/1850" target="_blank" style="color:#777;">Swedac</a>.
This means that our services are subject to highly stringent quality control procedures, so that you can be
sure that your data is of excellent quality.
</div>
{% endif %}
{% if config.swedac_accredited and config.swedac_location == 'uppsala' %}
<div class="well text-muted">
The National Genomics Infrastructure is accredited by
<a href="http://search.swedac.se/en/accreditations/1239" target="_blank" style="color:#777;">Swedac</a>.
This means that our services are subject to highly stringent quality control procedures, so that you can be
sure that your data is of excellent quality.
</div>
{% endif %}
<p>
<a href="http://www.scilifelab.se/" target="_blank" class="pull-right">
<img src="data:image/png;base64,{{ include_file('assets/img/SciLifeLab.png', b64=True) }}" style="height:41px;">
Expand Down

0 comments on commit c7dc239

Please sign in to comment.