df03284443
Fixed blog pages title
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
@model ResumeViewModel
|
|
@{
|
|
ViewData["Title"] = Localizer["My resume"];
|
|
}
|
|
|
|
@section OpenGraph
|
|
{
|
|
<meta name="author" content="@SharedLocalizer["Michael 'XFox' Gordeev"]" />
|
|
<meta name="description" content="@SharedLocalizer["Hi, my name is Michael. I'm C# Developer and this is my personal website. Here you can find info about me, my projects and more. Check it out!"]" />
|
|
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:site_name" content="@SharedLocalizer["Michael 'XFox' Gordeev"]" />
|
|
<meta property="og:url" content="https://XFox111.NET/Resume" />
|
|
<meta property="og:locale" content="@SharedLocalizer["en"]" />
|
|
<meta property="og:image" content="https://xfox111.net/images/me.jpg" />
|
|
<meta property="og:description" content="@SharedLocalizer["Hi, my name is Michael. I'm C# Developer and this is my personal website. Here you can find info about me, my projects and more. Check it out!"]" />
|
|
<meta property="og:title" content="@Localizer["My resume"]" />
|
|
|
|
<meta property="article:modified_time" content="@Model.Resume.LastUpdate.ToString("o")" />
|
|
}
|
|
|
|
<header>
|
|
<h1>@Localizer["My resume"]</h1>
|
|
<p>@Localizer["Last update"]: @Model.Resume.LastUpdate</p>
|
|
|
|
<a class="comment" asp-action="Download">// @Localizer["Download resume"] (.pdf) </a><br />
|
|
<a class="comment" asp-action="Print">// @Localizer["Print resume"] </a>
|
|
</header>
|
|
|
|
<article allow-select>
|
|
@Html.Raw(Model.Resume.Content)
|
|
</article>
|
|
|
|
@section Footer
|
|
{
|
|
<partial name="~/Views/Shared/ContactsBlock.cshtml" />
|
|
}
|
|
|
|
@section Imports
|
|
{
|
|
<style type="text/css">
|
|
main
|
|
{
|
|
max-width: 1024px;
|
|
}
|
|
</style>
|
|
} |