mirror of
https://github.com/inventree/inventree-website.git
synced 2025-04-27 21:16:45 +00:00
18 lines
465 B
HTML
18 lines
465 B
HTML
{% capture link %}
|
|
{% if include.internal %}
|
|
{% link include.internal %}
|
|
{% endif %}
|
|
{% if include.item.site %}
|
|
{{ site[include.item.site] }}
|
|
{% elsif include.item.internal %}
|
|
{% link {{ include.item.internal }} %}
|
|
{% elsif include.item.link %}
|
|
{{ include.item.link | include fnc/link.html }}
|
|
{% elsif include.item.home %}
|
|
{{ '/' | relative_url }}
|
|
{% elsif include.item %}
|
|
{{ include.item }}
|
|
{% endif %}
|
|
{% endcapture %}
|
|
|
|
{{ link | strip }} |