| {% extends "templates/base.html" %} |
| {% block title %}{{ education_settings.portal_title }}{% endblock %} |
| {% from "www/lms/macros/card.html" import program_card %} |
| <meta name="description" content="{{ education_settings.description }}" /> |
| <meta name="keywords" content="ERP Software, Cloud ERP, Open Source ERP, Accounting Software, Online ERP, Online Accounting, ERP for small business" /> |
| background-repeat: no-repeat; |
| background-position: center; |
| background-color: rgb(250, 251, 252); |
| background-color: rgb(250, 251, 252); |
| <section class="top-section" style="padding: 6rem 0rem;"> |
| <div class='container pb-5'> |
| <h1>{{ education_settings.portal_title }}</h1> |
| <p class='lead'>{{ education_settings.description }}</p> |
| <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> |
| <a href="https://erpnext.com" target="blank" class="mt-0 small text-muted">Go to erpnext.com</a> |
| {% for program in featured_programs %} |
| {{ program_card(program.program, program.has_access) }} |
| <a href='/lms/all-programs' class='text-muted'>View All Programs</a> |