Use site store for title and social metas

This commit is contained in:
2020-03-03 20:39:09 +01:00
parent e98452673e
commit ed1ff95eb4
5 changed files with 12 additions and 11 deletions

View File

@@ -92,12 +92,12 @@
</script>
<svelte:head>
<title>Houses Of Beautiful houses of {location.name}, {location.country.name}</title>
<meta name="description" content="Houses Of {location.name} {location.description}">
<title>{$site.seo_name} Beautiful houses of {location.name}, {location.country.name}</title>
<meta name="description" content="{$site.seo_name} {location.name} {location.description}">
<SocialMetas
url="https://housesof.world/location/{location.country.slug}/{location.slug}"
title="Houses Of Beautiful houses of {location.name}, {location.country.name}"
description="Houses Of {location.name} {location.description}"
title="{$site.seo_name} Beautiful houses of {location.name}, {location.country.name}"
description="{$site.seo_name} {location.name} {location.description}"
image={latestPhoto ? fn.getThumbnail(latestPhoto.image.private_hash, 1200, 630) : null}
/>
</svelte:head>