diff options
| author | Konsta 'sooda' Hölttä <sooda@iki.fi> | 2017-05-27 14:49:38 +0300 |
|---|---|---|
| committer | Konsta 'sooda' Hölttä <sooda@iki.fi> | 2017-05-27 14:49:38 +0300 |
| commit | 1cee24fe2365b4a41fe6735446c8066be559f019 (patch) | |
| tree | 273d37368b537d4e0be02eb40b47b6913da1232f /_includes/footer.html | |
initial commit: ripoff from gt-web
there's still a bunch of useless css things but norri will deal with it
Diffstat (limited to '_includes/footer.html')
| -rw-r--r-- | _includes/footer.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..72239f1 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,38 @@ +<footer class="site-footer"> + + <div class="wrapper"> + + <h2 class="footer-heading">{{ site.title }}</h2> + + <div class="footer-col-wrapper"> + <div class="footer-col footer-col-1"> + <ul class="contact-list"> + <li>{{ site.title }}</li> + <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li> + </ul> + </div> + + <div class="footer-col footer-col-2"> + <ul class="social-media-list"> + {% if site.github_username %} + <li> + {% include icon-github.html username=site.github_username %} + </li> + {% endif %} + + {% if site.twitter_username %} + <li> + {% include icon-twitter.html username=site.twitter_username %} + </li> + {% endif %} + </ul> + </div> + + <div class="footer-col footer-col-3"> + <p>{{ site.description }}</p> + </div> + </div> + + </div> + +</footer> |
