markus / ConvertService / ServiceBase / UploadFonts / Site.Master @ 950e6b84
이력 | 보기 | 이력해설 | 다운로드 (3.38 KB)
1 |
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="UploadFonts.SiteMaster" %> |
---|---|
2 |
|
3 |
<!DOCTYPE html> |
4 |
|
5 |
<html lang="ko"> |
6 |
<head runat="server"> |
7 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> |
8 |
<meta charset="utf-8" /> |
9 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
10 |
<title><%: Page.Title %> - 내 ASP.NET 애플리케이션</title> |
11 |
|
12 |
<asp:PlaceHolder runat="server"> |
13 |
<%: Scripts.Render("~/bundles/modernizr") %> |
14 |
</asp:PlaceHolder> |
15 |
|
16 |
<webopt:bundlereference runat="server" path="~/Content/css" /> |
17 |
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" /> |
18 |
|
19 |
</head> |
20 |
<body> |
21 |
<form runat="server"> |
22 |
<asp:ScriptManager runat="server"> |
23 |
<Scripts> |
24 |
<%--To learn more about bundling scripts in ScriptManager see https://go.microsoft.com/fwlink/?LinkID=301884 --%> |
25 |
<%--Framework Scripts--%> |
26 |
<asp:ScriptReference Name="MsAjaxBundle" /> |
27 |
<asp:ScriptReference Name="jquery" /> |
28 |
<asp:ScriptReference Name="bootstrap" /> |
29 |
<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" /> |
30 |
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" /> |
31 |
<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" /> |
32 |
<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" /> |
33 |
<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" /> |
34 |
<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" /> |
35 |
<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" /> |
36 |
<asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" /> |
37 |
<asp:ScriptReference Name="WebFormsBundle" /> |
38 |
<%--Site Scripts--%> |
39 |
</Scripts> |
40 |
</asp:ScriptManager> |
41 |
|
42 |
<div class="navbar navbar-inverse navbar-fixed-top"> |
43 |
<div class="container"> |
44 |
<div class="navbar-header"> |
45 |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> |
46 |
<span class="icon-bar"></span> |
47 |
<span class="icon-bar"></span> |
48 |
<span class="icon-bar"></span> |
49 |
</button> |
50 |
<a class="navbar-brand" runat="server" href="~/">Markus Font Upload</a> |
51 |
</div> |
52 |
<div class="navbar-collapse collapse"> |
53 |
<ul class="nav navbar-nav"> |
54 |
<li><a runat="server" href="~/">Upload Fonts</a></li> |
55 |
<li><a runat="server" href="~/Contact">Setting Mail</a></li> |
56 |
</ul> |
57 |
</div> |
58 |
</div> |
59 |
</div> |
60 |
<div class="container body-content"> |
61 |
<asp:ContentPlaceHolder ID="MainContent" runat="server"> |
62 |
</asp:ContentPlaceHolder> |
63 |
<hr /> |
64 |
<footer> |
65 |
<p> </p> |
66 |
</footer> |
67 |
</div> |
68 |
|
69 |
</form> |
70 |
</body> |
71 |
</html> |