diff --git a/resources/views/vendor/hyde/components/article-excerpt.blade.php b/resources/views/vendor/hyde/components/article-excerpt.blade.php new file mode 100644 index 0000000..585f061 --- /dev/null +++ b/resources/views/vendor/hyde/components/article-excerpt.blade.php @@ -0,0 +1,46 @@ +@php /** @var \Hyde\Pages\MarkdownPost $post */ @endphp +
+ + @if(Hyde::hasSiteUrl()) + + @endif + +
+ +

+ {{ $post->data('title') ?? $post->title }} +

+
+
+ + + + @if($post->data('description') !== null) +
+

+ {{ $post->data('description') }} +

+
+ @endisset + + +
\ No newline at end of file diff --git a/resources/views/vendor/hyde/components/blog-post-feed.blade.php b/resources/views/vendor/hyde/components/blog-post-feed.blade.php new file mode 100644 index 0000000..6276589 --- /dev/null +++ b/resources/views/vendor/hyde/components/blog-post-feed.blade.php @@ -0,0 +1,3 @@ +@foreach(MarkdownPost::getLatestPosts() as $post) + @include('hyde::components.article-excerpt') +@endforeach \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/breadcrumbs.blade.php b/resources/views/vendor/hyde/components/breadcrumbs.blade.php new file mode 100644 index 0000000..b3d1cc7 --- /dev/null +++ b/resources/views/vendor/hyde/components/breadcrumbs.blade.php @@ -0,0 +1,16 @@ +@if (count($breadcrumbs) > 1) + +@endif \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/documentation-article.blade.php b/resources/views/vendor/hyde/components/docs/documentation-article.blade.php new file mode 100644 index 0000000..1bacc9e --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/documentation-article.blade.php @@ -0,0 +1,20 @@ +@php + $document = \Hyde\Framework\Features\Documentation\SemanticDocumentationArticle::make($page); +@endphp + +
$document->hasTorchlight()])> + @yield('content') + +
+ {{ $document->renderHeader() }} +
+
+ {{ $document->renderBody() }} +
+ +
\ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/edit-source-button.blade.php b/resources/views/vendor/hyde/components/docs/edit-source-button.blade.php new file mode 100644 index 0000000..564e7c3 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/edit-source-button.blade.php @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/mobile-navigation.blade.php b/resources/views/vendor/hyde/components/docs/mobile-navigation.blade.php new file mode 100644 index 0000000..a4a3ae2 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/mobile-navigation.blade.php @@ -0,0 +1,19 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/search-input.blade.php b/resources/views/vendor/hyde/components/docs/search-input.blade.php new file mode 100644 index 0000000..55ba204 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/search-input.blade.php @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/search-scripts.blade.php b/resources/views/vendor/hyde/components/docs/search-scripts.blade.php new file mode 100644 index 0000000..0d38122 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/search-scripts.blade.php @@ -0,0 +1,9 @@ + + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/search-widget.blade.php b/resources/views/vendor/hyde/components/docs/search-widget.blade.php new file mode 100644 index 0000000..b44d813 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/search-widget.blade.php @@ -0,0 +1,53 @@ + + + + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar-backdrop.blade.php b/resources/views/vendor/hyde/components/docs/sidebar-backdrop.blade.php new file mode 100644 index 0000000..62255c8 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar-backdrop.blade.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar-brand.blade.php b/resources/views/vendor/hyde/components/docs/sidebar-brand.blade.php new file mode 100644 index 0000000..ad693a8 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar-brand.blade.php @@ -0,0 +1,12 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar-footer-text.blade.php b/resources/views/vendor/hyde/components/docs/sidebar-footer-text.blade.php new file mode 100644 index 0000000..6b49ca3 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar-footer-text.blade.php @@ -0,0 +1,7 @@ +

+ @if(is_bool(config('docs.sidebar.footer', true))) + Back to home page + @else + {{ Hyde::markdown(config('docs.sidebar.footer')) }} + @endif +

\ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar-group-toggle-button.blade.php b/resources/views/vendor/hyde/components/docs/sidebar-group-toggle-button.blade.php new file mode 100644 index 0000000..545fca5 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar-group-toggle-button.blade.php @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar-item.blade.php b/resources/views/vendor/hyde/components/docs/sidebar-item.blade.php new file mode 100644 index 0000000..a6da983 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar-item.blade.php @@ -0,0 +1,27 @@ +@php /** @var \Hyde\Framework\Features\Navigation\NavItem $item */ @endphp +@props(['grouped' => false]) +
  • $item->isCurrent() + ]) role="listitem"> + @if($item->isCurrent()) + + {{ $item->label }} + + + @if(config('docs.table_of_contents.enabled', true)) + Table of contents + {!! ($page->getTableOfContents()) !!} + @endif + @else + + {{ $item->label }} + + @endif +
  • \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar-items.blade.php b/resources/views/vendor/hyde/components/docs/sidebar-items.blade.php new file mode 100644 index 0000000..4c26062 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar-items.blade.php @@ -0,0 +1,27 @@ +@php /** @var \Hyde\Framework\Features\Navigation\DocumentationSidebar $sidebar */ @endphp +@if(! $sidebar->hasGroups()) + +@else + +@endif \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar-toggle-button.blade.php b/resources/views/vendor/hyde/components/docs/sidebar-toggle-button.blade.php new file mode 100644 index 0000000..addcf44 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar-toggle-button.blade.php @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/docs/sidebar.blade.php b/resources/views/vendor/hyde/components/docs/sidebar.blade.php new file mode 100644 index 0000000..04b9857 --- /dev/null +++ b/resources/views/vendor/hyde/components/docs/sidebar.blade.php @@ -0,0 +1,15 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/filepath-label.blade.php b/resources/views/vendor/hyde/components/filepath-label.blade.php new file mode 100644 index 0000000..ba7dcac --- /dev/null +++ b/resources/views/vendor/hyde/components/filepath-label.blade.php @@ -0,0 +1 @@ +Filepath: {{ $path }} \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/link.blade.php b/resources/views/vendor/hyde/components/link.blade.php new file mode 100644 index 0000000..3ce1c51 --- /dev/null +++ b/resources/views/vendor/hyde/components/link.blade.php @@ -0,0 +1 @@ +merge(['href' => $href]) }}>{!! $slot !!} \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/navigation/dropdown.blade.php b/resources/views/vendor/hyde/components/navigation/dropdown.blade.php new file mode 100644 index 0000000..52d03fc --- /dev/null +++ b/resources/views/vendor/hyde/components/navigation/dropdown.blade.php @@ -0,0 +1,20 @@ + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/navigation/navigation-brand.blade.php b/resources/views/vendor/hyde/components/navigation/navigation-brand.blade.php new file mode 100644 index 0000000..4fd5045 --- /dev/null +++ b/resources/views/vendor/hyde/components/navigation/navigation-brand.blade.php @@ -0,0 +1,3 @@ + + {{ config('hyde.name', 'HydePHP') }} + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/navigation/navigation-link.blade.php b/resources/views/vendor/hyde/components/navigation/navigation-link.blade.php new file mode 100644 index 0000000..cfad8bd --- /dev/null +++ b/resources/views/vendor/hyde/components/navigation/navigation-link.blade.php @@ -0,0 +1,4 @@ +isCurrent() ? 'aria-current="page"' : '' !!} @class([ + 'block my-2 md:my-0 md:inline-block py-1 text-gray-700 hover:text-gray-900 dark:text-gray-100', + 'border-l-4 border-indigo-500 md:border-none font-medium -ml-6 pl-5 md:ml-0 md:pl-0 bg-gray-100 dark:bg-gray-800 md:bg-transparent dark:md:bg-transparent' => $item->isCurrent() +])>{{ $item->label }} \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/navigation/theme-toggle-button.blade.php b/resources/views/vendor/hyde/components/navigation/theme-toggle-button.blade.php new file mode 100644 index 0000000..28433f2 --- /dev/null +++ b/resources/views/vendor/hyde/components/navigation/theme-toggle-button.blade.php @@ -0,0 +1,7 @@ +@if(Hyde::hasFeature('darkmode')) + +@endif \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/pagination-navigation.blade.php b/resources/views/vendor/hyde/components/pagination-navigation.blade.php new file mode 100644 index 0000000..2f06030 --- /dev/null +++ b/resources/views/vendor/hyde/components/pagination-navigation.blade.php @@ -0,0 +1,24 @@ +@php /** @var \Hyde\Support\Paginator $paginator */ @endphp + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/post/article.blade.php b/resources/views/vendor/hyde/components/post/article.blade.php new file mode 100644 index 0000000..b448192 --- /dev/null +++ b/resources/views/vendor/hyde/components/post/article.blade.php @@ -0,0 +1,22 @@ +
    Features::hasTorchlight()])> + + @if($page->getCanonicalUrl() !== null) + + @endif + +
    +

    {{ $page->title }}

    +
    + @includeWhen(isset($page->date), 'hyde::components.post.date') + @includeWhen(isset($page->author), 'hyde::components.post.author') + @includeWhen(isset($page->category), 'hyde::components.post.category') +
    +
    + @includeWhen(isset($page->image), 'hyde::components.post.image') +
    + {{ $content }} +
    + End of article +
    \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/post/author.blade.php b/resources/views/vendor/hyde/components/post/author.blade.php new file mode 100644 index 0000000..8dea6c0 --- /dev/null +++ b/resources/views/vendor/hyde/components/post/author.blade.php @@ -0,0 +1,10 @@ +by author + \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/post/category.blade.php b/resources/views/vendor/hyde/components/post/category.blade.php new file mode 100644 index 0000000..6d52219 --- /dev/null +++ b/resources/views/vendor/hyde/components/post/category.blade.php @@ -0,0 +1 @@ +in the category "{{ $page->category }}" \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/post/date.blade.php b/resources/views/vendor/hyde/components/post/date.blade.php new file mode 100644 index 0000000..90d293b --- /dev/null +++ b/resources/views/vendor/hyde/components/post/date.blade.php @@ -0,0 +1 @@ +Posted \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/post/description.blade.php b/resources/views/vendor/hyde/components/post/description.blade.php new file mode 100644 index 0000000..9248e5d --- /dev/null +++ b/resources/views/vendor/hyde/components/post/description.blade.php @@ -0,0 +1,3 @@ +

    + {{ $page->matter['description'] }} +

    \ No newline at end of file diff --git a/resources/views/vendor/hyde/components/skip-to-content-button.blade.php b/resources/views/vendor/hyde/components/skip-to-content-button.blade.php new file mode 100644 index 0000000..1a0ee6c --- /dev/null +++ b/resources/views/vendor/hyde/components/skip-to-content-button.blade.php @@ -0,0 +1 @@ +Skip to content \ No newline at end of file