Files
mehl.mx/themes/hugo-sustain/layouts/partials/blog/links.html

28 lines
1.3 KiB
HTML

<div class="blog-links">
{{- with .Params.audio }}
<a class="label label-success label-lg" href="{{ . }}" target="_blank" aria-label="Audio Recording" role="button">
<i class="fas fa-microphone" aria-hidden="true"></i>&nbsp;&nbsp;Listen to Recording
</a>
{{- end }}
{{- with .Params.article }}
<a class="label label-success label-lg" href="{{ .href }}" target="_blank" aria-label="Related Article" role="button">
<i class="fas fa-newspaper" aria-hidden="true"></i>&nbsp;&nbsp;Read Article at {{ .name | markdownify }}
</a>
{{- end }}
{{- with .Params.video }}
<a class="label label-success label-lg" href="{{ . }}" target="_blank" aria-label="Video Recording" role="button">
<i class="fas fa-video" aria-hidden="true"></i>&nbsp;&nbsp;Watch Recording
</a>
{{- end }}
{{- with .Params.slides }}
<a class="label label-success label-lg" href="{{ . }}" target="_blank" aria-label="Slides" role="button">
<i class="fas fa-desktop" aria-hidden="true"></i>&nbsp;&nbsp;View Slides
</a>
{{- end }}
{{- with .Params.event }}
<a class="label label-success label-lg" href="{{ .href }}" target="_blank" aria-label="Event Page" role="button">
<i class="fa fa-map-marker" aria-hidden="true"></i>&nbsp;&nbsp;{{ .name | markdownify }}
</a>
{{- end }}
</div>