16 lines
381 B
HTML
16 lines
381 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<header>
|
|
<title>demo-requirejs</title>
|
|
<!--
|
|
Placing the requirejs script load here will block rendering it can also be placed at the end of the
|
|
body with the 'async' attribute
|
|
-->
|
|
<script data-main="scripts/main" src="scripts/requirejs.js"></script>
|
|
</header>
|
|
<body>
|
|
<h1>RequireJS Frontend DEMO</h1>
|
|
</body>
|
|
</html>
|
|
|