Browse Source

removed merge conflicts

master
mb@mb 6 years ago
parent
commit
88342ba9e9
  1. BIN
      content/images/pluz.jpg
  2. 13
      pelicanconf.py
  3. 21
      themes/varia/templates/article.html
  4. 97
      themes/varia/templates/index.html
  5. 7
      themes/varia/templates/syndication.html

BIN
content/images/pluz.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 484 KiB

After

Width:  |  Height:  |  Size: 176 KiB

13
pelicanconf.py

@ -30,7 +30,7 @@ DEFAULT_PAGINATION = 25
# Uncomment following line if you want document-relative URLs when developing # Uncomment following line if you want document-relative URLs when developing
PLUGIN_PATHS = ['./pelican-plugins', './plugins-custom'] PLUGIN_PATHS = ['./pelican-plugins', './plugins-custom']
PLUGINS = ['dateish', 'extract_toc', 'i18n_subsites', 'summary', 'events-ics','complex_footnotes', 'stream'] PLUGINS = ['dateish', 'extract_toc', 'i18n_subsites', 'summary', 'events-ics','complex_footnotes', 'stream', 'thumbnailer']
MD_EXTENSIONS = ['codehilite','extra','toc'] MD_EXTENSIONS = ['codehilite','extra','toc']
STATIC_PATHS = ['extra/favicon.ico', 'images', 'pdfs', 'stream'] STATIC_PATHS = ['extra/favicon.ico', 'images', 'pdfs', 'stream']
@ -55,12 +55,21 @@ I18N_SUBSITES = {
'locale':'nl.UTF-8' 'locale':'nl.UTF-8'
} }
} }
#Options for plugins
#Our custom events plugin
PLUGIN_EVENTS = { PLUGIN_EVENTS = {
'ics_calendars': ['events.ics', 'curriculum.ics'], 'ics_calendars': ['events.ics', 'curriculum.ics'],
'default_location' : '', 'default_location' : '',
'calendar_per_category': False 'calendar_per_category': False
} }
#Dateish plugin settings
DATEISH_PROPERTIES = ['event_start', 'event_end'] DATEISH_PROPERTIES = ['event_start', 'event_end']
#Thumbnailer plugin settings
IMAGE_PATH ="images"
THUMBNAIL_KEEP_NAME = True
THUMBNAIL_DIR ="images"
THUMBNAIL_SIZES = {'thumb':'200x?', 'thumb2x':'400x?'}

21
themes/varia/templates/article.html

@ -30,9 +30,16 @@
</div> </div>
<div class="article-info"> <div class="article-info">
<div class="featured-image"> <div class="featured-image">
{% if article.featured_image %} {% if article.featured_image %}
<img src="{{ article.featured_image }}"> {% set thumb_size ='/thumb'%}
{% endif %} <a href="{{ article.featured_image }}">
{% if article.featured_image.endswith('.gif') %}
{% set thumb_size =''%}
{% endif %}
<img src="{{ article.featured_image | replace('images','images'+thumb_size) }}">
</a>
{% endif %}
</div> </div>
<div class="event-details"> <div class="event-details">
{% if article.event_start %} {% if article.event_start %}
@ -50,7 +57,13 @@
{% if article.translations %} {% if article.translations %}
<div class="article-translation"> <div class="article-translation">
{% for translation in article.translations %} {% for translation in article.translations %}
<a href="{{ translation.url }}">{{ translation.lang }}</a> {% if translation.lang == 'nl' %}
<a href="{{ translation.url }}">Lees dit artikel in het Nederlands</a>
{% endif %}
{% if translation.lang == 'en' %}
<a href="{{ translation.url }}">Read this article in English</a>
{% endif %}
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% endif %}

97
themes/varia/templates/index.html

@ -5,75 +5,82 @@
{% for p in pages %} {% for p in pages %}
{% if p.title == 'header' %} {% if p.title == 'header' %}
<div id="title"> <div id="title">
{{ p.content }} {{ p.content }}
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
</header> </header>
{% block content_title %} {% block content_title %}
{% endblock %} {% endblock %}
{% if articles_page.has_other_pages() %} {% if articles_page.has_other_pages() %}
{% include 'pagination.html' %} {% include 'pagination.html' %}
{% endif %} {% endif %}
<div id="post-list"> <div id="post-list">
{% for article in articles_page.object_list %} {% for article in articles_page.object_list %}
{% if article.category %} {% if article.category %}
{% if article.event_start %} {% if article.event_start %}
{% set event_status = '' %} {% set event_status = '' %}
{% set thumb_size = '/thumb' %}
{% if article.event_start < article.date.now() %} {% if article.event_start < article.date.now() %}
{% set event_status = ' past' %} {% set event_status = ' past' %}
{% endif %} {% endif %}
{% if article.event_start >= article.date.now() %} {% if article.event_start >= article.date.now() %}
{% set event_status = ' current' %} {% set event_status = ' current' %}
{% set thumb_size = '/thumb2x' %}
{% endif %} {% endif %}
{% endif %} {% endif %}
<article class="hentry {{article.category}}{{event_status}}"> <article class="hentry {{article.category}}{{event_status}}">
{% endif %} {% endif %}
<div class="article-info"> <div class="article-info">
<span class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span> <span class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
{% if article.event_start %} {% if article.event_start %}
<div class="event-details"> <div class="event-details">
{{ article.event_start | strftime('%d %B %Y') }} {{ article.event_start | strftime('%d %B %Y') }}
{% set past = '' %} <!-- {% set event_status = '' %} -->
</div> </div>
{% endif %} {% endif %}
<div class="featured-image {{event_status}}"> <div class="featured-image {{event_status}}">
{% if article.featured_image %} {% if article.featured_image %}
<a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}"> <a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">
<img src="{{ article.featured_image }}"> {% if article.featured_image.endswith('.gif') %}
</a> {% set thumb_size =''%}
{% endif %} {% endif %}
</div> <img src="{{ article.featured_image | replace('images','images'+thumb_size) }}">
</div>
<div class="summary {{ article.category }}">{{ article.summary }} </a>
<span> {% endif %}
{% if DEFAULT_LANG == 'en' %} </div>
<a href="/en/{{ article.url }}">read more</a> </div>
{% elif DEFAULT_LANG == 'nl' %}
<a href="/{{ article.url }}">lees meer</a> <div class="summary {{ article.category }}">{{ article.summary }}
{% endif %} <span>
</span> {% if DEFAULT_LANG == 'en' %}
</div> <a href="/en/{{ article.url }}">read more</a>
<div class="separator"><hr></div> {% elif DEFAULT_LANG == 'nl' %}
<div class="post-info"> <a href="/{{ article.url }}">lees meer</a>
{% if article.category %} {% endif %}
<div class="categories"> </span>
<span itemprop="articleSection"> </div>
<a href="/{{ article.category.url }}" rel="category">{{ article.category }}</a> <div class="separator"><hr></div>
</span> <div class="post-info">
</div> {% if article.category %}
{% endif %} {% if article.tags %} <div class="categories">
<div class="tags"> <span itemprop="articleSection">
Tags: {% for tag in article.tags %} <a href="/{{ article.category.url }}" rel="category">{{ article.category }}</a>
<span itemprop="keywords"> </span>
<a href="/{{ tag.url }}" rel="tag">{{ tag }}</a> </div>
</span> {% endfor %} {% endif %} {% if article.tags %}
</div> <div class="tags">
{% endif %} Tags: {% for tag in article.tags %}
</div> <span itemprop="keywords">
</article> <a href="/{{ tag.url }}" rel="tag">{{ tag }}</a>
</span> {% endfor %}
</div>
{% endif %}
</div>
</article>
{% endfor %} {% endfor %}
</div><!-- /#posts-list --> </div><!-- /#posts-list -->

7
themes/varia/templates/syndication.html

@ -15,7 +15,7 @@ serves as the default image for posts whose featured_image is not set. #}
{% if article %} {% if article %}
<meta property="og:title" content="{{ article.title|striptags|e }} {%if article.subtitle %} - {{ article.subtitle|striptags|e }} {% endif %}"/> <meta property="og:title" content="{{ article.title|striptags|e }} {%if article.subtitle %} - {{ article.subtitle|striptags|e }} {% endif %}"/>
<meta property="og:url" content="{{ SITEURL }}/{{ article.url }}" /> <meta property="og:url" content="{{ SITEURL }}/{{ article.url }}" />
<meta property="og:description" content="{{article.description|striptags|e}}" /> <meta property="og:description" content="{% if article.summary %}{{article.summary|striptags}}{% endif %}" />
<meta property="og:site_name" content="{{ SITENAME|striptags|e }}" /> <meta property="og:site_name" content="{{ SITENAME|striptags|e }}" />
<meta property="og:article:author" content="{{ article.author }}" /> <meta property="og:article:author" content="{{ article.author }}" />
{% if article.date %} {% if article.date %}
@ -26,7 +26,10 @@ serves as the default image for posts whose featured_image is not set. #}
{% endif %} {% endif %}
<meta name="twitter:card" content="summary_large_image"> <meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ article.title|striptags|e }} {%if article.subtitle %} - {{ article.subtitle|striptags|e }} {% endif %}"> <meta name="twitter:title" content="{{ article.title|striptags|e }} {%if article.subtitle %} - {{ article.subtitle|striptags|e }} {% endif %}">
<meta name="twitter:description" content="{{article.description|striptags|e}}"> <meta name="twitter:description" content="{% if article.summary %}{{article.summary|striptags}}{% endif %}">
{% if article.featured_image %} {% if article.featured_image %}
{% if I18N_SUBSITES %} {% if I18N_SUBSITES %}
{% for lang, url in I18N_SUBSITES.items() %} {% for lang, url in I18N_SUBSITES.items() %}

Loading…
Cancel
Save