elixir/templates/source.html
Franciszek Stachura 1762568c85 web: Meta descriptions improvements
* Make source tree descriptions shorter
* Make default title more descriptive
* Add a short summary of results to ident search description
2024-11-05 12:20:02 +01:00

22 lines
559 B
HTML

{% extends "layout.html" %}
{% block title %}
{{ title_path }} {{ current_project|capitalize }} source code {{ current_tag }} - Bootlin Elixir Cross Referencer
{% endblock %}
{% block description -%}
Elixir Cross Referencer - source code of {{ current_project|capitalize }} {{ current_tag -}} {{- '' if path|length <= 1 else ': ' + path[1:] }}
{%- endblock %}
{% block main %}
<div class="lxrcode">
{{ code }}
</div>
{% endblock %}
{% block footer %}
<span id="file-download-link">
<a href="?raw">Download file</a>
</span>
{% endblock %}