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
Michael Gordeev df03284443 Fixed missing MDL2 character fonts
Fixed blog pages title
2020-11-18 00:50:43 +03:00

47 lines
1.6 KiB
Plaintext

@model ResumeViewModel
@{
ViewData["Title"] = Localizer["My resume"];
}
@section OpenGraph
{
<meta name="author" content="@SharedLocalizer["Michael &apos;XFox&apos; 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 &apos;XFox&apos; 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) &#xE896;</a><br />
<a class="comment" asp-action="Print">// @Localizer["Print resume"] &#xE749;</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>
}