aboutsummaryrefslogtreecommitdiff
path: root/src/Costasdev.Busurbano.ServiceViewer/Views/Services/DaysInFeed.cshtml
blob: 84f30a3ee52f912daac43d07bbc3d32f31e68662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@model Costasdev.ServiceViewer.Views.Services.DaysInFeedModel
@{
    ViewData["Title"] = "Fechas con datos";
}

@section Head
{
    <link rel="stylesheet" href="~/styles/days_in_feed.css" />
}

<header>
    <h1>Fechas con datos</h1>
</header>

<main>
    @foreach (var day in Model.Days)
    {
        <article>
            <a asp-controller="Services" asp-action="ServicesInDay" asp-route-day="@day.ToString("yyyy-MM-dd")">@day.ToString("M")</a>
        </article>
    }
</main>