{% extends "base.j2.html" %} {% macro includefile(fname) %} {% include fname %} {% endmacro %} {% block lang %} lang="{{ post.inLanguage }}" {% endblock %} {% block title %}{{ post.headline }} - {{ site.name }}{% endblock %} {% block meta %} {% if post['@type'] == 'TechArticle' %} {% endif %} {% if post.image.url is defined %} {% else %} {% endif %} {% endblock %} {% block prism %} {% if post['@type'] == 'TechArticle' %} {% endif %} {% endblock %} {% block content %} {% if post.event %} {% set mftype = 'h-entry hentry h-event hevent' %} {% else %} {% set mftype = 'h-entry hentry' %} {% endif %}

{% if post.mentions %} RE: {{ post.mentions.url }} {% else %} {{ post.headline }} {% endif %}

{% if post.review %}
Review summary of: {{ post.review.name }}

By {{ post.author.name }} in

{{ post.review.reviewRating.ratingValue }} out of {{ post.review.reviewRating.bestRating }}

{{ post.review.text }}

{% endif %} {% if post.description|length %}
{{ post.description }}
{% endif %}
{{ post.text }}
{% if post.subjectOf %}
Trip details
From to , in {{ post.subjectOf.location.name }}
{% endif %}
Author
Photo of {{ post.author.name }} {{ post.author.name }}
Published
License
{% if 'CC-BY-4.0' in post.license %} CC-BY-4.0
  • you can share it
  • you can republish it
  • you can modify it, but you need to indicate the modifications
  • you can use it for commercial purposes
  • you always need to make a link back here
{% elif 'CC-BY-NC-4.0' in post.license %} CC-BY-NC-4.0
  • you can share it
  • you can republish it
  • you can modify it, but you need to indicate the modifications
  • you can't use it for commercial purposes
  • you always need to make a link back here
For commercial use, please contact me. {% elif 'CC-BY-NC-ND-4.0' in post.license %} CC-BY-NC-ND-4.0
  • you can share it
  • you can't modify it
  • you can't republish it
  • you can't use it for commercial purposes
  • you always need to make a link back here
For commercial use, please contact me. {% endif %}
Entry URL
{{ post.url }}
{% if post.sameAs|length %}
Also on
{% endif %}
{% if 'WebPage' != post['@type'] %}

Encourage creation!

If this entry helped you, or you simply liked it, leave a tip via
{% set counters = {'donation': False} %} {% for donate in post.potentialAction %} {% if 'DonateAction' == donate['@type'] %} {% if counters.donation %} or {% endif %} {{ donate.description }} {% if counters.update({'donation': True}) %} {% endif %} {% endif %} {% endfor %}

{% if post.comment|length %}

Responses

    {% for comment in post.comment %}
  1. {{ comment.disambiguatingDescription }} from {% if comment.author.url %} {{ comment.author.name }} {% else %} {{ comment.author.name }} {% endif %} at
    {{ comment.url }}
  2. {% endfor %}
{% endif %} {% endif %}
{% endblock %}