diff options
author | uvok cheetah | 2019-05-21 20:54:45 +0200 |
---|---|---|
committer | uvok cheetah | 2019-05-23 17:59:42 +0200 |
commit | 792836deedd072701fa2d099d36e20bb5c04d5ad (patch) | |
tree | ec2585ed37fdbc5cfb5439e892a03ee1987176da /_includes | |
parent | 701a8c01fef8408418850dcbbe4cf42de1088c1e (diff) |
Restore footer with generation timestamp
by copying include from gem and modifying it.
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/footer.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..1548734 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,36 @@ +<footer class="site-footer h-card"> + <data class="u-url" href="{{ "/" | relative_url }}"></data> + + <div class="wrapper"> + + <h2 class="footer-heading">{{ site.title | escape }}</h2> + + <div class="footer-col-wrapper"> + <div class="footer-col footer-col-1"> + <ul class="contact-list"> + <li class="p-name"> + {%- if site.author -%} + {{ site.author | escape }} + {%- else -%} + {{ site.title | escape }} + {%- endif -%} + </li> + {%- if site.email -%} + <li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li> + {%- endif -%} + </ul> + Generiert: {{ site.time | date: "%Y-%m-%d %H:%M:%S" }} + </div> + + <div class="footer-col footer-col-2"> + {%- include social.html -%} + </div> + + <div class="footer-col footer-col-3"> + <p>{{- site.description | escape -}}</p> + </div> + </div> + + </div> + +</footer> |