Added all the things.

This commit is contained in:
2020-04-10 16:14:44 -04:00
parent e9102cb58d
commit cd6862c836
47 changed files with 1139 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<div class="card flex-column">
<div class="card-title align-center">
<img src="{{ .img }}" width="48" height="48" class="mr-4">
{{ .title }}
</div>
<hr>
<div class="card-text" style="flex: 1 0 auto;">
{{ range .desc }}
<p> {{ . }}</p>
{{ end }}
</div>
<div class="text-right">
{{ range .links }}
<div class="pb-4 pr-4">
<a href="{{ .href }}">{{ .text }}</a>
</div>
{{ end }}
</div>
</div>