Skip to content

Commit 191016f

Browse files
author
Brian Daub
committedMay 16, 2016
added analytics.html
1 parent 4acde20 commit 191016f

File tree

5 files changed

+35
-2
lines changed

5 files changed

+35
-2
lines changed
 

‎_includes/analytics.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<script>
2+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
6+
7+
ga('create', 'UA-41954948-2', 'auto');
8+
ga('send', 'pageview');
9+
10+
</script>

‎_includes/footer.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
<footer class="site-footer">
2-
<p>Designed and Coded by Brian Daub &copy; 2016</p>
2+
<div class="container">
3+
<p>Designed and Coded by Brian Daub &copy; 2016</p>
4+
<div class="github-logo">
5+
<span>Proudly hosted on</span>
6+
<img src="img/github-logo-white.png" alt="GitHub logo" />
7+
</div>
8+
</div>
39
</footer>

‎_sass/_footer.sass

+14-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,17 @@ footer
66
color: #fff
77

88
p
9-
padding-top: 15px
9+
float: left
10+
padding-top: 15px
11+
12+
13+
.github-logo
14+
float: right
15+
width: 20%
16+
margin-top: 10px
17+
18+
img
19+
height: auto
20+
width: 30%
21+
display: inline-block
22+

‎img/github-logo-white.png

3.71 KB
Loading

‎index.html

+4
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,9 @@
88
{% include work.html %}
99
{% include contact.html %}
1010
{% include footer.html %}
11+
{% include analytics.html %}
12+
13+
14+
1115

1216

0 commit comments

Comments
 (0)
Please sign in to comment.