wet-boew / wet-boew-styleguide

A style guide for the Web Experience Toolkit.
http://wet-boew.github.io/wet-boew-styleguide/index-en.html
36 stars 32 forks source link

example error for panels #231

Closed Bgolden67 closed 9 years ago

Bgolden67 commented 9 years ago

incase this hasn't been caught, on the example for Panels with a footer, there is a misplaced </div>

<div class="panel panel-default">
    <div class="panel-body">
        <p>Panel content</p>
    </div>
    <footer class="panel-footer">Panel footer</div>
</footer>

should be

<div class="panel panel-default">
    <div class="panel-body">
        <p>Panel content</p>
    </div>
    <footer class="panel-footer">Panel footer</footer>
</div>
thomasgohard commented 9 years ago

@Bgolden67 thanks for reporting this issue.