Browse Source

Merge pull request #16479 from pateljannat/section-with-features

version-14
Suraj Shetty 3 years ago
committed by GitHub
parent
commit
487a877593
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      frappe/website/web_template/section_with_features/section_with_features.html

+ 2
- 2
frappe/website/web_template/section_with_features/section_with_features.html View File

@@ -17,12 +17,12 @@
<h3 class="feature-title">{{ feature.title }}</h3>
{%- endif -%}
{%- if feature.content -%}
<p class="feature-content">{{ feature.content }}</p>
<p class="feature-content">{{ frappe.utils.md_to_html(feature.content) }}</p>
{%- endif -%}
</div>
<div>
{%- if feature.url -%}
<a href="{{ feature.url }}" class="feature-url stretched-link">Learn more →</a>
<a href="{{ feature.url }}" class="feature-url stretched-link"> {{ _("Learn more") }} →</a>
{%- endif -%}
</div>
</div>


Loading…
Cancel
Save