forked from Mygod/Skylark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileSystem.master
More file actions
18 lines (18 loc) · 788 Bytes
/
FileSystem.master
File metadata and controls
18 lines (18 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%@ Master Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="FileSystem.master.cs" Inherits="Mygod.Skylark.FileSystem" %>
<asp:Content ContentPlaceHolderID="Head" runat="server">
<asp:ContentPlaceHolder ID="Head" runat="server">
</asp:ContentPlaceHolder>
</asp:Content>
<asp:Content ContentPlaceHolderID="Body" runat="server">
<div>
<nav class="breadcrumbs">
<ul>
<li><a href="javascript:changePath();" title="编辑"><i class="icon-pencil"></i></a></li>
<li><a href="/Browse/"><i class="icon-home"></i></a></li>
<% WritePath(); %>
</ul>
</nav>
</div>
<asp:ContentPlaceHolder ID="Body" runat="server">
</asp:ContentPlaceHolder>
</asp:Content>