mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #1000 from sharelatex/jel-meta-img-src
Handle image_src in metadata layout
This commit is contained in:
commit
b78f362c53
1 changed files with 6 additions and 0 deletions
|
@ -25,10 +25,16 @@
|
|||
|
||||
//- Image
|
||||
-if (metadata && metadata.image)
|
||||
//- from the CMS
|
||||
meta(itemprop="image", name="image", content=metadata.image.fields.file.url)
|
||||
-else if (metadata && metadata.image_src)
|
||||
//- pages with custom metadata images, metadata.image_src is the full image URL
|
||||
meta(itemprop="image", name="image", content=metadata.image_src)
|
||||
-else if (settings.overleaf)
|
||||
//- the default image for Overleaf
|
||||
meta(itemprop="image", name="image", content=buildImgPath('ol-brand/overleaf_og_logo.png'))
|
||||
-else
|
||||
//- the default image for ShareLaTeX
|
||||
meta(itemprop="image", name="image", content='/touch-icon-192x192.png')
|
||||
|
||||
//- Keywords
|
||||
|
|
Loading…
Reference in a new issue