diff options
author | C. Lente <7017340+clente@users.noreply.github.com> | 2023-03-04 15:32:37 -0300 |
---|---|---|
committer | C. Lente <7017340+clente@users.noreply.github.com> | 2023-03-04 15:32:37 -0300 |
commit | 8b4ac7a925ca870aeedb118702678100f262fb8a (patch) | |
tree | 632a4c0992742c805600af0c8af4c1b72e066ab7 | |
parent | 2f82fa99b73e6117b8e35cc501e68ccc371b3284 (diff) | |
download | hugo-bearcub-8b4ac7a925ca870aeedb118702678100f262fb8a.tar.gz hugo-bearcub-8b4ac7a925ca870aeedb118702678100f262fb8a.tar.bz2 |
Fix path to share image again
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | exampleSite/config.toml | 2 | ||||
-rw-r--r-- | exampleSite/content.pt/_index.md | 2 | ||||
-rw-r--r-- | exampleSite/content/_index.md | 2 | ||||
-rw-r--r-- | exampleSite/content/blog/_index.md | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -173,7 +173,7 @@ enableRobotsTXT = true # to your site. Ignored if `generateSocialCard = true`. For more information # about previews, see https://gohugo.io/templates/internal#twitter-cards and # https://gohugo.io/templates/internal#open-graph - images = ["images/share.webp"] + images = ["/hugo-bearcub/images/share.webp"] # This title is used as the site_name on the Hugo's internal opengraph # structured data template diff --git a/exampleSite/config.toml b/exampleSite/config.toml index d09f6a5..6dcaf75 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -51,7 +51,7 @@ enableRobotsTXT = true # to your site. Ignored if `generateSocialCard = true`. For more information # about previews, see https://gohugo.io/templates/internal#twitter-cards and # https://gohugo.io/templates/internal#open-graph - images = ["images/share.webp"] + images = ["/hugo-bearcub/images/share.webp"] # This title is used as the site_name on the Hugo's internal opengraph # structured data template diff --git a/exampleSite/content.pt/_index.md b/exampleSite/content.pt/_index.md index b40ca29..e22b426 100644 --- a/exampleSite/content.pt/_index.md +++ b/exampleSite/content.pt/_index.md @@ -1,7 +1,7 @@ --- title: "Início" menu: "main" -images: ["images/share.webp"] +images: ["/hugo-bearcub/images/share.webp"] weight: 1 --- diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md index bbae936..fe7c802 100644 --- a/exampleSite/content/_index.md +++ b/exampleSite/content/_index.md @@ -1,7 +1,7 @@ --- title: "Home" menu: "main" -images: ["images/share.webp"] +images: ["/hugo-bearcub/images/share.webp"] weight: 1 --- diff --git a/exampleSite/content/blog/_index.md b/exampleSite/content/blog/_index.md index 7402287..7752b36 100644 --- a/exampleSite/content/blog/_index.md +++ b/exampleSite/content/blog/_index.md @@ -1,6 +1,6 @@ --- title: "Blog" menu: "main" -images: ["images/share.webp"] +images: ["/hugo-bearcub/images/share.webp"] weight: 2 ---
\ No newline at end of file |