2018-05-12 23:50:36 +00:00
|
|
|
<div class="card">
|
|
|
|
<h4 class="card-header">{{ .title }}</h4>
|
|
|
|
<div class="card-body">
|
|
|
|
{{ if .incomplete }}
|
|
|
|
<p class="text-danger"><small>Incomplete</small></p>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if isset . "description" }}
|
|
|
|
<p>{{ .description | markdownify }}</p>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if isset . "links" }}
|
|
|
|
{{ range .links }}
|
2018-06-12 18:32:42 +00:00
|
|
|
<a class="card-link" href="{{ .URL }}"
|
|
|
|
{{ if and (isset . "external") (eq .external true) }}
|
|
|
|
target="_blank"
|
|
|
|
{{ end }}
|
|
|
|
>
|
2018-05-12 23:50:36 +00:00
|
|
|
{{ .title }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|