Skip to content

Commit

Permalink
Make social metadata image link a full URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-carroll committed Jun 2, 2024
1 parent 66f73d7 commit 1eff452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/_includes/layouts/post.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<meta property="og:type" content="website">
<meta property="og:title" content="{{ title }} | Blog | Flutter Bounty Hunters">
<meta property="og:description" content="{{ description }}">
<meta property="og:image" content="{{ headerImageUrl }}">
<meta property="og:image" content="https://blog.flutterbountyhunters.com{{ headerImageUrl }}">
<meta property="og:url" content="https://blog.flutterbountyhunters.com/{{ url }}">

<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ title }} | Blog | Flutter Bounty Hunters">
<meta name="twitter:description" content="{{ description }}">
<meta name="twitter:image" content="{{ headerImageUrl }}">
<meta name="twitter:image" content="https://blog.flutterbountyhunters.com{{ headerImageUrl }}">
<meta name="twitter:site" content="@FlutterBounties">

{{ components.bootstrap() }}
Expand Down

0 comments on commit 1eff452

Please sign in to comment.