-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_resources.html
34 lines (29 loc) · 1.04 KB
/
new_resources.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Minnesota Geospatial Commons New Resources</title>
<meta name="description" content="New resources on the Minnesota Geospatial Commons, dynamically created via the CKAN API." />
<meta name="author" content="Mike Dolbow" />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<!--jquery src -->
<script src="//code.jquery.com/jquery-3.6.3.min.js"></script>
<!-- Main Script and CSS src -->
<script src="js/newresource_app.js"></script>
<!--
<link rel="stylesheet" href="css/app.css">
-->
</head>
<body onload="writeNewResources()">
<div class="center">
<header>
<h1>New Resources on MN Geospatial Commons</h1>
</header>
<div id="newResourceDiv">
<p>Recently created resources, driven by the recently changed package list from the API:</br>
<em id="newResourcesEm"></em></p>
</div>
</div>
</body>
</html>