Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
index.html.j2 566 B
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>LOCKSS</title>
    <style type="text/css">
      li {
        margin-bottom: 0.5rem;
      }

      a:visited {
        color: blue;
      }
    </style>
  </head>
  <body>
    <h1>LOCKSS</h1>
    <h2>Components available from this interface</h2>
    <ul class="main_nav">
{% for b in lockss_frontend_backends %}
      <li><a href="./{{ b.name }}">{{ b.memo }}</a></li>
{% endfor %}
    </ul>
  </body>
</html>