brotherton-erpnext/erpnext/www/lms_old.html

39 lines
1010 B
HTML
Raw Normal View History

2018-11-13 11:06:22 +00:00
{% extends "templates/web.html" %}
{% block title %}{{ heading or "LMS"}}{% endblock %}
2018-11-13 11:06:22 +00:00
2019-03-28 10:03:08 +00:00
{% block navbar %}{% endblock %}
{% block content %}
2019-05-14 04:52:15 +00:00
{% if lms_enabled %}
2018-11-13 11:06:22 +00:00
<div id="lms-app"></div>
<script type="text/javascript" src="/assets/js/lms.min.js"></script>
2019-05-14 04:52:15 +00:00
{% else %}
<style>
.hero-and-content {
background-color: #f5f7fa;
}
header, footer {
display: none;
}
html, body {
background-color: #f5f7fa;
}
{% include "templates/styles/card_style.css" %}
</style>
<div class='page-card'>
<div class='page-card-head'>
<span class='indicator darkgrey'>{{_("Page Missing or Moved")}}</span>
</div>
<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>
<div><a href='/' class='btn btn-primary btn-sm'>{{ _("Home") }}</a></div>
</div>
<p class='text-muted text-center small' style='margin-top: -20px;'>{{ _("Error Code: {0}").format('404') }}</p>
<style>
.hero-and-content {
background-color: #f5f7fa;
}
</style>
{% endif %}
2018-11-13 11:06:22 +00:00
{% endblock %}