23 lines
647 B
HTML
23 lines
647 B
HTML
## Override the default styles_version to the Pattern Library version (version 2)
|
|
<%! main_css = "style-main-v2" %>
|
|
|
|
<%inherit file="../../base.html" />
|
|
|
|
<%block name="title">Pattern Library Test Page</%block>
|
|
<%block name="bodyclass">is-signedin pattern-library</%block>
|
|
|
|
<%block name="content">
|
|
<h1>Pattern Library test page</h1>
|
|
|
|
<div class="alert alert-warning" role="alert" tabindex="-1">
|
|
<span class="icon alert-icon fa fa-exclamation-triangle" aria-hidden="true"></span>
|
|
|
|
<div class="alert-message">
|
|
<p class="alert-copy">
|
|
Interesting pattern library content to come...
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
</%block>
|