|
@@ -4,15 +4,19 @@
|
|
<div class="card-head d-flex">
|
|
<div class="card-head d-flex">
|
|
{{ if .logo }}
|
|
{{ if .logo }}
|
|
{{ $logoImage := resources.Get .logo }}
|
|
{{ $logoImage := resources.Get .logo }}
|
|
-
|
|
|
|
{{/* svg don't support "Fit" operation */}}
|
|
{{/* svg don't support "Fit" operation */}}
|
|
{{ if ne $logoImage.MediaType.SubType "svg" }}
|
|
{{ if ne $logoImage.MediaType.SubType "svg" }}
|
|
{{ $logoImage = $logoImage.Fit "24x24" }}
|
|
{{ $logoImage = $logoImage.Fit "24x24" }}
|
|
{{ end }}
|
|
{{ end }}
|
|
-
|
|
|
|
|
|
+
|
|
<img class="card-img-xs" src="{{ $logoImage.RelPermalink }}" alt="{{ .name }}" />
|
|
<img class="card-img-xs" src="{{ $logoImage.RelPermalink }}" alt="{{ .name }}" />
|
|
|
|
+ <h5 class="card-title">{{ .name }}</h5>
|
|
|
|
+ {{ else if .icon }}
|
|
|
|
+ {{ $iconName := .icon }}
|
|
|
|
+ <h5 class="card-title"><span class="{{ $iconName }}"> {{ .name }}</span></h5>
|
|
|
|
+ {{ else }}
|
|
|
|
+ <h5 class="card-title">{{ .name }}</h5>
|
|
{{ end }}
|
|
{{ end }}
|
|
- <h5 class="card-title">{{ .name }}</h5>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="card-body">
|
|
<p class="card-text">{{ .summary | markdownify }}</p>
|
|
<p class="card-text">{{ .summary | markdownify }}</p>
|