60 lines
2.4 KiB
HTML
60 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<header>
|
|
<link rel="shortcut icon" href="index_favicon.ico">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<title>0x01fe.net - {{ title }}</title>
|
|
</header>
|
|
<body>
|
|
<div class="header">
|
|
<h1>{{ title }}</h1>
|
|
{{ status|safe }}
|
|
</div>
|
|
<div class="container">
|
|
<!-- Sidebar -->
|
|
<div class="sidebar">
|
|
<a href="/"><u>Home</u></a><br>
|
|
<a href="/category/games/">Games</a><br>
|
|
<a href="/music/">Music</a><br>
|
|
<a href="/category/motion-pictures/">Motion Picture</a><br>
|
|
<a href="/programming/">Programming</a><br>
|
|
<a href="/writing/">Writing</a><br>
|
|
<a href="/about/">About</a><br>
|
|
<a href="/login/">Login</a>
|
|
</div>
|
|
|
|
<!-- Main Page -->
|
|
<!-- Get it? D-Log? Like digital log? -->
|
|
<div class="dlog">
|
|
{% for post in posts %}
|
|
<div class="post">
|
|
<div class="post-date">
|
|
{{ post[0].date }}
|
|
</div>
|
|
{{ post[0].body|safe }}
|
|
<div class="comment-container">
|
|
<h2>Comments</h2>
|
|
{% for comment in post[1] %}
|
|
<div class="comment">
|
|
<h4>{{ comment.username }}</h4>
|
|
<p>{{ comment.content }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
{% if user %}
|
|
<div class="comment-editor">
|
|
<h4>{{ user }}</h4>
|
|
<form method="post" action="/comment/{{ post[0].title }}">
|
|
{{ form.hidden_tag() }}
|
|
{{ form.textbox }}
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|