Skip to content

Commit

Permalink
Tidy up broken footer
Browse files Browse the repository at this point in the history
  • Loading branch information
krwenholz committed May 21, 2024
1 parent 7717b23 commit 108481f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
42 changes: 20 additions & 22 deletions templates/_includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
<hr />
<div class="connections" style="text-align:right;">
<a href="mailto:[email protected]" style="font-size: 24px;">
<i class="icon-envelope"></i>
</a>
<a href="http://github.com/krwenholz" style="font-size: 24px;">
<i class="icon-github"></i>
</a>
<a
href="https://www.linkedin.com/in/kyle-wenholz-3b591087/"
style="font-size: 24px;"
>
<i class="icon-linkedin"></i>
</a>
</div>
<p class="jekyll" style="text-align:right;">
Powered by
<a class="with-color" href="https://getzola.org/">Jekyll</a>,
<a class="with-color" href="http://fortawesome.github.com/Font-Awesome/">
Font Awesome</a
>, and
<a class="with-color" href="http://getskeleton.com"> Skeleton</a>.<br />
</p>
<div class="row justify-content-end">
<div class="col-3">
<a href="mailto:[email protected]">
<svg class="feather">
<use href="feather-sprite.svg#mail" />
</svg>
</a>
<a href="http://github.com/krwenholz">
<i class="icon-github"></i>
<svg class="feather">
<use href="feather-sprite.svg#github" />
</svg>
</a>
<a href="https://www.linkedin.com/in/kyle-wenholz-3b591087/">
<svg class="feather">
<use href="feather-sprite.svg#linkedin" />
</svg>
</a>
</div>
</div>
6 changes: 4 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<div class="container">
{% include "_includes/heading.html" %}

<div class="row align-items-center justify-content-left pb-4">
<div class="col">
<div class="row align-items-center justify-content-start pb-4">
<div class="col-3">
<image
src="/images/rocketship.png"
alt=""
Expand All @@ -23,6 +23,8 @@
{{ section.content | safe }}
</div>
</div>

{% include "_includes/footer.html" %}
</div>
</body>
</html>

0 comments on commit 108481f

Please sign in to comment.