{% extends "base.html" %} {% load static %} {% block title %}Domains List{% endblock %} {% block description %}Explore the list of domains available, including their logos and names.{% endblock %} {% block keywords %}domains, logos, web development{% endblock %} {% block og_title %}Domains List{% endblock %} {% block og_description %}Discover a variety of domains with their logos and names listed.{% endblock %} {% block content %} {% include "includes/sidenav.html" %}
{% for objects in domain %}
{% if objects.get_logo and objects.get_logo != "None" %} {{ objects.name }} {% endif %} {{ objects.name }}
{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %} Prev {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next {% endif %}
{% endif %} {% endblock content %}