23 lines
619 B
HTML
23 lines
619 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PictShare Gallery</title>
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<h1>PictShare Gallery</h1>
|
|
<div id="gallery"></div>
|
|
|
|
<script src="/app.js"></script>
|
|
|
|
<footer style="margin:2rem 0 1rem 0; font-size:0.95em; color:#aaa;">
|
|
Favicon by <a href="https://smashicons.com/" target="_blank" rel="noopener" style="color:#aaa;">SmashIcons</a>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|