2022-12-27 22:31:07 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>{{ .title }}</title>
|
2022-12-27 22:46:31 -05:00
|
|
|
<link rel="stylesheet" href="/static/question.css" />
|
2022-12-27 22:31:07 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="parent">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
<h1>{{ .title }}</h1>
|
2022-12-27 22:46:31 -05:00
|
|
|
<p class="timestamp">
|
|
|
|
Asked {{ .timestamp }} by
|
|
|
|
<a href="{{ .authorURL }}">{{ .author }}</a>.
|
|
|
|
</p>
|
2022-12-27 22:31:07 -05:00
|
|
|
</div>
|
2022-12-27 22:46:31 -05:00
|
|
|
<div class="card-body">{{ .body }}</div>
|
2022-12-27 22:31:07 -05:00
|
|
|
</div>
|
2022-12-27 22:46:31 -05:00
|
|
|
<hr />
|
|
|
|
<h2>Answers</h2>
|
2022-12-27 22:31:07 -05:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|