summaryrefslogtreecommitdiffhomepage
path: root/recent.tmpl
blob: bf838b72a7bf3bd49e12f1b7f7eff43e048cccc5 (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
35
36
37
{{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>
{{range .}}
<a href="/view/{{.Id}}" class="recent-item">
	<div class="header left-right">
		<span class="name">{{.Name}}</span>
		<span>{{.StartTime.Format "January 02, 2006 15:04 UTC"}}</span>
	</div>
	<div class="details left-right">
		<span class="id">{{.Id}}</span>
		<span>Last updated on {{.LastModified.Format "January 02, 2006 15:04 UTC"}}</span>
	</div>
</a>
{{end}}
<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/derelict/tree/NOTICE">Copyright notice</a>
</footer>
{{end}}