Shivam Mishra | 823c795 | 2019-05-19 16:01:45 +0530 | [diff] [blame] | 1 | {% extends "templates/base.html" %} |
| 2 | {% block title %}{{ education_settings.portal_title }}{% endblock %} |
Shivam Mishra | f22793f | 2019-05-30 16:34:53 +0530 | [diff] [blame] | 3 | {% from "www/lms/macros/card.html" import program_card %} |
Shivam Mishra | 823c795 | 2019-05-19 16:01:45 +0530 | [diff] [blame] | 4 | |
| 5 | {% block head_include %} |
| 6 | <meta name="description" content="{{ education_settings.description }}" /> |
| 7 | <meta name="keywords" content="ERP Software, Cloud ERP, Open Source ERP, Accounting Software, Online ERP, Online Accounting, ERP for small business" /> |
| 8 | <style> |
| 9 | div.card-hero-img { |
| 10 | height: 220px; |
| 11 | background-size: cover; |
| 12 | background-repeat: no-repeat; |
| 13 | background-position: center; |
| 14 | background-color: rgb(250, 251, 252); |
| 15 | } |
| 16 | |
| 17 | .card-image-wrapper { |
| 18 | display: flex; |
| 19 | overflow: hidden; |
| 20 | height: 220px; |
| 21 | background-color: rgb(250, 251, 252); |
| 22 | justify-content: center; |
| 23 | } |
| 24 | |
| 25 | .image-body { |
| 26 | align-self: center; |
| 27 | color: #d1d8dd; |
| 28 | font-size: 24px; |
| 29 | font-weight: 600; |
| 30 | line-height: 1; |
| 31 | padding: 20px; |
| 32 | } |
| 33 | </style> |
| 34 | {% endblock %} |
| 35 | |
Shivam Mishra | 823c795 | 2019-05-19 16:01:45 +0530 | [diff] [blame] | 36 | {% block content %} |
| 37 | <section class="top-section "> |
| 38 | <div class='container pb-5'> |
| 39 | <h1>{{ education_settings.portal_title }}</h1> |
| 40 | <p class='lead'>{{ education_settings.description }}</p> |
| 41 | <p class="mt-4"> |
Shivam Mishra | f22793f | 2019-05-30 16:34:53 +0530 | [diff] [blame] | 42 | <a class="btn btn-primary btn-lg" href="{{ '/login#signup' if frappe.session.user == 'Guest' else '/lms/all-programs' }}">{{ 'Start Learning' if frappe.session.user == 'Guest' else 'Explore Programs'}}</a> |
Shivam Mishra | 823c795 | 2019-05-19 16:01:45 +0530 | [diff] [blame] | 43 | </p> |
| 44 | <a href="https://erpnext.com" target="blank" class="mt-0 small text-muted">Go to erpnext.com</a> |
| 45 | </div> |
| 46 | <div class='container'> |
| 47 | <div class="row mt-5"> |
| 48 | {% for program in featured_programs %} |
Shivam Mishra | f22793f | 2019-05-30 16:34:53 +0530 | [diff] [blame] | 49 | {{ program_card(program) }} |
Shivam Mishra | 823c795 | 2019-05-19 16:01:45 +0530 | [diff] [blame] | 50 | {% endfor %} |
| 51 | </div> |
| 52 | <p class='mt-4'> |
| 53 | <a href='/lms/all-programs' class='text-muted'>View All Programs</a> |
| 54 | </p> |
| 55 | </div> |
| 56 | </section> |
| 57 | <section class="section-padding section-bg"> |
| 58 | <div class='container'> |
| 59 | <div class='card-deck'> |
| 60 | <div class="card"> |
| 61 | <!-- <img class='mt-3' src="/assets/erpnext_com/img/balloon.svg" style='height: 150px'> --> |
| 62 | <div class='card-body'> |
| 63 | <h5 class='card-title'>Curated Courses</h5> |
| 64 | <div>Start with a 14 day trial to get instant access to your own ERPNext Instance. Get expert support and world class hosting too.</div> |
| 65 | </div> |
| 66 | </div> |
| 67 | |
| 68 | <div class="card"> |
| 69 | <!-- <img class='mt-3' src="/assets/erpnext_com/img/umbrella.svg" style='height: 150px'> --> |
| 70 | <div class='card-body'> |
| 71 | <h5 class='card-title'>Built by Experts</h5> |
| 72 | <div>For self hosted users, ERPNext Support provides you the priority support and bug fix guarantee, so you can stop worrying.</div> |
| 73 | </div> |
| 74 | </div> |
| 75 | |
| 76 | <div class="card"> |
| 77 | <!-- <img class='mt-3' src="/assets/erpnext_com/img/sun.svg" style='height: 150px'> --> |
| 78 | <div class='card-body'> |
| 79 | <h5 class='card-title'>Learn from the OEMs</h5> |
| 80 | <div>ERPNext is open source and infinitely extensible. Customize it, build upon it, add your own apps built with <a href="https://frappe.io/frappe" class="underline">Frappe Framework</a>.</div> |
| 81 | </div> |
| 82 | </div> |
| 83 | </div> |
| 84 | </div> |
| 85 | </section> |
| 86 | <section class='section-padding'> |
| 87 | <div class='container text-center'> |
| 88 | <h3 class='text-center'>About ERPNext</h3> |
| 89 | <p class='lead'>ERPNext is the world's best 100% open source ERP used by over 5000 companies worldwide.</p> |
| 90 | <div class='mt-4 '> |
| 91 | <a class="btn btn-primary btn-lg" href="/pricing">Start Learning</a> |
| 92 | </div> |
| 93 | </div> |
| 94 | </section> |
| 95 | {% endblock %} |