mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-02 11:47:23 +02:00
17 lines
No EOL
472 B
Text
17 lines
No EOL
472 B
Text
<!DOCTYPE html>
|
|
<html lang="<%- lang%>">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title><%- title %></title>
|
|
<% css.forEach(function(file){ %>
|
|
<link href="<%- file %>" rel="stylesheet">
|
|
<% }); %>
|
|
</head>
|
|
<body>
|
|
<div id="app"><%- body %></div>
|
|
<% js.forEach(function(file){ %>
|
|
<script src="<%-baseUrl %><%- file %>"></script>
|
|
<% }); %>
|
|
</body>
|
|
</html> |