Start with default generated template

This commit is contained in:
root
2026-01-21 22:28:11 -06:00
commit 34e2a15d24
147 changed files with 4400 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{#
/**
* @file
* Theme override of a link with separate title and URL elements.
*
* Available variables:
* - link: The link that has already been formatted by l().
* - title: (optional) A descriptive or alternate title for the link, which may
* be different than the actual link text.
*
* @see template_preprocess_link_formatter_link_separate()
*/
#}
<div class="link-item">
{%- if title -%}
<div class="link-title">{{- title -}}</div>
{%- endif -%}
<div class="link-url">{{- link -}}</div>
</div>