FEDX-93
These are developer only pages, so can not be seen in production
environment. On devstack, you can access these pages in LMS and
Studio at:
/template/ux/reference/pattern-library-test.html
This is the second attempt to enable the Pattern Library. The
first attempt broke Django Templates and didn't work correctly
with right-to-left styling.
28 lines
850 B
HTML
28 lines
850 B
HTML
<%page expression_filter="h"/>
|
|
<%inherit file="/main.html" />
|
|
<%namespace name='static' file='/static_content.html'/>
|
|
|
|
<%block name="pagetitle">UX Reference</%block>
|
|
<%block name="nav_skip">#content</%block>
|
|
|
|
<%block name="bodyclass">view-ux-reference</%block>
|
|
|
|
<%block name="content">
|
|
<div class="main-wrapper">
|
|
<div class="inner-wrapper">
|
|
<div class="main-column">
|
|
<article class="window unit-body">
|
|
<h1>UX Style Reference</h1>
|
|
|
|
<section class="xblock xblock-student_view xmodule_display xmodule_HtmlModule">
|
|
<h2>Page Types</h2>
|
|
<ul>
|
|
<li><a href="pattern-library-test.html">Pattern Library test page</a></li>
|
|
</ul>
|
|
</section>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</%block>
|