{% extends 'ndr_core/admin_views/base.html' %} {% load static %} {% load ndr_utils %} {% load crispy_forms_tags %} {% block content %}

Search Engine Optimization

{% if "/configure/seo/ndrcore-org" in request.path %}
Connect with ndrcore.org

You can connect your site with ndrcore.org to help us keep track of your site and to help us keep your site up to date with the latest security patches. Also, if you are a member of the ndrcore.org network, you will be found by other members of the network and people looking for data you have published.

{% elif "/configure/seo/google" in request.path %}
Google Verification File

The Google Verification File is used by Google to verify that you are the owner of the site. It is needed to enter your site into the Google Search Console.

  • Go to Google Search Console
  • Enter "{{ request.scheme }}://{{ request.get_host }}" into "URL Prefix"
  • Download the provided html file and upload it here.
{% elif "/configure/seo/robots" in request.path %}
Your robots.txt File

The robots.txt file is used by search engines to determine what pages they should index and what pages they should ignore. You can use this file to prevent search engines from indexing pages that you do not want to be indexed.

{% elif "/configure/seo/sitemap" in request.path %}
Your sitemap.xml File

The sitemap.xml file is used by search engines to determine what pages they should index and what pages they should ignore. You can use this file to prevent search engines from indexing pages that you do not want to be indexed.

{% endif %}
{% if "/configure/seo/ndrcore-org" in request.path %}
Connect with ndrcore.org
{% crispy form %} {% elif "/configure/seo/google" in request.path %}
Google Verification File
{% if google_search_console_verification_file %}

You have uploaded a google verification file:

{% else %} {% crispy form %} {% endif %} {% elif "/configure/seo/robots" in request.path %}
Your robots.txt File
{{ robots_txt|safe }}
{% elif "/configure/seo/sitemap" in request.path %}
Your sitemap.xml File
{{ sitemap_xml|safe }}
{% endif %}
{% endblock %}