Created
October 15, 2013 08:21
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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>© 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