-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
43 additions
and
28 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 8 additions & 6 deletions
14
site/web/app/themes/nynaeve/resources/views/partials/content-page.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
@php(the_content()) | ||
<div class="container mx-auto max-w-5xl my-16"> | ||
@php(the_content()) | ||
|
||
@if ($pagination) | ||
<nav class="page-nav" aria-label="Page"> | ||
{!! $pagination !!} | ||
</nav> | ||
@endif | ||
@if ($pagination) | ||
<nav class="page-nav" aria-label="Page"> | ||
{!! $pagination !!} | ||
</nav> | ||
@endif | ||
</div> |
44 changes: 26 additions & 18 deletions
44
site/web/app/themes/nynaeve/resources/views/partials/content-single.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
<article @php(post_class('h-entry container mx-auto'))> | ||
<header> | ||
<h1 class="p-name font-open-sans font-semibold text-2xl text-black mb-8 antialiased"> | ||
{!! $title !!} | ||
</h1> | ||
<article @php(post_class('h-entry container mx-auto max-w-5xl'))> | ||
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> | ||
<div class="lg:col-span-2"> | ||
<header> | ||
<h1 class="p-name font-open-sans font-semibold text-2xl text-black mb-8 antialiased mt-10"> | ||
{!! $title !!} | ||
</h1> | ||
|
||
@include('partials.entry-meta') | ||
</header> | ||
@include('partials.entry-meta') | ||
</header> | ||
|
||
<div class="e-content"> | ||
@php(the_content()) | ||
</div> | ||
<div class="e-content mt-3"> | ||
@php(the_content()) | ||
</div> | ||
|
||
@if ($pagination) | ||
<footer> | ||
<nav class="page-nav" aria-label="Page"> | ||
{!! $pagination !!} | ||
</nav> | ||
</footer> | ||
@endif | ||
|
||
@if ($pagination) | ||
<footer> | ||
<nav class="page-nav" aria-label="Page"> | ||
{!! $pagination !!} | ||
</nav> | ||
</footer> | ||
@endif | ||
@php(comments_template()) | ||
</div> | ||
|
||
@php(comments_template()) | ||
<div class="lg:col-span-1 mt-10"> | ||
@include('sections.sidebar') | ||
</div> | ||
</div> | ||
</article> |
9 changes: 7 additions & 2 deletions
9
site/web/app/themes/nynaeve/resources/views/partials/page-header.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
<div class="page-header"> | ||
<h1>{!! $title !!}</h1> | ||
<div class="page-header bg-neutral-900 py-8"> | ||
<div class="container mx-auto max-w-5xl text-center"> | ||
<h1 class="text-white uppercase font-bold text-3xl mt-6 pb-2 inline-block"> | ||
{!! $title !!} | ||
<div class="border-b-4 border-blue-600 w-[30%] mx-auto mt-2"></div> | ||
</h1> | ||
</div> | ||
</div> |