{% extends 'blog/partials/base.html' %} {% block content %} {% load static %} {% load tz %} {% load sha256 %}
Home Opinions Focus Off Spectacles Off {% comment %} Translate to Japanese {% if request.session.language == 'jp' %} Translate to English {% else %} Translate to Japanese {% endif %} {% endcomment %}

{{ post.title }}

{% with post.author.userprofile_set.first as userprofile %} {% endwith %} {{ post.author.first_name }} {{ post.author.last_name }} posted in {{ post.category }} | {% localtime on %}{{ post.date | date:"M d, Y" }}{% endlocaltime %} | {{ post.views }} view{% if not post.views == 1%}s{% endif %}

{% for tag in post.tags.all %} {{ tag.name }} {% endfor %}

{{ post.first_paragraph | safe }} Post Image for {{ post.title }}
{{ post.body | safe }}

Liked this post? Wanna stay updated?

Subscribe to my RSS feed to get the latest updates from this weblog. Copy and paste the following link into your favorite RSS reader:

https://shi.foo/rss/
{% if read_next %}

Read Next

{% endif %}

Comments Back to Top

{% if comments %}
{% for comment in comments %}
Profile Picture {% if not comment.user %} Anonymous User {% else %} Registered User {% endif %}
{% if comment.user %}{{ comment.user.username }}{% else %}{{ comment.anonymous_user.name }}{% endif %} on {{ comment.created_at | date:"M d, Y" }} {% if comment.edited %} (Edited) {% endif %} {% if comment.user == user %}    Edit    Delete {% endif %} {% if comment.anonymous_user.name and comment.anonymous_user.email and comment.anonymous_user.token and comment.anonymous_user.token == request.COOKIES.anonymous_token|sha256 %}    Edit    Delete {% endif %}
{{ comment.processed_body|safe }}
{% if comment.user == user %} {% endif %} {% if comment.anonymous_user.name and comment.anonymous_user.email and comment.anonymous_user.token and comment.anonymous_user.token == request.COOKIES.anonymous_token|sha256 %} {% endif %}
{% endfor %}
{% else %}

Sadly, there are no comments yet. Be the first to leave one!

{% endif %} {% if user.is_authenticated %}

Leave a Comment

{% if messages %} {% for message in messages %} {% if 'spam' in message.tags %}

Your comment was not allowed as it was marked as possible spam. If you think this is a mistake, please contact me at webmaster@thatcomputerscientist.com.

{% endif %} {% endfor %} {% endif %}
{% csrf_token %}

Text Markup Tips >

{% else %}

Leave a Comment

{% if messages %} {% for message in messages %} {% if 'spam' in message.tags %}

Your comment was not allowed as it was marked as possible spam. If you think this is a mistake, please contact me at webmaster@thatcomputerscientist.com.

{% endif %} {% endfor %} {% endif %}

You must be logged in to leave a comment. Or, you can leave an anonymous comment.

{% endif %} {% endblock %} {% block scripts %} {% include 'blog/partials/mathjax.html' %} {% endblock %}