84d98a7795
- start
24 lines
1.2 KiB
Plaintext
24 lines
1.2 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_homeButtons.ascx.cs" Inherits="GPW_Admin.WebUserControls.cmp_homeButtons" %>
|
|
|
|
<div class="shortcuts">
|
|
<div class="row">
|
|
<div class="col-12 textCondens">
|
|
<asp:Repeater ID="menu" runat="server" DataSourceID="XmlMenu">
|
|
<ItemTemplate>
|
|
<asp:Repeater ID="voci" runat="server" DataSource='<%# XPathSelect("voce") %>'>
|
|
<ItemTemplate>
|
|
<a href='<%# XPath("@url").ToString().Replace("~/","")%>' class="shortcut text-dark shadow">
|
|
<i class='<%# XPath("@description") + " fa-2x" %>'></i>
|
|
<span class="shortcut-label"><%# XPath("@title")%></span>
|
|
</a>
|
|
</ItemTemplate>
|
|
</asp:Repeater>
|
|
</li>
|
|
</ItemTemplate>
|
|
<SeparatorTemplate>
|
|
</SeparatorTemplate>
|
|
</asp:Repeater>
|
|
<asp:XmlDataSource ID="XmlMenu" runat="server" EnableCaching="True" CacheDuration="5"></asp:XmlDataSource>
|
|
</div>
|
|
</div>
|
|
</div> |