<%@ Page Title="Catalog" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master" %>

<% if (Model.Logo!=null) { %> <%=Model.Logo.Alt%> <% } %> <%=Html.Encode(Model.Name)%>

<%=Html.Encode(Model.Slogan)%>

<% foreach (ProductCategory pc in Model.Categories ) { %>

<%= Html.ActionLink( pc.Name, "ProductCategory", new { id = Model.Name, pc = pc.Reference }, new { @class="actionlink" } ) %>

<% foreach (Product p in pc.Products ) { %>

<%= Html.ActionLink( p.Name, "Product", new { id = Model.Name, pc = pc.Reference , pref = p.Reference }, new { @class="actionlink" } ) %>

<%= p.Description %> <% if (p.Images !=null) foreach (ProductImage i in p.Images ) { %> <%=i.Alt%> <% } %>

<% } %> <% } %>