{% macro hero(title, subtitle, image, enable_free_plan) %}

{{ title }}

{{ subtitle }}

{% if enable_free_plan %}

Sign Up — Free for 1 User

See plans and pricing

{% else %}

Start a free 14-day trial

{% endif %}
{% endmacro %} {% macro feature(detail) %}

{{ detail.title }}

{{ detail.desc }}

erpnext screen

Screenshot only shows how ERPNext can be used, does not have real data

{% endmacro %} {% macro testimonial(name, description, image) %}

Trusted by users across 150+ countries

{{ description }}

{{ name }}

Read more reviews...

{% endmacro %} {% macro render_plan(plan_name, users, emails, space, price) %}

$ {{ price }}/year

{{ users }} Users

Emails: {{ emails }}

Space: {{ space }} GB

Functional Support

{% endmacro %} {% macro doc_page(title, subtitle, doc, toc_url) %} {% from "frappe_theme/templates/includes/docs.html" import cards, hero %}

{{ title }}

{{ subtitle }}

{% for section in doc %}

{{ section.title }}

{{ cards(section.links)}}

View Full Contents

{% endfor %} {% endmacro %}