Skip to content

Commit

Permalink
🐛 Close not closed if statements and fix extends
Browse files Browse the repository at this point in the history
In the last changes some new if statements wasn't closed and the {% extends ... %} was broken.
  • Loading branch information
ivanhercaz committed Dec 7, 2019
1 parent feee462 commit b73f151
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
% extends "base.html" %}
{% extends "base.html" %}

{% block content %}
<div class="columns">
<div class="column">
<h1 class="title">{% trans %}Welcome to{% endtrans %} {{ SITENAME }}{% trans %}!{% endtrans %}</h1>
{% if SITENAME_SLOGAN %}<h2 class="subtitle">{{ SITENAME_SLOGAN }}</h2>
{% if SOCIAL and SOCIAL_FRONTPAGE %}<p>{% trans %}We are in{% endtrans %} <a class="tag is-link" href="https://www.linkedin.com/in/ivanhercaz">LinkedIn</a>, <a class="tag is-dark" href="https://ivanhercaz.github.io/theme/images/icons/github.png">GitHub</a> {% trans %}and{% endtrans %} <a class="tag is-info"class="tag is-info" href="https://ivanhercaz.github.io/theme/images/icons/twitter.png">Twitter</a>.</p>
{% if SITENAME_SLOGAN %}<h2 class="subtitle">{{ SITENAME_SLOGAN }}</h2>{% endif %}
{% if SOCIAL and SOCIAL_FRONTPAGE %}<p>{% trans %}We are in{% endtrans %} <a class="tag is-link" href="https://www.linkedin.com/in/ivanhercaz">LinkedIn</a>, <a class="tag is-dark" href="https://ivanhercaz.github.io/theme/images/icons/github.png">GitHub</a> {% trans %}and{% endtrans %} <a class="tag is-info"class="tag is-info" href="https://ivanhercaz.github.io/theme/images/icons/twitter.png">Twitter</a>.</p>{% endif %}
</div>
<div class="column">
{{ ABOUT_EXTRACT }}
Expand Down

0 comments on commit b73f151

Please sign in to comment.