mirror of https://github.com/jpanther/congo.git
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<article>
|
|
<h3 class="flex items-center mt-6 text-xl font-semibold">
|
|
{{ if isset .Params "externalUrl" }}
|
|
<a
|
|
class="hover:underline hover:underline-primary-500 hover:underline-offset-small text-neutral-800 dark:text-neutral"
|
|
href="{{ .Params.externalUrl }}"
|
|
target="_blank"
|
|
rel="external"
|
|
>{{ .Title }}</a
|
|
>
|
|
<span
|
|
class="text-sm cursor-default"
|
|
style="vertical-align: super;"
|
|
title="{{ i18n "list.externalurl_title" }}"
|
|
>↗</span
|
|
>
|
|
{{ else }}
|
|
<a
|
|
class="hover:underline hover:underline-primary-500 hover:underline-offset-small text-neutral-800 dark:text-neutral"
|
|
href="{{ .Permalink }}"
|
|
>{{ .Title }}</a
|
|
>
|
|
{{ end }}
|
|
{{ if and .Draft .Site.Params.article.showDraftLabel }}
|
|
<div class="ml-2">
|
|
{{ partial "badge.html" "Draft" }}
|
|
</div>
|
|
{{ end }}
|
|
{{ if templates.Exists "partials/extend-article-link.html" }}
|
|
{{ partial "extend-article-link.html" . }}
|
|
{{ end }}
|
|
</h3>
|
|
<div class="text-sm text-neutral-400 dark:text-neutral-500">
|
|
{{ partial "article-meta.html" . }}
|
|
</div>
|
|
</article>
|