index.html (1.2 KB)
1 <!DOCTYPE html> 2 <html lang="en" data-theme="guac"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta name="theme-color" content="#7a8520"> 7 <title>memori</title> 8 <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✂️</text></svg>"> 9 <link rel="stylesheet" href="resources/style.css"> 10 <script src="resources/theme.js"></script> 11 </head> 12 <body> 13 <div class="page"> 14 <div class="grid" id="grid"></div> 15 </div> 16 17 <input type="file" id="fileInput" accept="image/*" multiple style="display: none;"> 18 <button id="addImagesBtn" class="add-images-btn">Add images</button> 19 20 <!-- Loaded in dependency order --> 21 <script src="resources/popup.js"></script> 22 <script src="resources/grid.js"></script> 23 <script src="resources/display.js"></script> 24 <script src="resources/images.js"></script> 25 <script src="resources/selection.js"></script> 26 <script src="resources/pointer.js"></script> 27 <script src="resources/input.js"></script> 28 <script src="resources/print.js"></script> 29 <script src="resources/app.js"></script> 30 <script src="resources/pdf.js"></script> 31 </body> 32 </html>