* removing visual-based heading styles from 'sr-only' DOM elements * revising default certificate view h1/heading copy * revising DOM elements to use main/aside semantics * revised edX/platform logo link alt text * removed extra share/take home header text * synced up add to LinkedIn profile copy
16 lines
570 B
HTML
16 lines
570 B
HTML
<%inherit file="accomplishment-base.html" />
|
|
<%! from django.utils.translation import ugettext as _ %>
|
|
|
|
% if user.is_authenticated() and user.id == int(accomplishment_user_id):
|
|
<%include file="_accomplishment-banner.html" />
|
|
% endif
|
|
<%include file="_accomplishment-introduction.html" />
|
|
|
|
<%include file="_accomplishment-rendering.html" />
|
|
<div class="wrapper-about">
|
|
<aside role="complementary" class="about" aria-label="About edX Certificates">
|
|
<%include file="_about-edx.html" />
|
|
<%include file="_about-accomplishments.html" />
|
|
</aside>
|
|
</div>
|