Skip to content
Snippets Groups Projects
Unverified Commit 0db4fb0f authored by Awais Jibran's avatar Awais Jibran Committed by GitHub
Browse files

Merge pull request #25858 from edx/aj/branding/serve-assets-using-static-storage

Serve assets using static storage
parents 25b007b8 6a692e2a
Branches
Tags
No related merge requests found
......@@ -17,5 +17,6 @@
</span>
{% endif %}
</div>
<img src="/static/images/edx-verified-mini-cert.png">
<img src="{% static 'images/edx-verified-mini-cert.png' %}"
alt="{% trans 'Example of a verified certificate' as tmsg %}{{ tmsg | force_escape }}">
</div>
......@@ -140,7 +140,9 @@ from openedx.features.course_experience.course_tools import HttpMethod
% if upgrade_url and upgrade_price:
<div class="section section-upgrade course-home-sidebar-upgrade ${'discount' if has_discount else 'no-discount'}">
<h3 class="hd hd-6">${_("Pursue a verified certificate")}</h3>
<img src="https://courses.edx.org/static/images/edx-verified-mini-cert.png" alt="">
<img src="${static.url('images/edx-verified-mini-cert.png')}"
alt="${_('Sample verified certificate with your name, the course title, the logo of the institution and the signatures of the instructors for this course.')}" />
<div class="upgrade-container">
<p>
<a id="green_upgrade" class="btn-brand btn-upgrade"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment