Compare commits

...

2 Commits

Author SHA1 Message Date
b0793486eb feat: google analytics 2025-10-23 19:33:48 +05:30
2bae3b820c feat: makefile 2025-10-23 19:33:36 +05:30
2 changed files with 21 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
BUILD_DIR := public
.PHONEY: serve build clean
serve:
hugo server -D
build:
hugo --minify
clean:
rm -r $(BUILD_DIR)

View File

@@ -0,0 +1,9 @@
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JFCYXHXCN1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JFCYXHXCN1');
</script>