* Make source tree descriptions shorter * Make default title more descriptive * Add a short summary of results to ident search description
22 lines
559 B
HTML
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 %}
|
|
|