{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Quotes ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block menu %}{% include 'orgapy/partials/menu_quotes.html' %}{{ block.super }}{% endblock menu %} {% block main_content %} {% if recent_quotes %}

Recent

{% for quote in recent_quotes %} {% include 'orgapy/partials/quote.html' with block_class='card-block' %} {% endfor %}
View more
{% else %}

You have no quote.

 Create quote
{% endif %} {% if random_quotes %}

Random

{% for quote in random_quotes %} {% include 'orgapy/partials/quote.html' with block_class='card-block' %} {% endfor %}
View more
{% endif %} {% endblock main_content %} {% block body_scripts %} {{ block.super }} {% endblock body_scripts %}