blob: d809043c4b3d25bfb5008c48aba2049323edae03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@page "{site?}"
@model IndexModel
@{
ViewData["Title"] = Model.Source.Name;
}
@foreach (var article in Model.Source.Articles) {
<section style="margin-bottom: 8px;display: flex; flex-direction: column">
<a href="/les/@Model.Source.Name?url=@article.Href">
<h2 style="font-size: 18px">@Html.Raw(article.Title)</h2>
</a>
<a href="@article.Href" style="font-size: 14px;display:flex;justify-content: end" rel="noreferrer">Les på nrk.no</a>
</section>
}
<footer>
<p>
<small>
@Model.Source.Attribution © @Model.Source.Name, @(DateTime.UtcNow.Subtract(Model.Source.Created).Minutes) minutter siden
</small>
</p>
</footer>
|