diff --git a/layouts/index.html b/layouts/index.html
index 434b4f3..4a5126c 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -26,4 +26,9 @@
{{- end }}
{{ define "footer" -}}
-{{- end }}
\ No newline at end of file
+{{ if .Site.GoogleAnalytics -}}
+
+ {{- template "_internal/google_analytics_async.html" . -}}
+{{- end }}
+{{ partial "footer/font-awesome-js.html" . }}
+{{- end }}
diff --git a/layouts/partials/portfolio/footer.html b/layouts/partials/portfolio/footer.html
new file mode 100644
index 0000000..02a8bdc
--- /dev/null
+++ b/layouts/partials/portfolio/footer.html
@@ -0,0 +1,5 @@
+{{ if .Site.GoogleAnalytics -}}
+
+ {{- template "_internal/google_analytics_async.html" . -}}
+{{- end }}
+{{ partial "footer/font-awesome-js.html" . }}
diff --git a/layouts/portfolio/list.html b/layouts/portfolio/list.html
index 4214f54..f67fd3e 100644
--- a/layouts/portfolio/list.html
+++ b/layouts/portfolio/list.html
@@ -7,5 +7,5 @@
{{- end -}}
{{ define "footer" -}}
- {{ partial "footer.html" . }}
+ {{ partial "portfolio/footer.html" . }}
{{- end }}