14 lines
357 B
HTML
14 lines
357 B
HTML
![]() |
---
|
||
|
layout: default
|
||
|
---
|
||
|
<h1>TODO list</h1>
|
||
|
|
||
|
{% 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 %}
|