aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/templates/footer.html
blob: a1dd4fd083f52f4b50cb3d5b69cfc0805f9fd3f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<br>
<section class="footer">
  <div class="about">
    <div>
      <h1>ABOUT</h1>
      {% include 'blurb.html' %}
      <p>
        The repository will be maintained and expanded for the
        duration of the pandemic (and beyond). To contribute data
        simply upload it!  To contribute code and/or workflows see
        the <a href="https://github.com/arvados/bh20-seq-resource">project
        repository</a>. For more information see
        the <a href="/about">FAQ</a> and
        the <a href="https://github.com/arvados/bh20-seq-resource/blob/master/paper/paper.md">paper</a>
      </p>

    </div>
    <div class="sponsors">
      <div class="sponsorimg">
        <a href="https://github.com/virtual-biohackathons/covid-19-bh20">
          <img src="static/image/covid19biohackathon.png"></a>
      </div>
      <div class="sponsorimg">
        <a href="https://www.commonwl.org/"><img src="static/image/CWL-Logo-Header.png"></a>
      </div>
      <div class="sponsorimg">
        <a href="https://arvados.org/"><img src="static/image/arvados-logo.png"></a>
      </div>
      <div class="sponsorimg">
        <a href="https://uthsc.edu/"><img src="static/image/UTHSC-primary-stacked-logo-4c.png"></a>
      </div>
    </div>
  </div>
  <div class="footer">
    <!-- Sponsors -->

    <center>
      <small><a href="https://github.com/arvados/bh20-seq-resource">Source code</a> &middot; Powered by <a href="https://www.commonwl.org/">Common Workflow Language</a> &amp; <a href="https://arvados.org/">Arvados</a>; Made for <a href="https://github.com/virtual-biohackathons/covid-19-bh20">COVID-19-BH20</a>
      </small>
    </center>
  </div>
</section>
<script type="text/javascript" src="/static/main.js"></script>

<script type="text/javascript">
  document.addEventListener("DOMContentLoaded", function(){
      var count = fetch("/api/getCount")
          .then((resp) => resp.json())
          .then(function (data) {
              count = data["sequences"];
              console.log(count);
              span = document.getElementById("Counter");
              txt = document.createTextNode(count);
              span.appendChild(txt);
      });
  });
</script>