Zionetrix::Git
Repositories
Help
Report an Issue
MyCoServer
Code
Commits
Branches
Tags
Search
Tree:
7004713
Branches
Tags
master
MyCoServer
mycoserver
templates
http-error.mako
Initial commit
Benjamin Renard
commited
7004713
at 2014-01-12 00:33:07
http-error.mako
Blame
History
Raw
## -*- coding: utf-8 -*- <%inherit file="/site.mako"/> <%block name="body_content"> <div class="alert alert-block alert-error"> <h4 class="alert-heading">Error « ${title} »</h4> <p>${explanation}</p> % if comment: <p>${comment}</p> % endif % if message: <p>${message}</p> % endif </div> </%block> <%block name="title_content"> ${title} - ${parent.title_content()} </%block>