summaryrefslogtreecommitdiff
path: root/templates/macros.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/macros.html')
-rw-r--r--templates/macros.html28
1 files changed, 4 insertions, 24 deletions
diff --git a/templates/macros.html b/templates/macros.html
index 9348956..6586184 100644
--- a/templates/macros.html
+++ b/templates/macros.html
@@ -15,7 +15,6 @@
{% macro footer() %}
<footer class="footer">
<p>&copy; {{ config.extra.username }}</p>
- <p>Ported to Zola with <span class="love">❤</span> by <a href="https://github.com/svavs">Silvano Sallese</a> (original by <a href="https://github.com/nrandecker">Nathan Randecker</a>)</p>
</footer>
<script src="//cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="{{ config.base_url ~ "/js/sweet-scroll.min.js" }}"></script>
@@ -30,33 +29,14 @@
<span class="site-description">{{ config.extra.user_title | linebreaksbr | safe }}</span>
</h1>
<div class="header-icons">
- <a aria-label="Send email" href="#"><i class="icon fa fa-envelope"></i></a>
- <a aria-label="My Twitter" target="_blank" href="#"><i class="icon fa fa-twitter" aria-hidden="true"></i></a>
- <a aria-label="My Google Plus" target="_blank" href="#"><i class="icon fa fa-google-plus" aria-hidden="true"></i></a>
- <a aria-label="My Github" target="_blank" href="#"><i class="icon fa fa-github-alt" aria-hidden="true"></i></a>
+ <a aria-label="Send email" href="mailto:maxpung@closedcircuitconsulting.com"><i class="icon fa fa-envelope"></i></a>
+ <a aria-label="Our git" target="_blank" href="https://git.closedcircuitconsulting.com"><i class="icon fa fa-git-square" aria-hidden="true"></i></a>
</div>
<div class="header-links">
- <a class="link" href="#about" data-scroll>About Me</a>
- <a class="link" href="#projects" data-scroll>Projects</a>
+ <a class="link" href="#about" data-scroll>Expertise</a>
+ <a class="link" href="#projects" data-scroll>Experience</a>
</div>
</div>
<a class="down" href="#about" data-scroll><i class="icon fa fa-chevron-down" aria-hidden="true"></i></a>
</div>
{% endmacro header %}
-
-{% macro google_analytics() %}
-<!-- Google Analytics -->
-{% if config.extra.google_analytics %}
-<script>
-var dnt = navigator.doNotTrack || window.doNotTrack || navigator.msDoNotTrack;
-if (dnt != "1" && dnt != "yes") {
-(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-ga('create', '{{ config.extra.google_analytics.id }}', 'auto');
-ga('send', 'pageview');
-}
-</script>
-{% endif %}
-{% endmacro google_analytics %}