## This file is subject to the terms and conditions defined in
## file 'LICENSE', which is part of this source code package.
## Copyright (c) 2009 SKR Farms (P) LTD.
## -*- coding: utf-8 -*-
<%namespace name="elements" file="/component/elements.html"/>
<%namespace name="forms" file="/component/forms.html"/>
% endif
${self.bd_metanav()}
${self.bd_header()}
${self.bd_breadcrumbs()}
${self.bd_body()}
${self.bd_footer()}
${self.bd_script()}
## Title
<%def name="hd_title()" >
${c.title}
%def>
## Meta Tags and Attibutes
<%def name="hd_meta()">
## Fill up this function with meta tags and attributes.
%def>
## CSS Link
<%def name="hd_links()" >
%def>
<%def name="hd_styles()">
%def>
<%def name="hd_script()">
%def>
## Meta Navigation
<%def name="bd_metanav()" >
${c.authusername} |
<% bar = ' ' %>
% for m in c.metanavs :
% if m.type == 'link' :
${bar} ${m.text}
<% bar = '|' %>
% elif m.type == 'pointer' :
${bar}
${m.text} ▼
<% bar = '|' %>
% else :
♦
<% bar = ' ' %>
% endif
% endfor
%def>
<%def name="bd_script()">
## High charts library
## Skip the google web-analytics block for signin page since Authkit
## interprets the % character for text substitution.
% if h.webanalytics and not getattr( c, 'skipga', False ) :
${h.webanalytics | n}
% endif
%def>