- pull photo urls from the server - provide styles.css and list ourselves
13 lines
255 B
HTML
13 lines
255 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="app.js"></script>
|
|
<script>
|
|
Elm.PhotoGroove.init({node: document.getElementById("app")});
|
|
</script>
|
|
</body>
|
|
</html>
|