Compare commits

..

4 commits

3 changed files with 4 additions and 4 deletions

View file

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

View file

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