blob: 3acc76e5d0c3ba8185dc97c0fe18b8c208b456ed [file] [log] [blame]
scmmishra836a4b52018-10-08 15:26:05 +05301{% extends "frappe_theme/templates/base.html" %}
2{% block title %}ERPNext Academy{% endblock %}
3
4{% from "templates/includes/media.html" import media %}
5
6{% block head_include %}
7<meta name="description" content="ERPNext Academy is a learnig platform to gain expertise in the world's top 100% open source ERP software." />
8<meta name="keywords" content="ERP Software, Cloud ERP, Open Source ERP, Accounting Software, Online ERP, Online Accounting, ERP for small business, Learn ERP, ERPNext Academy, Learn ERPNext, Learn Accounting" />
9{% endblock %}
10
scmmishra836a4b52018-10-08 15:26:05 +053011
12{% block content %}
scmmishra6660a672018-10-08 17:18:11 +053013{% with current_content = current_content %}
14{% include "www/lms/templates/includes/" + current_content.content_type.lower() + ".html" %}
15{% endwith %}
scmmishra836a4b52018-10-08 15:26:05 +053016<style>
17 .footer-message {
18 display: none;
19 }
scmmishra6660a672018-10-08 17:18:11 +053020
21 .video-top-section {
22 padding-top: 3rem !important;
23 padding-bottom: 1rem !important;
24 }
25
26 .video-description-section {
27 padding-top: 0em !important;
28 }
29
30 .article-top-section {
31 padding-top: 3rem !important;
32 padding-bottom: 0rem !important;
33 }
34
35 .article-content-section {
36 padding-top: 0em !important;
37 }
scmmishra836a4b52018-10-08 15:26:05 +053038</style>
39
40{% endblock %}