2018-02-01 18:53:44 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2018-06-15 02:11:26 +02:00
|
|
|
<meta name="description" content="Felix Martin's Homepage">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="https://www.felixm.de/static/mannaz.png"/>
|
|
|
|
<title>Euler - Felix Martin</title>
|
|
|
|
<meta name="author" content="Felix Martin">
|
|
|
|
<link href="https://www.felixm.de/static/template.css" rel="stylesheet">
|
2018-02-01 18:53:44 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2018-06-15 02:11:26 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h1><a href="https://www.felixm.de">Felix Martin</a></h1>
|
2018-02-01 18:53:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main role="main">
|
|
|
|
<div class="container">
|
2018-06-15 02:11:26 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h2>Project Euler</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2018-02-01 18:53:44 +01:00
|
|
|
<div class="col">
|
2018-06-15 02:11:26 +02:00
|
|
|
<table class="table table-hover table-striped">
|
2018-02-04 16:54:28 +01:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-06-15 02:11:26 +02:00
|
|
|
<th style="width: 20%" scope="col">Link</th>
|
|
|
|
<th style="width: 30%" scope="col">Completion date</th>
|
|
|
|
<th style="width: 50%" scope="col">Tags</th>
|
2018-02-04 16:54:28 +01:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for s in solutions %}
|
2018-06-15 02:11:26 +02:00
|
|
|
{% if not s.metadata.completion_date %}
|
|
|
|
<tr class="table-warning">
|
|
|
|
{% else %}
|
2018-02-04 16:54:28 +01:00
|
|
|
<tr>
|
2018-06-15 02:11:26 +02:00
|
|
|
{% endif %}
|
2018-02-04 16:54:28 +01:00
|
|
|
<td><a href="{{s.html}}">{{s.name}}</a></td>
|
2018-06-15 02:11:26 +02:00
|
|
|
<td>{{s.metadata.completion_date}}</td>
|
2018-02-04 16:54:28 +01:00
|
|
|
<td>
|
|
|
|
{% for t in s.metadata.tags %}
|
|
|
|
<kbd>{{t}}</kbd>
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-02-01 18:53:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-15 02:11:26 +02:00
|
|
|
</div><!-- /.container -->
|
2018-02-01 18:53:44 +01:00
|
|
|
|
2018-06-15 02:11:26 +02:00
|
|
|
<!-- FOOTER -->
|
|
|
|
<footer class="container">
|
|
|
|
<p class="float-right"><a href="#">Back to top</a></p>
|
|
|
|
<p>© 2017-2018 Felix Martin ·
|
|
|
|
<a href="#">Impressum</a> ·
|
|
|
|
<a href="https://code.felixm.de">Code</a>
|
|
|
|
</p>
|
|
|
|
</footer>
|
2018-02-01 18:53:44 +01:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|