{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %} {% trans "Home" %} {% endblock %} {% block parallax %} {% include "./partials/parallax.html" %} {% endblock %} {% block content %} {% load top_tags %} {% random_favorite_photos_portrait 10 as top_portrait_photos %} {% if top_portrait_photos %} {% include "gallery/partials/photos_slider.html" with photos=top_portrait_photos %} {% endif %}
{% for album in latest_albums %} {% include "gallery/partials/album_card.html" %} {% endfor %}
{% random_favorite_photos_landscape 10 as top_landscape_photos %} {% if top_landscape_photos %} {% include "gallery/partials/photos_slider.html" with photos=top_landscape_photos %} {% endif %} {% endblock %}