Various Changes
- Implemented contact-me form - Added social icons using font-awesome - Changed font - Added favicon - Changed site logo from png to svg
This commit is contained in:
47
www/themes/jason-williamsca/partials/social.htm
Normal file
47
www/themes/jason-williamsca/partials/social.htm
Normal file
@@ -0,0 +1,47 @@
|
||||
description = "Social Media Links"
|
||||
==
|
||||
<?php
|
||||
function onStart()
|
||||
{
|
||||
$this->addJs('assets/javascript/tooltips.js');
|
||||
}
|
||||
?>
|
||||
==
|
||||
<div class="social-icons">
|
||||
{% if not nosocial %}
|
||||
<a href="https://www.linkedin.com/in/jaywll/" data-toggle="tooltip" title="LinkedIn">
|
||||
<i class="fab fa-linkedin-in"></i>
|
||||
</a>
|
||||
<a href="https://twitter.com/jaywll" data-toggle="tooltip" title="Twitter">
|
||||
<i class="fab fa-twitter"></i>
|
||||
</a>
|
||||
<a href="https://www.instagram.com/jaywll/" data-toggle="tooltip" title="Instagram">
|
||||
<i class="fab fa-instagram"></i>
|
||||
</a>
|
||||
<a href="https://www.facebook.com/jaywll/" data-toggle="tooltip" title="Facebook">
|
||||
<i class="fab fa-facebook-f"></i>
|
||||
</a>
|
||||
<a href="https://jaywll.wordpress.com/category/blog/" data-toggle="tooltip" title="Wordpress">
|
||||
<i class="fab fa-wordpress-simple"></i>
|
||||
</a>
|
||||
<a href="https://foursquare.com/jaywll" data-toggle="tooltip" title="Foursquare">
|
||||
<i class="fab fa-foursquare"></i>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if not nocode %}
|
||||
<a href="https://glitch.com/@JayWll" data-toggle="tooltip" title="Glitch">
|
||||
<i class="fab fa-node-js"></i>
|
||||
</a>
|
||||
<a href="https://github.com/JayWll" data-toggle="tooltip" title="GitHub">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
<a href="https://gitlab.com/jaywll" data-toggle="tooltip" title="GitLab">
|
||||
<i class="fab fa-gitlab"></i>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if not nocontact %}
|
||||
<a href="/contact" data-toggle="tooltip" title="Contact Me">
|
||||
<i class="fas fa-envelope"></i>
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user