diff options
Diffstat (limited to 'blog/src')
-rw-r--r-- | blog/src/templates/common/footer.html | 32 | ||||
-rw-r--r-- | blog/src/templates/common/header.html | 3 |
2 files changed, 22 insertions, 13 deletions
diff --git a/blog/src/templates/common/footer.html b/blog/src/templates/common/footer.html index 637c83c..cba93cd 100644 --- a/blog/src/templates/common/footer.html +++ b/blog/src/templates/common/footer.html @@ -1,23 +1,31 @@ </main> <footer> - <i class="fas fa-rss" alt="RSS"></i> - <a href="https://blog.luevano.xyz/rss.xml">https://blog.luevano.xyz/rss.xml</a> - <br> + <span> + <i class="fas fa-address-card" alt="Contact"></i> + <a href="https://luevano.xyz/contact.html">Contact</a> + </span> - <i class="fas fa-envelope" alt="Email"></i> - <a href="mailto:david@luevano.xyz">david@luevano.xyz</a> - <br> + <span> + <i class="fas fa-donate" alt="Donate"></i> + <a href="https://luevano.xyz/donate.html">Donate</a> + </span> - <i class="fas fa-donate" alt="Donate"></i> - <a href="https://luevano.xyz/donate.html">Donate</a> - <br> + <span> + <i class="fas fa-rss" alt="RSS"></i> + <a href="https://blog.luevano.xyz/rss.xml">RSS</a> + </span> - <i class="fas fa-hammer" alt="Hammer"></i> - Created with <a href="https://github.com/luevano/pyssg">pyssg</a> by David Luévano <br> + <span class="created-with"> + <i class="fas fa-hammer" alt="Hammer"></i> + Created with <a href="https://github.com/luevano/pyssg">pyssg</a> + </span> - Copyright <i class="fas fa-copyright" alt="Copyright"></i> 2021 David Luévano Alvarado + <br> + <span class="copyright"> + Copyright <i class="fal fa-copyright" alt="Copyright"></i> 2021 David Luévano Alvarado + </span> </footer> </body> </html> diff --git a/blog/src/templates/common/header.html b/blog/src/templates/common/header.html index b6fb3b1..f3c12aa 100644 --- a/blog/src/templates/common/header.html +++ b/blog/src/templates/common/header.html @@ -10,7 +10,8 @@ <!-- general style --> <link rel="stylesheet" type="text/css" href="css/style.css"> - <link rel="stylesheet" type="text/css" href="fa/css/all.min.css"> + <link rel="stylesheet" type="text/css" href="fork-awesome/css/fork-awesome.min.css"> + <link rel="stylesheet" type="text/css" href="font-awesome/css/all.min.css"> <!-- highlight support for code blocks --> <script type="text/javascript" src="hl/highlight.min.js"></script> |