blog/_layouts/post.html

1.9 KiB

--- layout: default --- {% assign postsTrans=site.posts | where:"ref", page.ref | sort: 'lang' %} {% if postsTrans.size == 0 %} {% assign postsTrans=site.pages | where:"ref", page.ref | sort: 'lang' %} {% endif %}

{{ page.title | escape }}

{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} {%- if page.modified_date -%} ~ {%- assign mdate = page.modified_date | date_to_xmlschema -%} {%- endif -%} {%- if page.author -%} • {% for author in page.author %} {%- if forloop.last == false %}, {% endif -%} {% endfor %} {%- endif -%}

{% if postsTrans.size != 1 %} {{ page.available }}:
    {% for post in postsTrans %} {% if post.lang != page.lang %}
  • {{ post.link-str }}
  • {% endif %} {% endfor %}
{{ page.correct }}

{% endif %}
{{ content }}
{%- if site.disqus.shortname -%} {%- include disqus_comments.html -%} {%- endif -%}