Browse Source

Fix a bunch of misplaced characters

master
Julio Biason 4 years ago
parent
commit
f2756e2f16
  1. 2
      templates/index.html
  2. 2
      templates/macros/post.html
  3. 2
      templates/page.html

2
templates/index.html

@ -7,7 +7,7 @@
<html lang="{%- if config.default_language -%}{{ config.default_language }}{%- else -%}en{%- endif -%}">
<head>
<title>{%- block title %}[ {{ config.title }} ]{% endblock title -%}</title>
<title>{%- block title %}{{ config.title }}{% endblock title -%}</title>
{{ head_macros::head(config=config) }}
{%- if config.generate_rss %}

2
templates/macros/post.html

@ -95,7 +95,7 @@
{%- set sep = "&nbsp;" -%}
{% endif -%}
{%- for tag in page.taxonomies.tags %}
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', lang=page.lang, name=tag) | safe }}">#{{ tag }}</a> #}
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', lang=page.lang, name=tag) | safe }}">#{{ tag }}</a>
{%- if not loop.last %}{{ sep | safe }}{% endif -%}
{% endfor -%}
</span>

2
templates/page.html

@ -1,7 +1,7 @@
{% extends "index.html" %}
{% block title %}
{{ super() }} {{ page.title }}
{{ super() }} | {{ page.title }}
{% endblock %}
{% block content %}

Loading…
Cancel
Save