File size: 1,342 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!--
<%= banner %>
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="<%= base %>/commons.js"></script>
<script src="<%= base %>/<%= index %>-<%= source %>.js"></script>
<style>body { padding: 20px; }</style>
<title>RGL Example <%= index %> - <%= title %></title>
</head>
<body>
<h3>React-Grid-Layout
<a href="https://www.npmjs.com/package/react-grid-layout/v/<%= version %>">v<%= version %></a>
Demo <%= index %> - <%= title %>
</h3>
<ul>
<li><a href="https://github.com/react-grid-layout/react-grid-layout">View project on GitHub</a></li>
<li><a href="https://github.com/react-grid-layout/react-grid-layout/blob/master/test/examples/<%= index %>-<%= source %>.jsx">View this example's source</a></li>
<%_ if (previous) { -%>
<li><a href="<%= previous.index %>-<%= previous.source %>.html"><b>⇠</b> View the previous example: "<%= previous.title %>"</a></li>
<%_ } else { -%>
<li><b>⇠</b></li>
<%_ } -%>
<%_ if (next) { -%>
<li><a href="<%= next.index %>-<%= next.source %>.html"><b>⇢ </b>View the next example: "<%= next.title %>"</a></li>
<%_ } -%>
</ul>
<%_ for(var i = 0; i < paragraphs.length; i++) { -%>
<p><%- paragraphs[i] %></p>
<%_ } -%>
<div id="content"></div>
</body>
</html>
|