21 lines
497 B
Plaintext
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) </a><br />
|
|
<a class="comment" asp-action="Print">// @Localizer["Print CV"] </a>
|
|
</header>
|
|
|
|
<article>
|
|
@Html.Raw(Model.Resume.Content)
|
|
</article>
|
|
|
|
@section Footer
|
|
{
|
|
<partial name="~/Views/Shared/ContactsBlock.cshtml" />
|
|
} |