blob: aa76ca06e72f88f6271a2e5472c89faa0964b1a8 [file] [log] [blame]
scmmishra35bf5612018-11-13 16:36:22 +05301{% extends "templates/web.html" %}
2
scmmishra85c2fee2018-11-14 14:23:06 +05303{% block title %}{{ heading or "LMS"}}{% endblock %}
scmmishra35bf5612018-11-13 16:36:22 +05304
scmmishracea85152019-03-28 15:33:08 +05305{% block navbar %}{% endblock %}
6
7{% block content %}
Shivam Mishra51b6fe22019-05-14 10:22:15 +05308{% if lms_enabled %}
scmmishra35bf5612018-11-13 16:36:22 +05309<div id="lms-app"></div>
scmmishra85c2fee2018-11-14 14:23:06 +053010<script type="text/javascript" src="/assets/js/lms.min.js"></script>
Shivam Mishra51b6fe22019-05-14 10:22:15 +053011{% else %}
12<style>
13.hero-and-content {
14 background-color: #f5f7fa;
15}
16header, footer {
17 display: none;
18}
19html, body {
20 background-color: #f5f7fa;
21}
22{% include "templates/styles/card_style.css" %}
23</style>
24
25<div class='page-card'>
26 <div class='page-card-head'>
27 <span class='indicator darkgrey'>{{_("Page Missing or Moved")}}</span>
28 </div>
29 <p>{{_("The page you are looking for is missing. This could be because it is moved or there is a typo in the link.")}}</p>
30 <div><a href='/' class='btn btn-primary btn-sm'>{{ _("Home") }}</a></div>
31</div>
32<p class='text-muted text-center small' style='margin-top: -20px;'>{{ _("Error Code: {0}").format('404') }}</p>
33<style>
34.hero-and-content {
35 background-color: #f5f7fa;
36}
37</style>
38{% endif %}
scmmishra35bf5612018-11-13 16:36:22 +053039{% endblock %}