@page @model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.CardsModel @{ ViewData["Title"] = "Cards"; }

Cards

@*

# Example


        
*@

Based on Bootstrap card.

# Example

Card header Card body
<abp-card>
    <abp-card-header>Card header</abp-card-header>
    <abp-card-body>Card body</abp-card-body>
</abp-card>

# Example

Some quick example text to build on the card title and make up the bulk of the card's content. Card link Another link
<abp-card style="width: 18rem;">
    <abp-card-body title="Card title" subtitle="Card subtitle">
        <abp-card-text>Some quick example text to build on the card title and make up the bulk of the card's content.</abp-card-text>
        <a abp-card-link href="#">Card link</a>
        <a abp-card-link href="#">Another link</a>
    </abp-card-body>
</abp-card>

# Example

Card image cap Card title Some quick example text to build on the card title and make up the bulk of the card's content. Go somewhere
<abp-card style="width: 18rem;">
    <img abp-card-image="Top" src="~/imgs/demo/300x200.png" alt="Card image cap">
    <abp-card-body>
        <abp-card-title>Card title</abp-card-title>
        <abp-card-text>Some quick example text to build on the card title and make up the bulk of the card's content.</abp-card-text>
        <a href="#" class="btn btn-primary">Go somewhere</a>
    </abp-card-body>
</abp-card>

# Example

With supporting text below as a natural lead-in to additional content. Go somewhere
<abp-card class="text-center">
    <abp-card-header>
        <ul class="nav nav-tabs card-header-tabs">
            <li class="nav-item">
                <a class="nav-link active" href="#">Active</a>
            </li>
            <li class="nav-item">
                <a class="nav-link" href="#">Link</a>
            </li>
            <li class="nav-item">
                <a class="nav-link disabled" href="#">Disabled</a>
            </li>
        </ul>
    </abp-card-header>
    <abp-card-body title="Special title treatment">
        <abp-card-text>With supporting text below as a natural lead-in to additional content.</abp-card-text>
        <a href="#" class="btn btn-primary">Go somewhere</a>
    </abp-card-body>
</abp-card>

< back