39 lines
924 B
HTML
39 lines
924 B
HTML
<!DOCTYPE html >
|
|
<html lang="en">
|
|
<head>
|
|
<title><%cat_full_name%>: <%forum_name%><%if this_page > 1%>: Page <%this_page%><%endif%></title>
|
|
<%include include_common_head.html%>
|
|
</head>
|
|
|
|
<body id="<%page_id%>">
|
|
<div class="container">
|
|
<%include include_header.html%>
|
|
|
|
<div class="main">
|
|
<div class="contentwrapper clearfix">
|
|
<%~set content_header_title = "An error occurred!"%>
|
|
|
|
<%include include_breadcrumb.html%>
|
|
|
|
<div class="content"><%-- start content--%>
|
|
<ul class="error">
|
|
<%~if error starts '<li>'%>
|
|
<%error%>
|
|
<%~elsif error%>
|
|
<li><%error%></li>
|
|
<%~endif%>
|
|
<%~loop error_loop%>
|
|
<li><%loop_value%></li>
|
|
<%~endloop%>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%include include_footer.html%>
|
|
</div>
|
|
|
|
</body>
|
|
<%~include include_global_js.html%>
|
|
</html>
|