Fix title styles
This commit is contained in:
parent
b576c17446
commit
e8f1d76cb7
|
@ -29,9 +29,6 @@
|
|||
article, article a {
|
||||
color: #172b4d;
|
||||
}
|
||||
.post-title:before {
|
||||
content:'#';
|
||||
}
|
||||
article{
|
||||
font-size: 1rem;
|
||||
font-weight: 300;
|
||||
|
|
4
page.php
4
page.php
|
@ -3,9 +3,7 @@
|
|||
|
||||
<div class="col mt-5" id="main" role="main">
|
||||
<article itemscope itemtype="http://schema.org/BlogPosting">
|
||||
<h1 class="font-weight-bold post-title" itemprop="name headline">
|
||||
<a itemprop="url" href="<?php $this->permalink() ?>"><?php $this->title() ?></a>
|
||||
</h1>
|
||||
<h1 class="font-weight-bold post-title" itemprop="name headline"><?php $this->title() ?></h1>
|
||||
<hr>
|
||||
<div class="post-content" itemprop="articleBody">
|
||||
<?php $this->content(); ?>
|
||||
|
|
4
post.php
4
post.php
|
@ -3,9 +3,7 @@
|
|||
|
||||
<div class="col mt-5" id="main" role="main">
|
||||
<article itemscope itemtype="http://schema.org/BlogPosting">
|
||||
<h1 class="font-weight-bold post-title" itemprop="name headline">
|
||||
<a itemprop="url" href="<?php $this->permalink() ?>"><?php $this->title() ?></a>
|
||||
</h1>
|
||||
<h1 class="font-weight-bold post-title" itemprop="name headline"><?php $this->title() ?></h1>
|
||||
<div>
|
||||
<i class="far fa-calendar-alt"></i> <time datetime="<?php $this->date('c'); ?>" itemprop="datePublished"><?php $this->date('Y-m-d D h:i a'); ?></time>
|
||||
<?php if ($this->user->hasLogin()): ?>
|
||||
|
|
Loading…
Reference in New Issue