mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 04:54:03 +00:00
Apply fixes from StyleCI
This commit is contained in:
parent
93c6361369
commit
05a7560160
1 changed files with 6 additions and 6 deletions
|
|
@ -7,7 +7,7 @@
|
||||||
<meta name="description" content="<?php echo e($page->description ?? $page->siteDescription); ?>">
|
<meta name="description" content="<?php echo e($page->description ?? $page->siteDescription); ?>">
|
||||||
|
|
||||||
<meta property="og:site_name" content="<?php echo e($page->siteName); ?>"/>
|
<meta property="og:site_name" content="<?php echo e($page->siteName); ?>"/>
|
||||||
<meta property="og:title" content="<?php echo e($page->title ? $page->title . ' | ' : ''); ?><?php echo e($page->siteName); ?>"/>
|
<meta property="og:title" content="<?php echo e($page->title ? $page->title.' | ' : ''); ?><?php echo e($page->siteName); ?>"/>
|
||||||
<meta property="og:description" content="<?php echo e($page->description ?? $page->siteDescription); ?>"/>
|
<meta property="og:description" content="<?php echo e($page->description ?? $page->siteDescription); ?>"/>
|
||||||
<meta property="og:url" content="<?php echo e($page->getUrl()); ?>"/>
|
<meta property="og:url" content="<?php echo e($page->getUrl()); ?>"/>
|
||||||
<meta property="og:image" content="/assets/img/logo.png"/>
|
<meta property="og:image" content="/assets/img/logo.png"/>
|
||||||
|
|
@ -16,25 +16,25 @@
|
||||||
<meta name="twitter:image:alt" content="<?php echo e($page->siteName); ?>">
|
<meta name="twitter:image:alt" content="<?php echo e($page->siteName); ?>">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
|
||||||
<?php if($page->docsearchApiKey && $page->docsearchIndexName): ?>
|
<?php if ($page->docsearchApiKey && $page->docsearchIndexName): ?>
|
||||||
<meta name="generator" content="tighten_jigsaw_doc">
|
<meta name="generator" content="tighten_jigsaw_doc">
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<title><?php echo e($page->siteName); ?><?php echo e($page->title ? ' | ' . $page->title : ''); ?></title>
|
<title><?php echo e($page->siteName); ?><?php echo e($page->title ? ' | '.$page->title : ''); ?></title>
|
||||||
|
|
||||||
<link rel="home" href="<?php echo e($page->baseUrl); ?>">
|
<link rel="home" href="<?php echo e($page->baseUrl); ?>">
|
||||||
<link rel="icon" href="/favicon.ico">
|
<link rel="icon" href="/favicon.ico">
|
||||||
|
|
||||||
<?php echo $__env->yieldPushContent('meta'); ?>
|
<?php echo $__env->yieldPushContent('meta'); ?>
|
||||||
|
|
||||||
<?php if($page->production): ?>
|
<?php if ($page->production): ?>
|
||||||
<!-- Insert analytics code here -->
|
<!-- Insert analytics code here -->
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,300i,400,400i,700,700i,800,800i" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,300i,400,400i,700,700i,800,800i" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="<?php echo e(mix('css/main.css', 'assets/build')); ?>">
|
<link rel="stylesheet" href="<?php echo e(mix('css/main.css', 'assets/build')); ?>">
|
||||||
|
|
||||||
<?php if($page->docsearchApiKey && $page->docsearchIndexName): ?>
|
<?php if ($page->docsearchApiKey && $page->docsearchIndexName): ?>
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</head>
|
</head>
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex flex-1 justify-end items-center text-right md:pl-10">
|
<div class="flex flex-1 justify-end items-center text-right md:pl-10">
|
||||||
<?php if($page->docsearchApiKey && $page->docsearchIndexName): ?>
|
<?php if ($page->docsearchApiKey && $page->docsearchIndexName): ?>
|
||||||
<?php echo $__env->make('_nav.search-input', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
<?php echo $__env->make('_nav.search-input', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue