diff options
Diffstat (limited to 'docs/_includes/footer.html')
-rw-r--r-- | docs/_includes/footer.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/docs/_includes/footer.html b/docs/_includes/footer.html new file mode 100644 index 0000000..291a15d --- /dev/null +++ b/docs/_includes/footer.html @@ -0,0 +1,52 @@ +<footer> + {% if site.your_name %} + <p class="footerText">Made by {% if site.your_link %}<a href="{{ site.your_link }}">{% endif %}{{ site.your_name }}{% if site.your_link %}</a>{% endif %}{% if site.your_city %} in {{ site.your_city }}{% endif %}</p> + {% endif %} + <div class="footerIcons"> + + {% if site.facebook_username %} + <a href="https://facebook.com/{{ site.facebook_username }}"> + <span class="fa-stack fa-1x"> + <i class="socialIconBack fas fa-circle fa-stack-2x"></i> + <i class="socialIconTop fab fa-facebook fa-stack-1x"></i> + </span> + </a> + {% endif %} + + {% if site.twitter_username %} + <a href="https://twitter.com/{{ site.twitter_username }}"> + <span class="fa-stack fa-1x"> + <i class="socialIconBack fas fa-circle fa-stack-2x"></i> + <i class="socialIconTop fab fa-twitter fa-stack-1x"></i> + </span> + </a> + {% endif %} + + {% if site.github_username %} + <a href="https://github.com/{{ site.github_username }}"> + <span class="fa-stack fa-1x"> + <i class="socialIconBack fas fa-circle fa-stack-2x"></i> + <i class="socialIconTop fab fa-github fa-stack-1x"></i> + </span> + </a> + {% endif %} + + {% if site.email_address %} + <a href="mailto:{{ site.email_address }}"> + <span class="fa-stack fa-1x"> + <i class="socialIconBack fas fa-circle fa-stack-2x"></i> + <i class="socialIconTop fas fa-envelope fa-stack-1x"></i> + </span> + </a> + {% endif %} + + </div> + <div class="footerLinks"> + {% for page in site.pages %} + <a href="{{ page.url | relative_url }}" target="_self">{{ page.title }}</a> + {% endfor %} + {% if site.presskit_download_link %} + <a href="{{ site.presskit_download_link }}">Press Kit</a> + {% endif %} + </div> +</footer>
\ No newline at end of file |