2015-06-02 02:26:22 +02:00
|
|
|
<%@ Page Title="Home" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master"%>
|
2014-07-16 20:35:03 +02:00
|
|
|
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
2015-10-17 21:35:07 +02:00
|
|
|
<%= Html.Partial("TagPanel",ViewData["Accueil"]) %>
|
|
|
|
|
<%= Html.Partial("TagPanel",ViewData["Actualités"]) %>
|
|
|
|
|
<%= Html.Partial("TagPanel",ViewData["Artistes"]) %>
|
|
|
|
|
<%= Html.Partial("TagPanel",ViewData["Mentions légales"]) %>
|
|
|
|
|
|
|
|
|
|
</asp:Content>
|
|
|
|
|
<asp:Content ContentPlaceHolderID="MASContent" ID="MASContentContent" runat="server">
|
2015-06-02 02:26:22 +02:00
|
|
|
<div>
|
2015-10-10 23:23:04 +02:00
|
|
|
<%= Html.ActionLink("Les articles", "Index", "Blogs", null, new { @class="actionlink" }) %>
|
2015-06-02 02:26:22 +02:00
|
|
|
<%= Html.ActionLink("Contact", "Contact", "Home", null, new { @class="actionlink" }) %>
|
2015-10-08 14:10:45 +02:00
|
|
|
<%= Html.ActionLink("Credits", "Credits", "Home", null, new { @class="actionlink" }) %>
|
2015-06-02 02:26:22 +02:00
|
|
|
<%= Html.ActionLink("Version des librairies", "AssemblyInfo", "Home", null, new { @class="actionlink" }) %>
|
2014-07-16 20:35:03 +02:00
|
|
|
</div>
|
|
|
|
|
</asp:Content>
|
|
|
|
|
|