diff options
author | 2021-07-27 12:32:18 -0400 | |
---|---|---|
committer | 2021-07-27 12:32:18 -0400 | |
commit | 918e3831f5078e79c288c81d04481186dfefeec0 (patch) | |
tree | f46b743884e6f39385aaad9412bf0fb7407d0df5 /www/src/components/GoogleAnalytics.astro | |
parent | 365f3bd230cb4633b63a44d14fcf897512c7864b (diff) | |
download | astro-918e3831f5078e79c288c81d04481186dfefeec0.tar.gz astro-918e3831f5078e79c288c81d04481186dfefeec0.tar.zst astro-918e3831f5078e79c288c81d04481186dfefeec0.zip |
Add a release post on Astro 0.18 (#869)
* Add a release post on Astro 0.18
* Add a better description
* Add links to the post
* More attention grabbing intro
* Add additional links in the post
* Update www/src/pages/blog/astro-018.astro
Co-authored-by: Caleb Jasik <calebjasik@jasik.xyz>
* try using responsive images to improve lighthouse
* Adds an overview section in the intro
* freds edits
* Update a couple of images and minor edits
Co-authored-by: Caleb Jasik <calebjasik@jasik.xyz>
Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'www/src/components/GoogleAnalytics.astro')
-rw-r--r-- | www/src/components/GoogleAnalytics.astro | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/www/src/components/GoogleAnalytics.astro b/www/src/components/GoogleAnalytics.astro new file mode 100644 index 000000000..bdc8fedda --- /dev/null +++ b/www/src/components/GoogleAnalytics.astro @@ -0,0 +1,9 @@ +<!-- Global site tag (gtag.js) - Google Analytics --> +<script async src="https://www.googletagmanager.com/gtag/js?id=G-TEL60V1WM9"></script> +<script> + window.dataLayer = window.dataLayer || []; + function gtag(){dataLayer.push(arguments);} + gtag('js', new Date()); + + gtag('config', 'G-TEL60V1WM9'); +</script>
\ No newline at end of file |