feat: crawl SO and display proxied question

This commit is contained in:
httpjamesm
2022-12-27 22:31:07 -05:00
commit 60f0ec5ce9
5 changed files with 249 additions and 0 deletions

20
templates/question.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>{{ .title }}</title>
<link rel="stylesheet" href="/static/question.css">
</head>
<body>
<div class="parent">
<div class="card">
<div class="card-header">
<h1>{{ .title }}</h1>
</div>
<div class="card-body">
{{ .body }}
</div>
</div>
</div>
</body>
</html>