steverusso
1b2686c3eb
Added all the things. Updated gitignore and README. Removed all the things. Reviewed-by: jeff <jeff@simplesystems.tech>
23 lines
424 B
HTML
23 lines
424 B
HTML
<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>
|