UNPKG

@docusaurus/core

Version:

Easy to Maintain Open Source Documentation Websites

33 lines (32 loc) 991 B
"use strict"; /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.default = ` <!DOCTYPE html> <html <%~ it.htmlAttributes %>> <head> <meta charset="UTF-8"> <meta name="generator" content="Docusaurus v<%= it.version %>"> <% it.metaAttributes.forEach((metaAttribute) => { %> <%~ metaAttribute %> <% }); %> <%~ it.headTags %> <% it.stylesheets.forEach((stylesheet) => { %> <link rel="stylesheet" href="<%= it.baseUrl %><%= stylesheet %>" /> <% }); %> <% it.scripts.forEach((script) => { %> <script src="<%= it.baseUrl %><%= script %>" defer></script> <% }); %> </head> <body <%~ it.bodyAttributes %>> <%~ it.preBodyTags %> <div id="__docusaurus"><%~ it.appHtml %></div> <%~ it.postBodyTags %> </body> </html> `;