Client side IP geolocation using



Full response:

    
{% assign data_file = site.pages | where: "type", "burchilldata" | first %}
{% if data_file %}
	{% if site.sharing_option.post_author_left and page.layout == 'post' %}
		{% assign first_author_name = data_file.cognomen[page.author] %}
	{% else %}
    	{% assign first_author_name = data_file.cognomen[site.compass.author] %}
    {% endif %}
    {% assign first_author_url = data_file.authorlinks[first_author_name] %}
    {% assign first_author_css = data_file.authorstyles[first_author_name] %}
    {% assign first_author_logo = data_file.logo_files[first_author_name] %}
    {% assign first_author_basesite = data_file.base_sites[first_author_name] %}
    {% assign first_author_blog = data_file.author_blogs[first_author_name] %}
    
    {% for burchill in data_file.burchills %}
    	{% if burchill != first_author_name %}
    		{% assign second_author_name = burchill %}
    	{% endif %}
    {% endfor %}
    {% assign second_author_url = data_file.authorlinks[second_author_name] %}
    {% assign second_author_css = data_file.authorstyles[second_author_name] %}
    {% assign second_author_logo = data_file.logo_files[second_author_name] %}
    {% assign second_author_basesite = data_file.base_sites[second_author_name] %}
    {% assign second_author_blog = data_file.author_blogs[second_author_name] %}

{{ data_file}}


{{site.compass.author}}