Last active
May 25, 2016 07:39
-
-
Save katstojanovski/db396dccae9de8844676cc3fab0be980 to your computer and use it in GitHub Desktop.
Page View
This file contains 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 SimpleDD4T2Application.Models.Page.Generic | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>@Model.PageTitle</title> | |
</head> | |
<body> | |
<!-- Page Metadata Keywords --> | |
<div class="keywords"> | |
@foreach (var keyword in Model.Keywords) | |
{ | |
<span class="keyword">@keyword</span> | |
} | |
</div> | |
<!-- End Page Metadata Keywords --> | |
<!-- Component Presentations --> | |
<div class="contentarea"> | |
@foreach (var item in Model.Items) | |
{ | |
<div class="cp"> | |
@Html.Render(item) | |
</div> | |
} | |
</div> | |
<!-- End Component Presentations --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment