Skip to content

Instantly share code, notes, and snippets.

View harounhajem's full-sized avatar
🎯
Focusing

Haroun Hajem harounhajem

🎯
Focusing
  • Gothenburg
View GitHub Profile
@jchadwick
jchadwick / PostViewComponent_Default.cshtml
Last active February 9, 2016 20:06
Up and Running with ASP.NET 5 - Snippets
@inject WebApplication1.Services.FormattingUtility Format
@model WebApplication1.Post
<div class='blog-post' data-post-id="@Model.Id">
<h2 class='title'><a href="@Url.RouteUrl("Post", new { id = Model.Id })">@Model.Title</a></h2>
<p class='metadata'>
<span>@Format.AsDisplayDate(Model.PostedDate)</span>
by <a class="author" href='#'>@Model.Author</a>
</p>
<section class="body">