mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
synced 2026-04-17 22:24:18 -04:00
Use Jinja2 comments instead of HTML comments for the SPDX and copyright lines. This prevents them from appearing in the HTML output, which was never the intention; the HTML output has its own copyright line at the bottom of the document. Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/20250830170808.3911151-1-vegard.nossum@oracle.com
16 lines
359 B
HTML
16 lines
359 B
HTML
{# SPDX-License-Identifier: GPL-2.0 #}
|
|
{# Copyright © 2023, Oracle and/or its affiliates. #}
|
|
|
|
{# Create a language menu for translations #}
|
|
{% if languages|length > 0: %}
|
|
<div class="language-selection">
|
|
{{ current_language }}
|
|
|
|
<ul>
|
|
{% for ref in languages: %}
|
|
<li><a href="{{ ref.refuri }}">{{ ref.astext() }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|