Skip to content

Commit

Permalink
Add siteAuthor to config, tlint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Terrell committed Dec 6, 2018
1 parent a3bfa5c commit 44cb947
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions bootstrap.php
@@ -1,7 +1,5 @@
<?php

use TightenCo\Jigsaw\Jigsaw;

// @var $container \Illuminate\Container\Container
// @var $events \TightenCo\Jigsaw\Events\EventBus

Expand Down
1 change: 1 addition & 0 deletions config.php
Expand Up @@ -3,6 +3,7 @@
return [
'siteName' => 'Blog Starter Template',
'siteDescription' => 'Generate an elegant blog with Jigsaw',
'siteAuthor' => 'Author Name',
'title' => 'Blog powered by Jigsaw',
'baseUrl' => 'http://jigsaw-blog-skeleton.test/',
'production' => false,
Expand Down
2 changes: 1 addition & 1 deletion source/_layouts/post.blade.php
Expand Up @@ -8,7 +8,7 @@
@endpush

@section('body')
@if($page->cover_image)
@if ($page->cover_image)
<img src="{{ $page->cover_image }}" alt="{{ $page->title }} cover image" class="mb-2">
@endif

Expand Down
2 changes: 1 addition & 1 deletion source/_layouts/rss.blade.php
Expand Up @@ -6,7 +6,7 @@
<updated>{{ date(DATE_ATOM) }}</updated>
<id>{{ $page->getUrl() }}</id>
<author>
<name>{{ $page->siteName }}</name>
<name>{{ $page->siteAuthor }}</name>
</author>
@yield('entries')
</feed>

0 comments on commit 44cb947

Please sign in to comment.