Skip to content

Commit

Permalink
Fixed Meta 3
Browse files Browse the repository at this point in the history
  • Loading branch information
acmoune committed May 18, 2024
1 parent 77f7ce0 commit 9d2eaac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/OsanWebsite.Web/Pages/Event.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
<meta property="og:image:height" content="630" />

<meta property="og:title" content="@Model.Event.Title" />
<meta property="og:url" content=@($"{Environment.GetEnvironmentVariable("SITE_BASE")}{Model.Event.GetUrl()}") />
<meta property="og:url" content="@($"{Environment.GetEnvironmentVariable("SITE_BASE")}{Model.Event.GetUrl()}")" />
<meta property="og:description" content="@Model.Event.Description" />
<meta property="og:type" content="article" />
<meta property="og:locale" content="fr_FR" />
<meta property="og:site_name" content="osancave.com" />
<meta property="og:image" content=@($"{Model.Event.GetImageUrl()}") />
<meta property="og:image" content="@($"{Model.Event.GetImageUrl()}")" />
}

<div class="news-container" style="margin-top:0px;">
Expand Down Expand Up @@ -77,7 +77,7 @@
<br />

<div style="font-size: 8pt !important;">
<div class="fb-comments" data-href=@($"{Environment.GetEnvironmentVariable("SITE_BASE")}{@Model.Event.GetUrl()}") data-width="100%" data-numposts="10" data-colorscheme="dark"></div>
<div class="fb-comments" data-href="@($"{Environment.GetEnvironmentVariable("SITE_BASE")}{@Model.Event.GetUrl()}")" data-width="100%" data-numposts="10" data-colorscheme="dark"></div>
</div>

<br />
2 changes: 1 addition & 1 deletion src/OsanWebsite.Web/Pages/Spot.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<br />

<div>
<div class="fb-comments" data-href=@($"{Environment.GetEnvironmentVariable("SITE_BASE")}{@Model.Spot.GetUrl()}") data-width="100%" data-numposts="10" data-colorscheme="dark"></div>
<div class="fb-comments" data-href="@($"{Environment.GetEnvironmentVariable("SITE_BASE")}{@Model.Spot.GetUrl()}")" data-width="100%" data-numposts="10" data-colorscheme="dark"></div>
</div>

<br />

0 comments on commit 9d2eaac

Please sign in to comment.