{% include 'fragments/header.gmi' %} ## Statistics ### Overall These figures are representative of the aggregate size of Geminispace at the time the current index was last updated on {{ index_modification_time | datetimeformat }}. ``` Page Count : {{ "{:>7}".format(statistics.page_count) }} Domain Count : {{ "{:>7}".format(statistics.domain_count) }} ``` => /statistics/historical/overall historical data ### By Content Type These figures are representative of the number of pages seen per content type at the time the current index was last updated on {{ index_modification_time | datetimeformat }}. ``` {% for entry in statistics.content_type_frequencies %} {{ "{:>7} - {}".format(entry["count"], entry["content_type"]) }} {% endfor %} ``` ### By Charset These figures are representative of the number of pages seen per content type at the time the current index was last updated on {{ index_modification_time | datetimeformat }}. ``` {% for entry in statistics.charset_frequencies %} {{ "{:>7} - {}".format(entry["count"], entry["charset"]) }} {% endfor %} ``` {% include 'fragments/footer.gmi' %}