@php
$siteSeoTitle = $tenantSiteSettings?->effectiveSeoTitle() ?: ($tenantSiteSettings?->effectiveSiteName() ?? 'qpost');
$siteSeoDescription = $tenantSiteSettings?->effectiveSeoDescription() ?: ($tenantSiteSettings?->site_description ?? 'qpost');
$siteSeoKeywords = $tenantSiteSettings?->effectiveSeoKeywords() ?: '';
$siteSeoCanonicalUrl = rtrim(tenant_canonical_url(), '/') . '/';
$siteSeoOgTitle = $tenantSiteSettings?->effectiveSeoOgTitle() ?: $siteSeoTitle;
$siteSeoOgDescription = $tenantSiteSettings?->effectiveSeoOgDescription() ?: $siteSeoDescription;
$siteSeoOgImage = $tenantSiteSettings?->effectiveSeoOgImageUrl() ?: '';
@endphp
@extends('tenant.layouts.app')
@section('title', $pageTitle ?? tenant_home_title($tenantSiteSettings))
@section('meta-description', $siteSeoDescription)
@if ($siteSeoKeywords !== '')
@section('meta-keywords', $siteSeoKeywords)
@endif
@section('canonical-url', $siteSeoCanonicalUrl)
@section('og-title', $siteSeoOgTitle)
@section('og-description', $siteSeoOgDescription)
@if ($siteSeoOgImage !== '')
@section('og-image', $siteSeoOgImage)
@endif
@section('og-type', 'website')
@section('content')
@if ($homePost)
메인 페이지 콘텐츠가 아직 없습니다.