Skip to content
Snippets Groups Projects
base.html.jinja 3.49 KiB
<!DOCTYPE html>
<html lang="en">
<head>
  <title>eFlows4HPC Data Catalog - {% block title %}{% endblock %}</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
  <style>
  .fakeimg {
    height: 200px;
    background: #aaa;
  }
  </style>
  {% block extraheader %}{% endblock %}
</head>
<body>
    <!--BIG TITLE WITH LOGO-->
    <div class="jumbotron text-center" style="margin-bottom:0">
      <h1>eFlows4HPC Data Catalog</h1>
    </div>
      
    <!--NAVBAR-->
   <nav class="navbar navbar-expand-lg navbar-dark bg-primary">
  <a class="navbar-brand" href="#"></a>
  <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
    <span class="navbar-toggler-icon"></span>
  </button>

  <div class="collapse navbar-collapse" id="navbarSupportedContent">
    <ul class="navbar-nav mr-auto">
      <li class="nav-item {% if home is true %}active{% endif %}"><a class="nav-link" href="./index.html">Home</a></li>
      <li class="nav-item {% if storage is true %}active{% endif %}"><a class="nav-link" href="./storage.html?type=dataset">Storage</a></li>
      <li class="nav-item {% if impressum is true %}active{% endif %}"><a class="nav-link" href="./impressum.html">Impressum</a></li>
      <li class="nav-item {% if login is true %}active{% endif %}"><a class="nav-link" href="./login.html" id="loginOutText">Log In</a></li> <!--If token is found in local storage, replace with logged in username and log-out option (i.e. delete local token)-->
    </ul>
  </div>
</nav>

    
          <ul class="nav navbar-nav">
          </ul>

    <!--SPECIFIC PAGE CONTENT-->
    {% block content%} 
    {% endblock %}

    <!--FOOTER-->
    <div class="jumbotron text-center" style="margin-bottom:0">
        <p>This is the Data Catalog for the <a href="https://www.eFlows4HPC.eu">eFlows4HPC</a> project</p>
        <p>This work has been supported by the eFlows4HPC project, contract #955558. This project has received funding from the European High-Performance Computing Joint Undertaking (JU) under grant agreement No 955558.<br>The JU receives support from the European Union’s Horizon 2020 research and innovation programme and Spain, Germany, France, Italy, Poland, Switzerland, Norway.</p>
        <hr>
        <p>The source code for the Data Catalog is available on <a href="https://github.com/eflows4hpc/datacatalog">github</a>.</p>
        <p>If there are any technical problems with this site, please create an issue on <a href="https://github.com/eflows4hpc/datacatalog/issues">github</a>.</p>
        <hr>
        <p><a href="./impressum.html">Impressum</a></p>
    </div>

    <!--SHARED JAVASCRIPT--> 
    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>

    <script src="js/auth.js"></script>
    <script src="js/apicalls.js"></script>

    <!--EXTRA JAVASCRIPT-->
    {% block scripts %}
    {% endblock %}
</body>