blob: b99dfae17bef84d1a37368b7df0396d51cb221b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## -*- coding: utf-8 -*-
<%block name="static_footer">
% if global_data.get('footer'):
<footer id="footer" class="container-fluid text-muted bg-light shadow-sm mt-3 py-2">
<div class="row justify-content-center text-center">
% for item in global_data['footer']:
<div class="col">
<a href="${item.get('url','#')}">${item.get('title',u'error')}</a>
</div>
% endfor
</div>
${template_hooks['page_footer']()}
</footer>
% endif
</%block>
|