Compare commits

...

4 commits

3 changed files with 4 additions and 4 deletions

View file

@ -1401,7 +1401,7 @@ img {
.post-meta {
position: relative;
z-index: 10;
display: block;
display: inline-block;
margin-bottom: 1.333em;
font-family: 'Fira Sans', sans-serif;
font-size: 0.75em;

View file

@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block title %}{{ article.title }}{% endblock %}
{% block title %}{{ article.title | striptags }}{% endblock %}
{# <!-- Choosing cover image --> #}
{% if article.cover %}
@ -99,7 +99,7 @@
<span class="post-meta"> | Updated on {{ article.locale_modified }}</span>
{% endif %}
{% if selected_cover %}
<div class="post-cover cover" style="background-image: url('{{ selected_cover }}')">
<div class="post-cover cover" style="background-image: url('{{ selected_cover }}'); background-position: left 0">
{% elif selected_color %}
<div class="post-cover cover" style="background-color: {{ selected_color }}">
{% endif %}

View file

@ -120,4 +120,4 @@
{% include "partials/loop.html" %}
</main>
</div>
{% endblock content %}
{% endblock content %}