1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/MyWebsite/MyWebsite/Views/Resume/Index.cshtml
T
2020-04-05 16:14:54 +03:00

21 lines
497 B
Plaintext

@model ResumeViewModel
@{
ViewData["Title"] = Localizer["My resume"];
}
<header>
<h1>@Localizer["My resume"]</h1>
<p>@Localizer["Last update"]: @Model.Resume.LastUpdate</p>
<a class="comment" asp-action="Download">// @Localizer["Download CV"] (.pdf) &#xE118;</a><br />
<a class="comment" asp-action="Print">// @Localizer["Print CV"] &#xE749;</a>
</header>
<article>
@Html.Raw(Model.Resume.Content)
</article>
@section Footer
{
<partial name="~/Views/Shared/ContactsBlock.cshtml" />
}