- {% for program in featured %}
- {{ featured_card(program.program_name, program.description, program.hero_image, program.program_code) }}
- {% endfor %}
-
-
-
-{% include "www/lms/templates/includes/highlights.html" %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-{% endblock %}
\ No newline at end of file
diff --git a/erpnext/www/lms/index.js b/erpnext/www/lms/index.js
deleted file mode 100644
index 8fcda6e1e0e..00000000000
--- a/erpnext/www/lms/index.js
+++ /dev/null
@@ -1,30 +0,0 @@
-$(function () {
- setTimeout(function () {
- $(".later").fadeIn();
- }, 1000);
-});
-
-$(document).ready(function () {
-
- var $videoSrc;
- // Gets the video src from the data-src on each button
- $('.video-btn').click(function () {
- $videoSrc = $(this).attr("data-src");
- console.log($videoSrc);
- });
- console.log($videoSrc);
-
-
- // when the modal is opened autoplay it
- $('#myModal').on('shown.bs.modal', function (e) {
-
- // set the video src to autoplay and not to show related video. Youtube related video is like a box of chocolates... you never know what you're gonna get
- $("#ytplayer").attr('src', "https://www.youtube.com/embed/" + $videoSrc + "?autoplay=0");
- })
- // stop playing the youtube video when I close the modal
- $('#myModal').on('hide.bs.modal', function (e) {
- // a poor man's stop video
- $("#ytplayer").attr('src', $videoSrc);
- })
- // document ready
-});
\ No newline at end of file
diff --git a/erpnext/www/lms/index.py b/erpnext/www/lms/index.py
deleted file mode 100644
index a586b40741a..00000000000
--- a/erpnext/www/lms/index.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from __future__ import unicode_literals
-import frappe
-import erpnext.education.utils as utils
-
-def get_context(context):
- context.featured = utils.get_featured_programs()
- context.settings = frappe.get_doc("Education Settings")
\ No newline at end of file
diff --git a/erpnext/www/lms/program.html b/erpnext/www/lms/program.html
deleted file mode 100644
index 44727df7941..00000000000
--- a/erpnext/www/lms/program.html
+++ /dev/null
@@ -1,69 +0,0 @@
-{% extends "frappe_theme/templates/base.html" %}
-{% block title %}ERPNext Academy{% endblock %}
-
-{% macro course_card(course) %}
-
-
-
-
-
{{ course.course_name }}
-
- Course Content
-
- {% for content in course.course_content %}
-
{{ content.content }}
- {% endfor %}
-
-
-
-
- {% if not check_complete(course.name) %}
- Start Course
- {% else %}
- Complete
- {% endif %}
-