This repository has been archived on 2019-10-12. You can view files and clone it, but cannot push or open issues or pull requests.

40 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CodiMD Notes</title>
<link rel="stylesheet" href="{{ url_for('static', filename='libs/bootstrap.min.css') }}">
<script src="{{ url_for('static', filename='js/file_reader.js') }}"></script>
</head>
<body class="bg-light">
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#">
CodiMD Notes
</a>
</nav>
<div class="container-fluid">
<div class="row">
{% for note in notes %}
{% if note[1] and note[2] %}
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 mb-2">
<a href="https://hackmd.wiai.de/{{note[2]}}">
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">{{note[1]}}</h5>
<h6 class="card-subtitle mb-2 text-muted">LastChanged: {{note[5]}}</h6>
<p class="card-text">ViewCount: {{note[4]}}</p>
</div>
</div>
<!--<h3>{{note[1]}}</h3></a>-->
<!--<p>Alias: {{note[2]}}</p>-->
<!--<p>ShortID: {{note[3]}}</p>-->
<!--<p>ViewCount: {{note[4]}}</p>-->
<!--<p>LastChanged: {{note[5]}}</p>-->
</div>
{% endif %}
{% endfor %}
</div>
</div>
</body>
</html>