Added an example of a prim-dns file server setup, with more intricate pages that make use of other files (like including a Javascript script) and dynamic responses (getting a list of agents in the region).
23 lines
733 B
HTML
23 lines
733 B
HTML
<?xml version="1.0"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>prim-dns file server default page</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootswatch@4.5.2/dist/lumen/bootstrap.min.css" integrity="sha384-GzaBcW6yPIfhF+6VpKMjxbTx6tvR/yRd/yJub90CqoIn2Tz4rRXlSpTFYMKHCifX" crossorigin="anonymous"/>
|
|
<style>
|
|
body {
|
|
margin: 1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>prim-dns file server examples</h1>
|
|
<p>These are some examples of what you can do using the prim-dns file server:</p>
|
|
<ul>
|
|
<li><a href="javascript">Javascript</a></li>
|
|
<li><a href="agents">Agents in region</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|