all repos — website @ e3378f7a3486ff06388777211fa760e251da540a

personal website hosted at prithu.xyz, built using hugo

change font to Inter and move ga to footer
Prithu Goswami prithugoswami524@gmail.com
Fri, 15 May 2020 13:37:59 +0530
commit

e3378f7a3486ff06388777211fa760e251da540a

parent

df573823e405fca9efde55d24eb315acd17b3c47

2 files changed, 12 insertions(+), 14 deletions(-)

jump to
M layouts/partials/footer.htmllayouts/partials/footer.html

@@ -1,9 +1,19 @@

+{{ if eq .Hugo.Environment "production" }} +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-165619342-1"></script> +<script> + window.dataLayer = window.dataLayer || []; + function gtag(){dataLayer.push(arguments);} + gtag('js', new Date()); + + gtag('config', 'UA-165619342-1'); +</script> +{{ end }} <footer> <p> &copy; Prithu Goswami 2020 &bull; <a href="mailto:prithugoswami524@gmail.com">Email me</a> &bull; <a href="https://github.com/prithugoswami/personal-website"> - View Source + View source </a> </p> </footer>
M layouts/partials/head.htmllayouts/partials/head.html

@@ -19,20 +19,8 @@ {{ end }}

<meta name="author" content="Prithu Goswami"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,700" rel="stylesheet"> - <link href="https://fonts.googleapis.com/css?family=Noto+Serif:400" rel="stylesheet"> - <link href="https://fonts.googleapis.com/css?family=Inter:200,400,900" rel="stylesheet"> + <link href="https://fonts.googleapis.com/css?family=Inter:400,700,900" rel="stylesheet"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/blog.css"> <link rel="icon" type="img/png" href="/img/favicon.png"> - {{ if eq .Hugo.Environment "production" }} - <script async src="https://www.googletagmanager.com/gtag/js?id=UA-165619342-1"></script> - <script> - window.dataLayer = window.dataLayer || []; - function gtag(){dataLayer.push(arguments);} - gtag('js', new Date()); - - gtag('config', 'UA-165619342-1'); - </script> - {{ end }} - </head>