2018-11-27 17:52:02 -06:00
|
|
|
## -*- coding: utf-8; -*-
|
|
|
|
|
2019-02-02 20:30:14 -06:00
|
|
|
<%def name="app_title()">${request.rattail_config.node_title(default="Rattail")}</%def>
|
2018-11-27 17:52:02 -06:00
|
|
|
|
|
|
|
<%def name="global_title()">${"[STAGE] " if not request.rattail_config.production() else ''}${self.app_title()}</%def>
|
|
|
|
|
2024-05-29 15:47:04 -05:00
|
|
|
<%def name="extra_styles()"></%def>
|
|
|
|
|
2018-11-27 17:52:02 -06:00
|
|
|
<%def name="favicon()">
|
2021-06-15 15:51:11 -05:00
|
|
|
<link rel="icon" type="image/x-icon" href="${request.rattail_config.get('tailbone', 'favicon_url', default=request.static_url('tailbone:static/img/rattail.ico'))}" />
|
2018-11-27 17:52:02 -06:00
|
|
|
</%def>
|
|
|
|
|
2021-06-15 15:51:11 -05:00
|
|
|
<%def name="header_logo()">
|
|
|
|
${h.image(request.rattail_config.get('tailbone', 'header_image_url', default=request.static_url('tailbone:static/img/rattail.ico')), "Header Logo", style="height: 49px;")}
|
|
|
|
</%def>
|
2018-11-27 17:52:02 -06:00
|
|
|
|
|
|
|
<%def name="footer()">
|
2018-11-28 22:09:35 -06:00
|
|
|
<p class="has-text-centered">
|
|
|
|
powered by ${h.link_to("Rattail", url('about'))}
|
|
|
|
</p>
|
2018-11-27 17:52:02 -06:00
|
|
|
</%def>
|