Improve parkio, add domainrproxy

This commit is contained in:
2023-09-18 17:39:14 -06:00
parent 6aed764160
commit 3e3b1c46fc
13 changed files with 327 additions and 43 deletions

View File

@@ -0,0 +1,37 @@
<html>
<head>
<meta charset='utf-8' />
<title>Daily park.io Report</title>
</head>
<body>
<h2>Daily <a href='https://park.io'>park.io</a> report for {{day}}</h2>
<table>
<tr>
<th>Name</th>
<th>Current Bid</th>
<th>Bid Count</th>
<th>Closes</th>
</tr>
{{#each auctions}}
<tr>
<td><a href='https://park.io/auctions/view/{{name}}'>{{name}}</a></td>
<td>${{price}}</td>
<td>{{num_bids}}</td>
<td>{{close_date}}</td>
</tr>
{{/each}}
</table>
<table>
<tr>
<th>Domain</th>
<th>TLD</th>
</tr>
{{#each wordDomains}}
<tr>
<td><a href='https://park.io/auctions/view/{{name}}'>{{name}}</a></td>
<td>{{tld}}</td>
</tr>
{{/each}}
</table>
</body>
</html>