meta-lightbox/src/index.html

37 lines
1.0 KiB
HTML
Raw Normal View History

2019-11-25 06:59:54 +01:00
<!DOCTYPE html>
<html lang="en">
2021-01-25 12:15:33 +01:00
2021-08-04 00:55:06 +02:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Meta Lightbox" />
<meta name="author" content="Tony Air" />
<title>Meta-lightbox Demo</title>
<style>
.wrapper {
padding: 2rem;
}
2021-01-31 12:51:51 +01:00
2021-08-04 00:55:06 +02:00
</style>
</head>
2021-01-31 12:51:51 +01:00
2021-08-04 00:55:06 +02:00
<body>
<div class="wrapper">
<h1>Meta-lightbox Demo</h1>
NODE_ENV:
<%= NODE_ENV %>
<%=
require('html-loader!./html/meta-lightbox.html').default %>
<div id="App"></div>
</div>
<!-- React is required -->
<%= REACT_SCRIPTS %>
<!-- That's optional dependencies -->
<!-- jQuery -->
<!-- script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css" />
</body>
2021-01-31 12:51:51 +01:00
2021-01-25 12:15:33 +01:00
</html>