{%if result['fatal_error']%}

There was a fatal error when trying to format the output file as a webpage. Confirm that there is an output.json file in the directory. If not, you can reference the python-seo-analyzer documentation

{% else %}

total time: {{result['total_time']|round(2)}} seconds

go to:

{% if result['errors']%}

errors:

{% endif %} {% if result['pages'] %}

page analysis:

{% for page in result['pages']%} {% set outer_loop = loop %} {% endfor %}
page word count number of notices
keyboard_arrow_down {{page['url']}} {{page['word_count']}} {{page["warnings"]|length}}

{{page["title"]}}

{{page["description"]}}

    {% for err in page["warnings"] %}
  • {{err|e}}
  • {% endfor %}
{% endif %} {% if result['keywords'] %}

keyword analysis:

{% for key in result['keywords']%} {% endfor %}
keywords count
{{ key['word'] }} {{ key['count'] }}
{% endif %} {% endif %}