dpaquette / TagHelperSamples

A set of sample tag helpers for ASP.NET Core MVC
http://taghelpersamples.azurewebsites.net/
Other
376 stars 97 forks source link

Tag Helper for Bootstrap Panel #45

Closed manojkulkarni30 closed 7 years ago

manojkulkarni30 commented 7 years ago

@dpaquette I would like contribute tag helper for bootstrap panel. Can i submit a pull request for it ?

Structure:

<panel type="info">
    <panel-title>Info Panel</panel-title>
    <panel-body>
        <p>
            Learn how to build ASP.NET Core apps that can run anywhere.
        </p>
    </panel-body>
</panel>

End Result:

<div class="panel panel-info">
    <div class="panel-heading">
        <h3 class="panel-title">Info Panel</h3>
       </div>
    <div class="panel-body">
        <p>
            Learn how to build ASP.NET Core apps that can run anywhere.
        </p>
    </div>
</div>
dpaquette commented 7 years ago

Yes, please do submit a pull request!

dpaquette commented 7 years ago

Closed as part of PR #46