forked from varia/varia.website
mobile style
This commit is contained in:
parent
6cd3e0cbb9
commit
20d1158e40
@ -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">
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user