-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 1.23 KB
/
index.html
File metadata and controls
59 lines (53 loc) · 1.23 KB
1
<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>Loader</title> <meta name="viewport" content="width=device-width"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script src="src/utils.js"></script> <script src="src/ajax.js"></script> <script src="src/test.js"></script><style type="text/css"> * { box-sizing: border-box; } .load-content-here { width: 810px; margin: auto; } .template { border: 1px solid #cecece; width: 810px; overflow: hidden; margin: auto; } .template div { width: 200px; height: 200px; float: left; box-shadow: 0px 0px 3px rgba(0, 0, 0, .3); } .hidden { display: none; }</style></head><body><div class="load-content-here"></div><!-- Template for rendering --><div class="hidden"> <article class="template" data-template-name="template"> <div data-template-piece="piece1"> </div> <div data-template-piece="piece2"> </div> <div data-template-piece="piece3"> </div> <div data-template-piece="piece4"> </div> </article></div></body></html>