blob: 4538b9f573ec5d9216c2e329ccd3f2a83db0026e [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
11{% macro video(id) %}
12<div class="embed-responsive embed-responsive-16by9">
13 <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/{{ lesson.video_url }}" allowfullscreen></iframe>
14</div>
15{% endmacro %}
16
17{% block content %}
18<section class='video-top-section video-section-bg'>
19 <div class='container'>
20 {% if lesson.video_url is defined %}
21 {{ video("lesson,video") }}
22 {% endif %}
23 <div class="mt-3 row">
24 <div class="col-md-8">
25 <h2>{{ lesson.name }}</h2>
26 <span class="text-muted">
27 <i class="octicon octicon-clock" title="Duration"></i> 49 Mins
28 &mdash; Published on 28th October 2018.
29 </span>
30 </div>
31 <div class="col-md-4 text-right">
32 <a class='btn btn-outline-secondary' href="/classrooms/module">Previous</a>
33 <a class='btn btn-primary' href="/learn?module={{ module }}&lesson={{ next_lesson }}">Next</a>
34 </div>
35 </div>
36 <hr>
37 </div>
38</section>
39{% for lesson in lesson_list %}
40 {{ lesson }}
41{% endfor %}
42<section class="video-description-section">
43 <div class='container'>
44 <div class="content">
45 {{ lesson.content }}
46 </div>
47 <div class="text-right hidden">
48 <a class='btn btn-outline-secondary' href="/classrooms/module">Previous</a>
49 <a class='btn btn-primary' href="/classrooms/module">Next</a>
50 </div>
51 <div class="mt-3 text-right">
52 <a class="text-muted" href="/report"><i class="octicon octicon-issue-opened" title="Report"></i> Report a Mistake</a>
53 </div>
54 </div>
55
56</section>
57<style>
58 .footer-message {
59 display: none;
60 }
61</style>
62
63{% endblock %}