mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
eafd3fc531
* Migrate docs to master branch, add action to deploy to pages branch on push * Update docs, build pipeline to reflect new method of updating gh-pages * Removed make build-gh-pages from post-commit hook Co-authored-by: Josh Rabinowitz <joshr@joshr.com>
39 lines
972 B
HTML
39 lines
972 B
HTML
<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><a href="http://wemake.services">wemake.services</a></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>
|