template error logging, css, better rendering
This commit is contained in:
parent
2e7a81d7c7
commit
0a85a81950
9 changed files with 51 additions and 39 deletions
|
@ -1,28 +1,21 @@
|
|||
{% extends "base.html" %}
|
||||
{% import "article.html.macro" as article_macro %}
|
||||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
<meta property="og:title" content=" {{ post.title }} | {{ username }}' blog" />
|
||||
<meta property="og:title" content=" {{ post.title }} | {{ username }} blog" />
|
||||
<meta property="og:description" content="{{ post.body | striptags }}" />
|
||||
<title> {{ post.title }} | {{ username }}' blog </title>
|
||||
{% endblock head %}
|
||||
|
||||
{% block content %}
|
||||
<h1><a href="/" class="post-link" style="text-decoration:none;color:black;">{{ username }} blog</a></h1>
|
||||
<p style="text-align: right">
|
||||
<h1><a href="/" class="hidden-link">{{ username }} blog</a></h1>
|
||||
<aside class="side-nav">
|
||||
<a href="/">Home</a>
|
||||
<a href="/about">About</a>
|
||||
<a href="/all">All Posts</a>
|
||||
</p>
|
||||
<ul>
|
||||
<article>
|
||||
<div class="post-content">
|
||||
<a href="/id/{{ post.id }}" class="post-link">
|
||||
<h2 class="post-title">{{ post.title }}</h2>
|
||||
</a>
|
||||
<sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub>
|
||||
<p class="post-body">{{ post.body }}</p>
|
||||
</div>
|
||||
</article>
|
||||
</ul>
|
||||
</aside>
|
||||
|
||||
{{ article_macro::article(id=post.id,title=post.title,body=post.body,publish_date=post.publish_date) }}
|
||||
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue