﻿<%--
  <copyright file="Mobile.aspx" company="Microsoft">
    Copyright (C) Microsoft. All rights reserved.
  </copyright>
--%>
<%@ Page Title="" Language="C#" MasterPageFile="~/RemoteAccess.master" AutoEventWireup="true" EnableEventValidation="false"
    CodeBehind="Mobile.aspx.cs" Inherits="Microsoft.WindowsServerSolutions.Web.RemoteAccessSite.BuiltIns.Homepage.Mobile"
     %>
<%@ Register Assembly="WSSG.Web" Namespace="Microsoft.WindowsServerSolutions.Web.Controls"
    TagPrefix="cc" %>
<asp:Content ContentPlaceHolderID="head" runat="server">
    <cc:CssLoader ID="CssLoaderFS" runat="server" Src="Homepage_Mobile.css" />
</asp:Content>
<asp:Content ContentPlaceHolderID="PageContent" runat="server">
    <asp:ScriptManagerProxy runat="server">
        <scripts>
            <asp:ScriptReference Path="~/JavaScript/ramjsfx.utils.js" />
        </scripts>        
    </asp:ScriptManagerProxy>
    <asp:Repeater ID="AddInList" runat="server" OnItemDataBound="AddInList_ItemDataBound">
        <HeaderTemplate><table  role="presentation"  class="ItemList"></HeaderTemplate>
        <ItemTemplate>
            <tr>
                <td class="AddInIcon"><a ID="AddInIconLink" runat="server"><img ID="LandingIcon" runat="server" src="~/images/spacer.gif"/></a></td>
                <td class="AddInLink"><a ID="AddInLink" runat="server"><div class="AddInName single-line"><asp:Literal ID="AddInName" runat="server" /></div></a></td>
            </tr>
        </ItemTemplate>
        <FooterTemplate></table></FooterTemplate>
    </asp:Repeater>
</asp:Content>

