mirror of https://github.com/hrfee/jfa-go
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
3 years ago
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<link rel="stylesheet" type="text/css" href="bundle.css">
|
||
|
{{ template "header.html" . }}
|
||
|
<title>Crash report</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="page-container">
|
||
|
<div class="row">
|
||
|
<div class="col">
|
||
|
<div class="card ~critical sectioned">
|
||
|
<section class="section ~critical">
|
||
|
<span class="heading">Crash report for jfa-go</span>
|
||
|
{{ if .Err }}
|
||
|
<div class="monospace pre-line mt-1 mb-1">
|
||
|
Error: {{ .Err }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
<a class="button ~critical mb-1" target="_blank" href="https://github.com/hrfee/jfa-go/issues/new/choose">Create an Issue</a>
|
||
|
</section>
|
||
|
<section class="section ~neutral !low">
|
||
|
<span class="subheading">Full Log</span>
|
||
|
<pre class="monospace pre-line">{{ .Log }}</pre>
|
||
|
</section>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|