21 lines
899 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">
<!-- Allow installing the app to the homescreen -->
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
2016-08-26 14:19:03 +02:00
<title>Strapi Admin</title>
2016-11-22 11:34:14 +01:00
<base href="/admin">
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-09-02 15:18:16 +02:00
<script type="text/javascript" src="http://localhost:3000/main.js"></script>
2016-08-18 11:41:13 +02:00
</html>