Change metadata "filters" to the OR signs they were supposed to be
Was using `|` instead of `||` :P
This commit is contained in:
parent
8bae6ba614
commit
b602cea6a5
1 changed files with 2 additions and 2 deletions
|
@ -7,13 +7,13 @@
|
||||||
<h1 class="site-title">
|
<h1 class="site-title">
|
||||||
<img v-if="$static.metadata.ghost.logo != ''" class="site-logo"
|
<img v-if="$static.metadata.ghost.logo != ''" class="site-logo"
|
||||||
:src="$static.metadata.ghost.logo"
|
:src="$static.metadata.ghost.logo"
|
||||||
:alt="$static.metadata.siteTitle|$static.metadata.ghost.title" />
|
:alt="$static.metadata.siteTitle||$static.metadata.ghost.title" />
|
||||||
<p v-if="$static.metadata.ghost.logo === ''">
|
<p v-if="$static.metadata.ghost.logo === ''">
|
||||||
{{ $static.metadata.title }}
|
{{ $static.metadata.title }}
|
||||||
</p>
|
</p>
|
||||||
</h1>
|
</h1>
|
||||||
<h2 class="site-description">
|
<h2 class="site-description">
|
||||||
{{ $static.metadata.siteDescription|$static.metadata.ghost.description}}
|
{{ $static.metadata.siteDescription||$static.metadata.ghost.description}}
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
<Navbar :logo=false />
|
<Navbar :logo=false />
|
||||||
|
|
Loading…
Reference in a new issue