Modularize into template files, add root gen

Removes most of the inline HTML to their own files
Uses the most basic setup to create links for all the existing index
files created with GenTemplate
This commit is contained in:
David Todd
2019-04-10 00:00:33 -05:00
parent a9023f9380
commit 8e77c43d32
7 changed files with 307 additions and 153 deletions

8
templates/card.html Normal file
View File

@@ -0,0 +1,8 @@
<div class="col-md-3">
<a href="{{FULLLINK}}" target="{{FULLLINK}}">
<div class="card mb-3 bg-dark text-white">
<div class="card-header">{{TITLE}}</div>
<img class="card-img" width="250" src="{{THUMBNAIL}}" />
</div>
</a>
</div>