2018-04-09 23:37:21 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
2018-04-08 18:02:01 +02:00
|
|
|
<head>
|
2018-04-09 23:37:21 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
2018-04-11 13:25:12 +02:00
|
|
|
<title>Converse: {{ title }}</title>
|
2018-04-08 18:02:01 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-04-09 23:37:21 +02:00
|
|
|
<header>
|
|
|
|
<nav class="navbar navbar-light bg-light justify-content-between mb-3">
|
|
|
|
<a class="navbar-brand" href="/">
|
|
|
|
<h2>Converse</h2>
|
|
|
|
</a>
|
2018-04-12 01:07:25 +02:00
|
|
|
<a class="btn btn-outline-secondary my-2" href="/">Back to index</a>
|
2018-04-09 23:37:21 +02:00
|
|
|
</nav>
|
|
|
|
</header>
|
2018-04-08 18:02:01 +02:00
|
|
|
|
2018-04-09 23:37:21 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="list-group">
|
|
|
|
<div class="list-group-item flex-column">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2018-04-11 13:25:12 +02:00
|
|
|
<h3>{{ title }}</h3>
|
2018-04-09 23:37:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-08 20:20:17 +02:00
|
|
|
|
2018-04-09 23:37:21 +02:00
|
|
|
{% for post in posts -%}
|
2018-04-11 16:35:40 +02:00
|
|
|
<div id="post-{{ post.id}}" class="list-group-item flex-column align-items-start">
|
|
|
|
<a href="/thread/{{ id }}#post-{{ post.id }}">
|
|
|
|
<small class="text-muted float-right">{{ post.posted }}</small>
|
|
|
|
</a>
|
2018-04-09 23:37:21 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-2 border-right">
|
2018-04-09 23:48:31 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2018-04-11 13:25:12 +02:00
|
|
|
<img src="https://www.gravatar.com/avatar/{{ post.author_gravatar }}?d=monsterid" />
|
2018-04-09 23:48:31 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<strong>{{ post.author_name }}</strong>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-09 23:37:21 +02:00
|
|
|
</div>
|
|
|
|
<div class="col-10">
|
|
|
|
{{ post.body }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|
2018-04-11 13:25:12 +02:00
|
|
|
|
2018-04-09 23:37:21 +02:00
|
|
|
<div class="list-group-item flex-column align-items-start">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2018-04-12 01:07:25 +02:00
|
|
|
<form id="reply-form" action="/thread/reply" method="post">
|
2018-04-11 13:25:12 +02:00
|
|
|
<input type="hidden" id="thread_id" name="thread_id" value="{{ id }}">
|
2018-04-09 23:37:21 +02:00
|
|
|
<label for="body">You can use <strong>Markdown</strong>!</label>
|
|
|
|
<div class="input-group">
|
|
|
|
<textarea class="form-control" id="body" name="body" aria-label="thread response"></textarea>
|
|
|
|
<div class="input-group-append">
|
|
|
|
<button class="btn btn-outline-primary" type="submit">Post!</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-08 20:20:17 +02:00
|
|
|
</div>
|
2018-04-09 23:37:21 +02:00
|
|
|
</div>
|
2018-04-08 18:02:01 +02:00
|
|
|
</body>
|
|
|
|
</html>
|