strapi/packages/core/admin/index.html

17 lines
700 B
HTML
Raw Normal View History

2016-08-18 11:41:13 +02:00
<!doctype html>
<html lang="en">
2016-08-18 11:47:26 +02:00
<head>
<!-- The first thing in any HTML file should be the charset -->
<meta charset="utf-8">
<!-- Make the page mobile compatible -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
2016-08-26 14:19:03 +02:00
<title>Strapi Admin</title>
2016-08-18 11:47:26 +02:00
</head>
<body>
<!-- The app hooks into this div -->
<div id="app"></div>
<!-- A lot of magic happens in this file. HtmlWebpackPlugin automatically includes all assets (e.g. bundle.js, main.css) with the correct HTML tags, which is why they are missing in this HTML file. Don't add any assets here! (Check out webpackconfig.js if you want to know more) -->
</body>
2016-08-18 11:41:13 +02:00
</html>