website/Website/Views/Home/Index.cshtml

19 lines
No EOL
704 B
Text

@model BlogPostViewModel
@{
ViewData["Title"] = "Home";
}
@section CSS{
h3 a {
color:inherit;
}
}
<p>Hi, I'm Rob. I'm a senior software engineer at <a href="https://www.codecomputerlove.com/">Code Computerlove</a>.</p>
<p>If you wish to get in contact, then get in touch via my <a href="http://uk.linkedin.com/in/robertmarshall/"><img alt="LinkedIn profile" src="https://static.licdn.com/scds/common/u/img/webpromo/btn_liprofile_blue_80x15.png" title=""></a></p>
<hr />
<h2>Latest Blog Post</h2>
<h3><a href="/blog/view/@Model.Url">@Model.Title</a></h3>
@Html.Raw(Model.Content)
<small>Posted on @Model.Timestamp</small>
<p><a href="/blog/view/@Model.Url">Read more...</a></p>