summaryrefslogtreecommitdiffhomepage
path: root/recent.tmpl
blob: 14b8bba5f45ae0e4c21149cb6000a29667aafd14 (plain)
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
{{define "recent"}}
<!doctype html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/page.css">
<title>Derelict - 3D visualizations of after the battle wreckage fields for EVE Online</title>

<header>
<h1>DERELICT</h1>
</header>

<section>
<h2>Recent</h2>
<table>
{{range .}}
	<tr>
		<td><a href="/view/{{.Id}}">{{.Id}}</a>
		<td>some wrecks
		<td>some grids
		<td>{{.LastModified.Format "January 02, 2006 15:04 UTC"}}
{{end}}
</table>
<h2>About</h2>
<p><strong>Derelict</strong> is a tool for 3D visualizations of after the battle wreckage fields for EVE Online. Main
aim of the project is to create a toolset for creators and services to present battles as 3D visualizations to their
audiences.
</section>

<footer>
Hosted and developed by <a href="https://ignore.pl">ignore.pl</a><br>
<a href="https://git.ignore.pl/derelict/tree/NOTICE">Copyright notice</a>
</footer>
{{end}}