{% extends "base.html" %} {% block content %}

James' Index Log

About the crawl

{{ index_stats["total_pages_indexed"] }} pages and {{ index_stats["total_images_indexed"] }} images have been indexed in total.

{{ index_stats["pages_indexed_in_last_crawl"] }} pages and {{ index_stats["images_indexed_in_last_crawl"] }} images were indexed in the last crawl.

{{ index_stats["errors_found"] }} issues were found in the last crawl.

jamesg.blog was last crawled at {{ index_stats["last_index_end"] }}. The last crawl lasted {{ index_stats["crawl_duration"] }}.

Find an issue by type


Crawl issue overview

Here is an overview of the issues found in the last crawl:

Crawl issues

{% if results | length > 0 %}
    {% for r in range(0, results | length) %}
  1. {{ results[r][0] }} ({{ results[r][1] }})

    {{ results[r][2] }}

    Discovered: {% if results[r][3].startswith("https://") or results[r][3].startswith("http://") %}{{ results[r][3] }}{% else %}{{ results[r][3] }}{% endif %}


  2. {% endfor %}
{% else %}

No issues were found in the last crawl.

{% endif %}
{% endblock %}