X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..b39c329ecd604d815de1f772ed9c2e9598db4c46:/src/wolnelektury/templates/main_page.html diff --git a/src/wolnelektury/templates/main_page.html b/src/wolnelektury/templates/main_page.html old mode 100755 new mode 100644 index f1450cbd6..369d6f603 --- a/src/wolnelektury/templates/main_page.html +++ b/src/wolnelektury/templates/main_page.html @@ -1,88 +1,141 @@ -{% extends "base.html" %} -{% load static from staticfiles %} -{% load i18n catalogue_tags infopages_tags social_tags %} -{% load ssi_include from ssify %} +{% extends "base/base.html" %} +{% load latest_blog_posts from blog %} +{% load carousel from social_tags %} +{% load static %} +{% load i18n catalogue_tags infopages_tags %} +{% load cache %} +{% load funding_tags %} +{% get_current_language as LANGUAGE_CODE %} {% block title %}{% trans "Wolne Lektury internet library" %}{% endblock %} {% block ogtitle %}{% trans "Wolne Lektury internet library" %}{% endblock %} -{% block body %}{% spaceless %} - - {% choose_cite as cite_pk %} - {{ cite_pk.if }} - {% ssi_include 'social_cite_main' pk=cite_pk %} - {{ cite_pk.endif }} - - - -
-

{% trans "What's new?" %}

-
- {% ssi_include 'chunk' key='promo' %} +{% block body %} + {% spaceless %} + {% carousel 'main' %} + +
+

{% trans "In our digital library you will find" %}

+
+
+ {% for book in best %} + {{ book.mini_box }} + {% endfor %}
+ +
+ {% trans "and many other books, poems, pictures, audiobooks…" %} +
+
+
+
+

+ + {% trans "Recent publications" %} + → + +

+ {% for book in last_published %} + {{ book.mini_box }} + {% endfor %} +
-
-

{% trans "Recent publications" %}

- {% for book in last_published %} - {% ssi_include 'catalogue_book_mini' pk=book.pk %} - {% endfor %} + {% if collections %} +
+

+ + {% trans "Collections" %} + → + +

+ {% for collection in collections %} + {{ collection.box }} + {% endfor %} +
+ {% endif %} + +
+

+ + {% trans "Motifs and themes" %} + → + +

+
+

{% trans "Theme" %}: {{ theme }}

+

{% trans "Explore works with the same theme" %}

+ {% for book in theme_books %} + {{ book.mini_box }} + {% endfor %} + {% if theme_fragment %} + {% cache 3600 fragment_promo theme_fragment.pk %} + {% include 'catalogue/fragment_promo.html' with fragment=theme_fragment %} + {% endcache %} + {% endif %} +
-

{% trans "News" %}

- {% ssi_include 'latest_blog_posts' %} +

{% trans "News" %}

+ {% cache 1800 latest_blog_posts %} + {% latest_blog_posts %} + {% endcache %}
-
-

{% trans "Utilities" %}

- - +

{% trans "Utilities" %}

+ +
-
-

{% trans "Information" %}

- - - +

{% trans "Information" %}

+ + +
- - -{% endspaceless %}{% endblock %} - - -{% block add_footer %}{% spaceless %} -{{ cite_pk.if }} -

{% trans "Image used:" %} - {% ssi_include 'social_cite_info' pk=cite_pk %} -

-{{ cite_pk.endif }} -{% endspaceless %}{% endblock %} + {% endspaceless %} +{% endblock %} + + +{% block add_footer %} + {% spaceless %} + {% if cite %} +

+ {% trans "Image used:" %} + {% cache 3600 cite_info cite.pk %} + {% include 'social/cite_info.html' %} + {% endcache %} +

+ {% endif %} + {% endspaceless %} +{% endblock %}