25 lines
598 B
Cheetah
25 lines
598 B
Cheetah
|
{{/*
|
||
|
* Copyright (C) 2023-2024 Umorpha Systems
|
||
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
*/ -}}
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Eclipse CI : {{ template "page-title" . }}</title>
|
||
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>Eclipse CI : {{ template "page-title" . }}</h1>
|
||
|
</header>
|
||
|
<article>
|
||
|
{{- template "page-content" . }}
|
||
|
</article>
|
||
|
<footer>
|
||
|
Eclipse CI is free software under the GNU AGPL.
|
||
|
<a href="/eclipse.tar">Download the source code.</a>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|