mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
25 lines
887 B
Plaintext
25 lines
887 B
Plaintext
@page "/"
|
|
@inject RssService _rssService
|
|
|
|
@*<MudGrid Style="margin-left: 5px; margin-top: 5px">
|
|
@for (int i = 0; i < 10; i++)
|
|
{
|
|
<MudCard Style="margin: 3px">
|
|
<MudCardMedia Image="https://mudblazor.com/images/door.jpg" Height="200" />
|
|
<MudCardContent>
|
|
<MudText Typo="Typo.h5">Old Paint</MudText>
|
|
<MudText Typo="Typo.body2">Old paint found on a stone house door.</MudText>
|
|
<MudText Typo="Typo.body2">This photo was taken in a small village in Istra Croatia.</MudText>
|
|
</MudCardContent>
|
|
<MudCardActions>
|
|
<MudButton Variant="Variant.Text" Color="Color.Primary">Share</MudButton>
|
|
<MudButton Variant="Variant.Text" Color="Color.Primary">Learn More</MudButton>
|
|
</MudCardActions>
|
|
</MudCard>
|
|
}
|
|
|
|
</MudGrid>*@
|
|
|
|
@code {
|
|
|
|
} |