Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Fix #321 image paths in social meta tags [v0.4]
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasHassing committed Dec 23, 2014
1 parent acccc03 commit ab18e14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/core/server/views/layout.server.view.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
<meta property="og:title" content="{{title}}">
<meta property="og:description" content="{{description}}">
<meta property="og:url" content="{{url}}">
<meta property="og:image" content="/img/brand/logo.png">
<meta property="og:image" content="{{url}}modules/core/img/brand/logo.png">
<meta property="og:type" content="website">

<!-- Twitter META -->
<meta name="twitter:title" content="{{title}}">
<meta name="twitter:description" content="{{description}}">
<meta name="twitter:url" content="{{url}}">
<meta name="twitter:image" content="/img/brand/logo.png">
<meta name="twitter:image" content="{{url}}modules/core/img/brand/logo.png">

<!-- Fav Icon -->
<link href="/modules/core/img/brand/favicon.ico" rel="shortcut icon" type="image/x-icon">
Expand Down

0 comments on commit ab18e14

Please sign in to comment.