34 lines
No EOL
993 B
HTML
34 lines
No EOL
993 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<!-- Title -->
|
|
{% block title %} {% trans "Home" %} {% endblock %}
|
|
|
|
<!-- Content -->
|
|
{% block content %}
|
|
|
|
{% load top_tags %}
|
|
|
|
<!-- Favorite random portrait photos -->
|
|
{% 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 %}
|
|
|
|
<!-- Latest albums -->
|
|
<div class="uk-grid-small uk-child-width-1-2@s uk-child-width-1-3@m uk-margin-bottom" uk-grid="masonry: true">
|
|
|
|
{% for album in latest_albums %}
|
|
{% include "gallery/partials/album_card.html" %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<!-- Favorite random landscape photos -->
|
|
{% 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 %} |