Lava Example - 61 | Rock Community

Lava Example - 69


Prompt

Something is wrong with this template, but it's hard to figure out what because of how it's written.

Update the code with normal indentations and fix it!

Initial Code
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Sample Panel</h3>
</div>
<div class="panel-body">
<strong>{{ Group.Name }}</strong>
{{ Group.Description }}
</div>
<div class="panel-footer text-right">
<a class="btn btn-primary btn-xs">Join</a>
</div>
Solution Lava
<div class="panel">
    <div class="panel-heading">
        <h3 class="panel-title">Sample Panel</h3>
    </div>
    <div class="panel-body">
        <strong>{{ Group.Name }}</strong>
        {{ Group.Description }}
    </div>
    <div class="panel-footer text-right">
        <a class="btn btn-primary btn-xs">Join</a>
    </div>
</div>