PageRenderTime 44ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/themes/TitaniumX/WidgetContainer.ascx

#
ASP.NET | 17 lines | 17 code | 0 blank | 0 comment | 1 complexity | 442ea80cb0687677203e6f4a091cb8f0 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <%@ Control Language="C#" AutoEventWireup="true" Inherits="App_Code.Controls.WidgetContainer" %>
  2. <div class="widget <%= Widget.Name.Replace(" ", String.Empty).ToLowerInvariant() %>"
  3. id="widget<%= Widget.WidgetId %>">
  4. <%= AdminLinks %>
  5. <% if (this.Widget.ShowTitle)
  6. { %>
  7. <h4>
  8. <%= Widget.Title%></h4>
  9. <% }
  10. else
  11. { %>
  12. <br />
  13. <% } %>
  14. <div class="content">
  15. <asp:PlaceHolder ID="phWidgetBody" runat="server"></asp:PlaceHolder>
  16. </div>
  17. </div>