Browse Source

mobile style

master
lowrussia 4 years ago
parent
commit
20d1158e40
  1. 1
      themes/varia/templates/base.html
  2. 7
      themes/varia/templates/index.html

1
themes/varia/templates/base.html

@ -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">

7
themes/varia/templates/index.html

@ -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…
Cancel
Save