mirror of
https://github.com/imfing/hextra.git
synced 2025-08-24 14:16:36 -04:00
17 lines
448 B
HTML
17 lines
448 B
HTML
{{- /*
|
|
A file in a file tree.
|
|
|
|
@param {string} name The name of the file.
|
|
|
|
@example {{< filetree/file name="_index.md" >}}
|
|
*/ -}}
|
|
|
|
{{- $name := .Get "name" -}}
|
|
|
|
<li class="hx:flex hx:list-none">
|
|
<span class="hx:inline-flex hx:cursor-default hx:items-center hx:py-1">
|
|
{{- partial "utils/icon" (dict "name" "document-text" "attributes" "width=1em") -}}
|
|
<span class="hx:ltr:ml-1 hx:rtl:mr-1">{{ $name | markdownify }}</span>
|
|
</span>
|
|
</li>
|