17 lines
No EOL
1.2 KiB
HTML
17 lines
No EOL
1.2 KiB
HTML
{{ if or .Params.source_code_url .Params.documentation_url}}
|
|
<div class="mb-2">
|
|
<span class="ms-1 border-primary-400 px-1 py-[1px] text-xs font-normal dark:border-primary-600">
|
|
<em>Links:</em>
|
|
</span>
|
|
{{ with .Params.source_code_url }}
|
|
<span class="ms-1 rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
|
<a class="inline-flex items-center gap-1" style="text-decoration: none; cursor:pointer;" target="_blank" href="{{ . }}" title="Source code"><span style="position: relative; bottom: 1px;">{{ partial "icon.html" "mdi-code-not-equal-variant" }}</span> Source</a>
|
|
</span>
|
|
{{ end }}
|
|
{{ with .Params.documentation_url }}
|
|
<span class="ms-1 rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
|
<a style="text-decoration: none; cursor:pointer;" target="_blank" href="{{ . }}" title="Documentation"><span style="position: relative; bottom: 1px;">{{ partial "icon.html" "mdi-file-document" }}</span> Documentation</a>
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }} |