mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 10:39:59 +01:00
77fbea25af
* first test * add custom URL logo * some styling * fixed typo, wrong import * Update .env.example Co-authored-by: calle <93376500+callebtc@users.noreply.github.com> Co-authored-by: calle <93376500+callebtc@users.noreply.github.com>
14 lines
620 B
HTML
14 lines
620 B
HTML
{% extends "base.html" %} {% block beta %}{% endblock %} {% block drawer_toggle
|
|
%}{% endblock %} {% block drawer %}{% endblock %} {% block toolbar_title %}
|
|
<a
|
|
href="/"
|
|
class="inherit q-btn q-btn-item non-selectable no-outline q-btn--flat q-btn--rectangle q-btn--actionable q-focusable q-hoverable q-btn--no-uppercase q-btn--wrap q-btn--dense q-btn--active"
|
|
style="font-size: 20px"
|
|
>
|
|
{% if USE_CUSTOM_LOGO %}
|
|
<img height="30px" alt="Logo" src="{{ USE_CUSTOM_LOGO }}" />
|
|
{%else%} {% if SITE_TITLE != 'LNbits' %} {{ SITE_TITLE }} {% else %}
|
|
<strong>LN</strong>bits {% endif %} {% endif %}
|
|
</a>
|
|
{% endblock %}
|