You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
738 B
34 lines
738 B
<?xml version="1.0"?> |
|
<Template author="Matt Ward" version="1.0"> |
|
|
|
<Config |
|
name="MVC View Master Page" |
|
icon="VBNet.File.NewClass" |
|
category="VB" |
|
subcategory="ASP.NET MVC" |
|
defaultname="ViewMasterPage${Number}.master" |
|
language="VBNET"/> |
|
|
|
<Description>MVC View Master Page</Description> |
|
|
|
<Files> |
|
<File name="${FullName}" language="VBNET"> |
|
<![CDATA[<%@ Master Language="VB" Inherits="System.Web.Mvc.ViewMasterPage" %> |
|
|
|
<!DOCTYPE html> |
|
<html> |
|
<head runat="server"> |
|
<title><asp:ContentPlaceHolder id="Title" runat="server"/></title> |
|
</head> |
|
<body> |
|
<div id="page"> |
|
<section id="main"> |
|
<asp:ContentPlaceHolder id="Main" runat="server"/> |
|
</section> |
|
</div> |
|
</body> |
|
</html> |
|
]]> |
|
</File> |
|
</Files> |
|
</Template>
|
|
|