parent
a7e2bde3fa
commit
a71b3ffe35
@ -1,6 +1,6 @@
|
|||||||
@*@typeparam TItem
|
@typeparam TItem
|
||||||
<div class="card text-center">
|
<div class="card text-center">
|
||||||
@CardHeader(Item)
|
@CardHeader(Item)
|
||||||
@CardBody(Item)
|
@CardBody(Item)
|
||||||
@CardFooter
|
@CardFooter
|
||||||
</div>*@
|
</div>
|
@ -0,0 +1,12 @@
|
|||||||
|
@typeparam TItem
|
||||||
|
|
||||||
|
<div>
|
||||||
|
@if ((Items?.Count ?? 0) != 0)
|
||||||
|
{
|
||||||
|
@foreach (var item in Items)
|
||||||
|
{
|
||||||
|
@ShowTemplate(item)
|
||||||
|
;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</div>
|
Loading…
Reference in new issue