头部标题显示简化,必须要使用 avatar

This commit is contained in:
Skywt2003 2021-09-28 20:44:22 +08:00
parent 42c077a99d
commit 8285ad021d
2 changed files with 2 additions and 12 deletions

View File

@ -91,17 +91,12 @@
<header id="header" class="clearfix mt-5 mb-4"> <header id="header" class="clearfix mt-5 mb-4">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="site-name col"> <div class="col">
<?php if ($this->options->logoUrl): ?>
<div class="text-center"> <div class="text-center">
<img src="<?php $this->options->logoUrl() ?>" class="site-avatar shadow rounded-circle mx-auto d-block" alt="<?php $this->options->title() ?>" width=128 height=128> <img src="<?php $this->options->logoUrl() ?>" class="site-avatar shadow rounded-circle mx-auto d-block" alt="<?php $this->options->title() ?>" width=128 height=128>
<h2 class="mt-3 font-weight-bold text-default"><?php $this->options->title() ?></h2> <h2 class="mt-3 font-weight-bold text-default"><?php $this->options->title() ?></h2>
<p class="description"><?php $this->options->description() ?></p> <p class="description"><?php $this->options->description() ?></p>
</div> </div>
<?php else: ?>
<a id="logo" href="<?php $this->options->siteUrl(); ?>"><?php $this->options->title() ?></a>
<p class="description text-gray"><?php $this->options->description() ?></p>
<?php endif; ?>
</div> </div>
</div><!-- end .row --> </div><!-- end .row -->
</div> </div>

View File

@ -84,17 +84,12 @@ $this->need('functions.php'); // 不知道为啥,似乎模版页面不会自
<header id="header" class="clearfix mb-4"> <header id="header" class="clearfix mb-4">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="site-name col"> <div class="col">
<?php if ($this->options->logoUrl): ?>
<div class="text-center"> <div class="text-center">
<img src="<?php $this->options->logoUrl() ?>" class="site-avatar shadow rounded-circle mx-auto d-block" alt="<?php $this->options->title() ?>" width=128 height=128> <img src="<?php $this->options->logoUrl() ?>" class="site-avatar shadow rounded-circle mx-auto d-block" alt="<?php $this->options->title() ?>" width=128 height=128>
<h2 class="mt-3 font-weight-bold text-default"><?php $this->options->title() ?></h2> <h2 class="mt-3 font-weight-bold text-default"><?php $this->options->title() ?></h2>
<p class="description"><?php $this->options->description() ?></p> <p class="description"><?php $this->options->description() ?></p>
</div> </div>
<?php else: ?>
<a id="logo" href="<?php $this->options->siteUrl(); ?>"><?php $this->options->title() ?></a>
<p class="description text-gray"><?php $this->options->description() ?></p>
<?php endif; ?>
</div> </div>
</div><!-- end .row --> </div><!-- end .row -->
</div> </div>