Skip to content

Commit

Permalink
Remove post category and date
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodiegoss committed Jul 6, 2024
1 parent 1f6380c commit 48ce640
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/blog/jinja2/blog/detail.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,6 @@
{% block page_title %}
<h2>{{ post.title }}</h2>
{% endblock page_title %}
<small>
{{ post.created.date() }}
{% if post.categories.count() > 0 %}
| {{ _("Categories:") }}
{% for category in post.categories.all() %}
<a href="{{ url('blog_category',args=[category.name])}}">
{{ category.name }}
</a>
{% endfor %}
{% endif%}
</small>
<div id=post>
<p>{{ post.body |safe }}</p>
{% for image in images %}
Expand Down

0 comments on commit 48ce640

Please sign in to comment.