minor template tweaks

This commit is contained in:
Kyle Mahan 2015-02-25 04:55:57 +00:00
parent 52a8564b97
commit 5ae94c2273
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@
</div> </div>
{% endif %} {% endif %}
<footer> <footer>
<a href="{{ context.permalink }}">{{ context.published }}</a> <a href="{{ context.permalink }}">{{ context.published | relative_time }}</a>
</footer> </footer>
</article> </article>
{% endfor %} {% endfor %}
@ -42,7 +42,7 @@
</div> </div>
{% endif %} {% endif %}
<footer> <footer>
<a href="{{ entry.permalink }}">{{ entry.published }}</a> <a href="{{ entry.permalink }}">{{ entry.published | relative_time }}</a>
<div class="reply-area"> <div class="reply-area">
{% include '_reply.jinja2' with context %} {% include '_reply.jinja2' with context %}
</div> </div>

View file

@ -31,7 +31,7 @@
</div> </div>
{% endif %} {% endif %}
{% if current_user %} {% if current_user.is_authenticated() %}
<script> <script>
webSocketSubscribe('woodwind:user:' + {{ current_user.id }}); webSocketSubscribe('woodwind:user:' + {{ current_user.id }});
</script> </script>