mobile style

This commit is contained in:
lowrussia 2020-02-20 13:07:52 +01:00
parent 6cd3e0cbb9
commit 20d1158e40
2 changed files with 7 additions and 7 deletions

View File

@ -12,6 +12,7 @@
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/pygment.css" />
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/{{ CSS_FILE }}" />
{% endblock head %}
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body id="index" class="home">

View File

@ -30,11 +30,10 @@
{% if article.event_start %}
{% set event_status = '' %}
{% set now = article.date.now() | string %}
{% if article.event_start < now %}
{% if article.event_start < article.date.now() %}
{% set event_status = ' past' %}
{% endif %}
{% if article.event_start >= now %}
{% if article.event_start >= article.date.now() %}
{% set event_status = ' current' %}
{% set thumb_size = '/thumb2x' %}
{% endif %}
@ -52,7 +51,7 @@
<span class="entry-title"><a href="/{% if article.lang == 'en' %}en/{% endif %}{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
{% if article.event_start %}
<div class="event-details">
<!-- article.event_start | strftime('%d %B %Y') -->
{{ article.event_start | strftime('%d %B %Y') }}
</div>
{% else %}
<div class="event-details"></div>