Compare commits

...

7 Commits

Author SHA1 Message Date
Shahar Naveh
391621e54b
Merge ff565f207773c8f2803a6552c657af51f7e9ab30 into 2863a3a02908326d0ddd5612fded2b3e66f55b7f 2024-08-18 14:52:21 +01:00
Xin
2863a3a029
fix: remove deprecated site.GoogleAnalytics (#438)
Some checks are pending
Deploy Hugo site to Pages / build (push) Waiting to run
Deploy Hugo site to Pages / deploy (push) Blocked by required conditions
* fix: remove deprecated site.GoogleAnalytics

* ci: bump netlify Hugo version
2024-08-18 14:41:40 +01:00
Erik Skopp
852a07b15e
fix: remove deprecated google analytics reference in head.html (#435)
ERROR deprecated: .Site.GoogleAnalytics was deprecated in Hugo v0.120.0 and will be removed in Hugo 0.133.0. Use .Site.Config.Services.GoogleAnalytics.ID instead.
2024-08-18 12:31:50 +01:00
Shahar Naveh
ff565f2077
Remove markdown syntax highlight 2024-06-28 15:45:00 +03:00
Shahar Naveh
33dbd4561c
Escape PDF shortcode examples 2024-06-28 15:39:34 +03:00
Shahar Naveh
2355432542
Update pdf.md 2024-06-28 15:36:43 +03:00
Shahar Naveh
24a2734ee5
Create pdf.md 2024-06-28 14:40:22 +03:00
4 changed files with 24 additions and 14 deletions

View File

@ -0,0 +1,17 @@
---
title: Pdf
---
## Example
{{< pdf "https://dagrs.berkeley.edu/sites/default/files/2020-01/sample.pdf" >}}
## Usage
### With URL
```
{{</* pdf "https://dagrs.berkeley.edu/sites/default/files/2020-01/sample.pdf" */>}}
```
### With Path
```
{{</* pdf "path/to/your/pdf/file.pdf" */>}}
```

View File

@ -1,10 +1,4 @@
{{/* site.GoogleAnalytics is deprecated in Hugo v0.120.0 */}}
{{/* it will be removed in a future version */}}
{{- $gtagID := "" -}}
{{- with site.GoogleAnalytics -}}{{ $gtagID = . }}{{- end -}}
{{- with site.Config.Services.GoogleAnalytics.ID -}}{{ $gtagID = . }}{{- end -}}
{{- with $gtagID }}
{{- with site.Config.Services.GoogleAnalytics.ID }}
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
<script>

View File

@ -30,12 +30,11 @@
{{ partialCached "head-css.html" . }}
<!-- Google Analytics -->
{{- if and (eq hugo.Environment "production") (or .Site.GoogleAnalytics .Site.Config.Services.GoogleAnalytics.ID) }}
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
{{ partial "google-analytics.html" . }}
{{- end }}
<!-- Google Analytics -->
{{- if and (eq hugo.Environment "production") .Site.Config.Services.GoogleAnalytics.ID }}
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
{{ partial "google-analytics.html" . }}
{{- end }}
<script>
/* Initialize light/dark mode */

View File

@ -7,6 +7,6 @@ command = "cd exampleSite && hugo --gc --minify --themesDir ../.. -b ${DEPLOY_PR
ignore = "false"
[build.environment]
HUGO_VERSION = "0.126.1"
HUGO_VERSION = "0.132.2"
GO_VERSION = "1.22.3"
NODE_VERSION = "22.2.0"