Skip to content

Instantly share code, notes, and snippets.

@dariuszparys
Created October 15, 2013 08:21
Show Gist options
  • Save dariuszparys/6988290 to your computer and use it in GitHub Desktop.
Save dariuszparys/6988290 to your computer and use it in GitHub Desktop.
Demo from Visual Studio Evolution 2013 Talk on ASP.NET MVC with jQuery Mobile View implementation of the controller action index
@model IEnumerable<WebApplication8.Models.Session>
<div data-role="page" id="seite1">
<div data-role="header">
<h1>VS Evolution Demo</h1>
</div>
<div data-role="content">
<div class="ui-grid-b ui-responsive">
@foreach (var item in Model)
{
<div class="ui-block-a">@item.Title</div>
<div class="ui-block-b">@item.Abstract</div>
<div class="ui-block-c">@item.Speaker.Name</div>
}
</div>
<div data-role="footer">
<h4>&copy; 2013 by Anonymous</h4>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment