mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-04 08:05:36 -05:00
45 lines
1.5 KiB
Handlebars
45 lines
1.5 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{> head-common }}
|
|
<!-- page specific -->
|
|
<link rel="stylesheet" href="/assets/css/pretendo-progress.css">
|
|
</head>
|
|
<body class="flex">
|
|
{{> nav-default }}
|
|
<div class="contentWrapper bgLinesSmall">
|
|
<div class="bgExtrude"></div>
|
|
<section class="bigCardWrapper">
|
|
<div class="bigCard">
|
|
<p class="txt-highlight">ERROR</p>
|
|
<h1 class="txt-title">ERROR</h1>
|
|
<p>{{ summary }}</p>
|
|
</div>
|
|
</section>
|
|
<section class="bigCardWrapper double">
|
|
<div class="bigCard">
|
|
<p class="txt-highlight">ERROR</p>
|
|
<h1 class="txt-title">ERROR</h1>
|
|
{{#each games }}
|
|
<div class="listItem state{{ this.state }}">
|
|
<h2>{{ this.title }}</h2>
|
|
<p>{{ this.description }}</p>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
<div class="bigCard">
|
|
<p class="txt-highlight">ERROR</p>
|
|
<h1 class="txt-title">ERROR</h1>
|
|
{{#each backends }}
|
|
<div class="listItem">
|
|
<h2>{{ this.title }}</h2>
|
|
<p>{{ this.description }}</p>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
{{> footer-default }}
|
|
</body>
|
|
</html>
|