21 lines
818 B
Mako
21 lines
818 B
Mako
## -*- coding: utf-8; mode: html; -*-
|
|
<%inherit file="tailbone:templates/base_meta.mako" />
|
|
|
|
## default behavior is to read app_title from settings
|
|
## <%def name="app_title()">Rattail Tutorial</%def>
|
|
|
|
<%def name="favicon()">
|
|
## <link rel="icon" type="image/x-icon" href="${request.static_url('rattail_tutorial.web:static/favicon.ico')}" />
|
|
<link rel="icon" type="image/x-icon" href="${request.static_url('tailbone:static/img/rattail.ico')}" />
|
|
</%def>
|
|
|
|
<%def name="header_logo()">
|
|
${h.image(request.static_url('tailbone:static/img/rattail.ico'), "Header Logo", style="height: 49px;")}
|
|
</%def>
|
|
|
|
<%def name="footer()">
|
|
<p class="has-text-centered">
|
|
${h.link_to("Rattail Tutorial {}{}".format(rattail_tutorial.__version__, '' if request.rattail_config.production() else '+dev'), url('about'))}
|
|
</p>
|
|
</%def>
|
|
|