16 lines
478 B
HTML
16 lines
478 B
HTML
---
|
|
layout: default
|
|
---
|
|
<h1>TODO list</h1>
|
|
|
|
This file is created automatically using `TODO ...` commands within HepLean.
|
|
Feel free to tackle any of the items here.
|
|
|
|
{% for entry in site.data.TODO %}
|
|
<a href="{{ entry.githubLink }}" class="list-group-item list-group-item-action">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">In: {{ entry.file }}</h5>
|
|
</div>
|
|
<p>{{ entry.content }}</p>
|
|
</a>
|
|
{% endfor %}
|