2022-12-27 22:31:07 -05:00
|
|
|
<!DOCTYPE html>
|
2022-12-28 11:49:14 -05:00
|
|
|
<html data-theme="{{ .theme }}">
|
2023-09-24 00:59:41 -04:00
|
|
|
|
2024-05-05 15:23:09 -04:00
|
|
|
<head>
|
|
|
|
<title>{{ .question.Title }} | AnonymousOverflow</title>
|
|
|
|
<link rel="stylesheet" href="/static/question.css" />
|
|
|
|
<link rel="stylesheet" href="/static/syntax.css" />
|
|
|
|
<link rel="stylesheet" href="/static/comments.css" />
|
|
|
|
<meta http-equiv="Content-Security-Policy"
|
|
|
|
content="default-src 'none'; style-src 'self'; script-src 'self'; img-src {{ .imagePolicy }}; font-src 'self';" />
|
|
|
|
<meta name="description" content="{{ .question.ShortenedBody }}..." />
|
|
|
|
{{ template "sharedHead.html" }}
|
|
|
|
<link rel="stylesheet" href="/static/katex/katex.min.css">
|
2023-09-24 00:59:41 -04:00
|
|
|
|
2024-05-05 15:23:09 -04:00
|
|
|
<!-- The loading of KaTeX is deferred to speed up page rendering -->
|
|
|
|
<script defer src="/static/katex/katex.min.js"></script>
|
|
|
|
|
|
|
|
<!-- To automatically render math in text elements, include the auto-render extension: -->
|
|
|
|
<script defer src="/static/katex/contrib/auto-render.min.js"></script>
|
|
|
|
<script defer src="/static/question.js" type="text/javascript"></script>
|
2023-09-24 00:59:41 -04:00
|
|
|
</head>
|
2024-05-05 15:23:09 -04:00
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="header">
|
|
|
|
<a href="/" class="logo-link">
|
|
|
|
<img class="logo" src="/static/codecircles.webp" alt="AnonymousOverflow home" />
|
|
|
|
</a>
|
|
|
|
{{ template "themeSwitcher.html" . }}
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
<h1>{{ .question.Title }}</h1>
|
|
|
|
<p class="timestamp">
|
|
|
|
Asked {{ .question.Timestamp }} by
|
|
|
|
<a href="{{ .question.AuthorURL }}" target="_blank" rel="noopener noreferrer">{{ .question.AuthorName
|
|
|
|
}}</a>.
|
|
|
|
</p>
|
2024-04-25 14:09:43 +09:00
|
|
|
</div>
|
2024-05-05 15:23:09 -04:00
|
|
|
<div class="card-body">{{ .question.Body }}</div>
|
|
|
|
<div class="card-tags">
|
|
|
|
{{ range .question.Tags }}
|
|
|
|
<div class="tag">{{ . }}</div>
|
|
|
|
{{ end }}
|
2024-04-25 14:09:43 +09:00
|
|
|
</div>
|
2024-05-05 15:23:09 -04:00
|
|
|
{{ if .question.Comments }} {{ template "comments.html"
|
|
|
|
.question }} {{end}}
|
|
|
|
</div>
|
2024-05-05 15:40:01 -04:00
|
|
|
{{ if .answers }}
|
2024-05-05 15:23:09 -04:00
|
|
|
<hr class="post-divider" />
|
|
|
|
<div class="answers-header">
|
|
|
|
<h2>Answers</h2>
|
|
|
|
<div class="sorting">
|
|
|
|
<form>
|
|
|
|
<select name="sort_by">
|
|
|
|
<option disabled value="">Sort answers by...</option>
|
|
|
|
<option value="votes" {{ if eq .sortValue "votes" }} selected{{ end }}>Votes</option>
|
|
|
|
<option value="trending" {{ if eq .sortValue "trending" }} selected{{ end }}>Trending</option>
|
|
|
|
<option value="newest" {{ if eq .sortValue "newest" }} selected{{ end }}>Date modified (newest
|
|
|
|
first)</option>
|
|
|
|
<option value="oldest" {{ if eq .sortValue "oldest" }} selected{{ end }}>Date created (oldest first)
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
<button type="submit">
|
|
|
|
<img src="/static/icons/sort.svg" alt="Sieve icon" />
|
|
|
|
</button>
|
|
|
|
</form>
|
2024-04-25 14:09:43 +09:00
|
|
|
</div>
|
2024-05-05 15:23:09 -04:00
|
|
|
</div>
|
|
|
|
{{ range $answer := .answers }}
|
|
|
|
<div class="answer" id="{{ $answer.ID }}">
|
|
|
|
<div class="answer-meta{{ if $answer.IsAccepted }} accepted{{end}}">
|
2024-04-25 14:09:43 +09:00
|
|
|
<p>
|
|
|
|
{{ if $answer.IsAccepted }} Accepted - {{ end }}
|
|
|
|
{{$answer.Upvotes}} Votes
|
|
|
|
</p>
|
|
|
|
<a href="#{{ $answer.ID }}" class="answer-link">
|
|
|
|
<div class="icon">
|
|
|
|
<img src="/static/icons/link.svg" alt="Paperclip icon" />
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
2024-05-05 15:23:09 -04:00
|
|
|
{{ $answer.Body }}
|
|
|
|
<div class="answer-author-parent">
|
|
|
|
<div class="answer-author">
|
|
|
|
Answered {{ $answer.Timestamp }} by
|
|
|
|
<a href="{{ $answer.AuthorURL }}" target="_blank" rel="noopener noreferrer">{{ $answer.AuthorName }}</a>
|
2022-12-29 13:06:14 -05:00
|
|
|
</div>
|
2022-12-27 22:31:07 -05:00
|
|
|
</div>
|
2024-05-05 15:23:09 -04:00
|
|
|
{{ if $answer.Comments }} {{ template "comments.html" $answer }}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2024-05-05 15:40:01 -04:00
|
|
|
{{ end }}
|
2024-05-05 15:23:09 -04:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|