mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
20 lines
1004 B
Plaintext
20 lines
1004 B
Plaintext
<%@ Page Language="C#" Inherits="Orchard.Mvc.ViewPage" %>
|
|
<%@ Import Namespace="Orchard.Mvc.Html"
|
|
%>
|
|
<%@ Import Namespace="Orchard.UI.Resources" %><!DOCTYPE html>
|
|
<html lang="en" class="static">
|
|
<head>
|
|
<title><%: Html.Title() %></title>
|
|
<% RegisterLink(new LinkEntry {Type = "image/x-icon", Rel = "shortcut icon", Href = ResolveUrl("../Content/orchard.ico")}); %>
|
|
<%--<%
|
|
//todo: (heskew) have resource modules that can be leaned on (like a jQuery module that knows about various CDNs and jQuery's version and min naming schemes)
|
|
//todo: (heskew) this is an interim solution to inlude jQuery in every page and still allow that to be overriden in some theme by it containing a headScripts partial
|
|
Html.Zone("head", ":metas :styles :scripts"); %>--%>
|
|
<%:Display(Model.Head) %>
|
|
<script type="text/javascript">document.documentElement.className="dyn";</script>
|
|
</head>
|
|
<body class="<%: Html.ClassForPage() %>">
|
|
<%: Display(Model.Body) %>
|
|
</body>
|
|
</html>
|