forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.aspx
More file actions
24 lines (22 loc) · 842 Bytes
/
default.aspx
File metadata and controls
24 lines (22 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ Page Language="C#" AutoEventWireup="true" Inherits="_default" Codebehind="default.aspx.cs" %>
<%@ Register Src="Custom/Controls/PostList.ascx" TagName="PostList" TagPrefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphBody" Runat="Server" >
<div id="divError" runat="Server" />
<uc1:PostList ID="PostList1" runat="server" />
<blog:PostCalendar runat="server" ID="calendar"
EnableViewState="false"
ShowPostTitles="true"
BorderWidth="0"
NextPrevStyle-CssClass="header"
CssClass="calendar"
WeekendDayStyle-CssClass="weekend"
OtherMonthDayStyle-CssClass="other"
UseAccessibleHeader="true"
Visible="false"
Width="100%" />
<script type="text/javascript">
//<![CDATA[
console.log("Initialise default.aspx");
//]]>
</script>
</asp:Content>