<footer>

<p>
  {% if site.github_username %}
    <a href="https://github.com/{{ site.github_username }}" title="Github">
      <svg><use xlink:href="#icon-github"></use></svg>
    </a>
  {% endif %}
  {% if site.facebook_username %}
    <a href="https://www.facebook.com/{{ site.facebook_username }}" title="Facebook">
      <svg><use xlink:href="#icon-facebook"></use></svg>
    </a>
  {% endif %}
  {% if site.twitter_username %}
    <a href="https://twitter.com/{{ site.twitter_username }}" title="Twitter">
      <svg><use xlink:href="#icon-twitter"></use></svg>
    </a>
  {% endif %}
  {% if site.medium_username %}
    <a href="https://medium.com/@{{ site.medium_username }}" title="Medium">
      <svg><use xlink:href="#icon-medium"></use></svg>
    </a>
  {% endif %}
  {% if site.instagram_username %}
    <a href="https://www.instagram.com/{{ site.instagram_username }}" title="Instagram">
      <svg><use xlink:href="#icon-instagram"></use></svg>
    </a>
  {% endif %}
  {% if site.linkedin_username %}
    <a href="https://www.linkedin.com/in/{{ site.linkedin_username }}" title="LinkedIn">
      <svg><use xlink:href="#icon-linkedin"></use></svg>
    </a>
  {% endif %}
</p>

{% include links.html %}

<p>
  <span>Jekflix</span> was made with <svg class="love"><use xlink:href="#icon-heart"></use></svg> by <a href="https://rossener.com" target="_blank" class="creator">Thiago Rossener</a>
</p>

</footer>

{% assign social_urls = '' %} {% if site.github_username %}

{% assign social_urls = social_urls | append: '"https://github.com/' | append: site.github_username | append: '",' %}

{% endif %} {% if site.facebook_username %}

{% assign social_urls = social_urls | append: '"https://www.facebook.com/' | append: site.facebook_username | append: '",' %}

{% endif %} {% if site.twitter_username %}

{% assign social_urls = social_urls | append: '"https://twitter.com/' | append: site.twitter_username | append: '",' %}

{% endif %} {% if site.medium_username %}

{% assign social_urls = social_urls | append: '"https://medium.com/@' | append: site.medium_username | append: '",' %}

{% endif %} {% if site.instagram_username %}

{% assign social_urls = social_urls | append: '"https://www.instagram.com/' | append: site.instagram_username | append: '",' %}

{% endif %} {% if site.linkedin_username %}

{% assign social_urls = social_urls | append: '"https://www.linkedin.com/in/' | append: site.linkedin_username | append: '",' %}

{% endif %}

<script type=“application/ld+json”> {

"@context": "http://schema.org",
"@type": "Organization",
"name": "{{ site.name }}",
"description": "{{ site.description }}",
"url": "{{ site.url }}{{site.baseurl}}/",
"logo": {
    "@type": "ImageObject",
    "url": "{{ site.url }}{{site.baseurl}}/assets/img/icons/mediumtile.png",
    "width": "600",
    "height": "315"
},
"sameAs": [
  {{ social_urls | split: "," | join: "," }}
]

} </script>

<!– Include the script that allows Netlify CMS login –> <script src=“identity.netlify.com/v1/netlify-identity-widget.js”>>

<!– Include the website scripts –> <script src=“{{ '/assets/js/scripts.min.js' | prepend: site.baseurl }}”></script>

<!– Include Google Analytics script –> {% include stats.html %}

<!– Include extra scripts –> {% include extra-js.html %}