Compare commits
4 commits
bd554b3814
...
2730c99463
Author | SHA1 | Date | |
---|---|---|---|
2730c99463 | |||
7d41c1ce0e | |||
2545ac9f20 | |||
505f5cbea0 |
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
|
|
|
@ -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 %}
|
||||||
|
|
|
@ -120,4 +120,4 @@
|
||||||
{% include "partials/loop.html" %}
|
{% include "partials/loop.html" %}
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue