diff --git a/.gitignore b/.gitignore index 51669198..c3123f17 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ +/node_modules +/vendor .env -node_modules phpunit.xml -vendor diff --git a/resources/views/vendor/feed/atom.blade.php b/resources/views/vendor/feed/atom.blade.php new file mode 100644 index 00000000..78bffe8f --- /dev/null +++ b/resources/views/vendor/feed/atom.blade.php @@ -0,0 +1,29 @@ +{!! '<'.'?'.'xml version="1.0" encoding="UTF-8" ?>' !!} +> + {!! $channel['title'] !!} + + + {{ $channel['link'] }} + + +@if (!empty($channel['logo'])) + {{ $channel['logo'] }} +@endif +@if (!empty($channel['icon'])) + {{ $channel['icon'] }} +@endif + {{ $channel['pubdate'] }} +@foreach($items as $item) + + + {{ $item['author'] }} + + <![CDATA[{!! $item['title'] !!}]]> + + {{ $item['link'] }} + + + {{ $item['pubdate'] }} + +@endforeach + diff --git a/resources/views/vendor/feed/rss.blade.php b/resources/views/vendor/feed/rss.blade.php new file mode 100644 index 00000000..812e9cd5 --- /dev/null +++ b/resources/views/vendor/feed/rss.blade.php @@ -0,0 +1,89 @@ +{!! '<'.'?'.'xml version="1.0" encoding="UTF-8" ?>' !!} +> + + {!! $channel['title'] !!} + {{ Request::url() }} + + + @if (!empty($channel['copyright'])) + {{ $channel['copyright'] }} + @endif + @if (!empty($channel['color'])) + {{ $channel['color'] }} + @endif + @if (!empty($channel['cover'])) + + @endif + @if (!empty($channel['icon'])) + {{ $channel['icon'] }} + @endif + @if (!empty($channel['logo'])) + {{ $channel['logo'] }} + + {{ $channel['logo'] }} + {{ $channel['title'] }} + {{ Request::url() }} + + @endif + @if (!empty($channel['related'])) + + @endif + @if (!empty($channel['ga'])) + + @endif + {{ $channel['lang'] }} + {{ $channel['pubdate'] }} + @foreach($items as $item) + + <![CDATA[{!! $item['title'] !!}]]> + @if (!empty($item['category'])) + {{ $item['category'] }} + @endif + {{ $item['link'] }} + {{ $item['link'] }} + + @if (!empty($item['content'])) + + @endif + {{ $item['author'] }} + {{ $item['pubdate'] }} + @if (!empty($item['enclosure'])) + $v) + {!! $k.'="'.$v.'" ' !!} + @endforeach + /> + @endif + @if (!empty($item['media:content'])) + $v) + {!! $k.'="'.$v.'" ' !!} + @endforeach + /> + @endif + @if (!empty($item['media:thumbnail'])) + $v) + {!! $k.'="'.$v.'" ' !!} + @endforeach + /> + @endif + @if (!empty($item['media:title'])) + {{ $item['media:title'] }} + @endif + @if (!empty($item['media:description'])) + {{ $item['media:description'] }} + @endif + @if (!empty($item['media:keywords'])) + {{ $item['media:title'] }} + @endif + @if (!empty($item['media:rating'])) + {{ $item['media:rating'] }} + @endif + @if (!empty($item['creativeCommons:license'])) + {{ $item['creativeCommons:license'] }} + @endif + + @endforeach + + diff --git a/resources/views/vendor/notifications/email-plain.blade.php b/resources/views/vendor/notifications/email-plain.blade.php new file mode 100644 index 00000000..acefa652 --- /dev/null +++ b/resources/views/vendor/notifications/email-plain.blade.php @@ -0,0 +1,22 @@ + + + + + + + + + + + 'margin: 0; padding: 0; width: 100%; background-color: #F2F4F6;', + 'email-wrapper' => 'width: 100%; margin: 0; padding: 0; background-color: #F2F4F6;', + + /* Masthead ----------------------- */ + + 'email-masthead' => 'padding: 25px 0; text-align: center;', + 'email-masthead_name' => 'font-size: 16px; font-weight: bold; color: #2F3133; text-decoration: none; text-shadow: 0 1px 0 white;', + + 'email-body' => 'width: 100%; margin: 0; padding: 0; border-top: 1px solid #EDEFF2; border-bottom: 1px solid #EDEFF2; background-color: #FFF;', + 'email-body_inner' => 'width: auto; max-width: 570px; margin: 0 auto; padding: 0;', + 'email-body_cell' => 'padding: 35px;', + + 'email-footer' => 'width: auto; max-width: 570px; margin: 0 auto; padding: 0; text-align: center;', + 'email-footer_cell' => 'color: #AEAEAE; padding: 35px; text-align: center;', + + /* Body ------------------------------ */ + + 'body_action' => 'width: 100%; margin: 30px auto; padding: 0; text-align: center;', + 'body_sub' => 'margin-top: 25px; padding-top: 25px; border-top: 1px solid #EDEFF2;', + + /* Type ------------------------------ */ + + 'anchor' => "color: {$theme_links};", + 'header-1' => 'margin-top: 0; color: #2F3133; font-size: 19px; font-weight: bold; text-align: left;', + 'paragraph' => 'margin-top: 0; color: #74787E; font-size: 16px; line-height: 1.5em;', + 'paragraph-sub' => 'margin-top: 0; color: #74787E; font-size: 12px; line-height: 1.5em;', + 'paragraph-center' => 'text-align: center;', + + /* Buttons ------------------------------ */ + + 'button' => 'display: block; display: inline-block; width: 200px; min-height: 20px; padding: 10px; + background-color: #3869D4; border-radius: 3px; color: #ffffff; font-size: 15px; line-height: 25px; + text-align: center; text-decoration: none; -webkit-text-size-adjust: none;', + + 'button--green' => "background-color: {$theme_greens};", + 'button--red' => "background-color: {$theme_reds};", + 'button--blue' => "background-color: {$theme_blues};", +]; +?> + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + {{ config('app.name') }} + +
+ + + + +
+ +

+ @if (! empty($greeting)) + {{ $greeting }} + @else + @if ($level == 'error') + Whoops! + @else + Hello! + @endif + @endif +

+ + + @foreach ($introLines as $line) +

+ {{ $line }} +

+ @endforeach + + + @if (isset($actionText)) + + + + +
+ + + + {{ $actionText }} + +
+ @endif + + + @foreach ($outroLines as $line) +

+ {{ $line }} +

+ @endforeach + + +

+ Regards,
{{ config('app.name') }} +

+ + + @if (isset($actionText)) + + + + +
+

+ If you’re having trouble clicking the "{{ $actionText }}" button, + copy and paste the URL below into your web browser: +

+ +

+ + {{ $actionUrl }} + +

+
+ @endif +
+
+ + + + +
+

+ © {{ date('Y') }} + {{ config('app.name') }}. + All rights reserved. +

+
+
+
+ + diff --git a/resources/views/vendor/pagination/bootstrap-4.blade.php b/resources/views/vendor/pagination/bootstrap-4.blade.php new file mode 100644 index 00000000..3f984557 --- /dev/null +++ b/resources/views/vendor/pagination/bootstrap-4.blade.php @@ -0,0 +1,36 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/default.blade.php b/resources/views/vendor/pagination/default.blade.php new file mode 100644 index 00000000..4e795ff4 --- /dev/null +++ b/resources/views/vendor/pagination/default.blade.php @@ -0,0 +1,36 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/simple-bootstrap-4.blade.php b/resources/views/vendor/pagination/simple-bootstrap-4.blade.php new file mode 100644 index 00000000..98653d31 --- /dev/null +++ b/resources/views/vendor/pagination/simple-bootstrap-4.blade.php @@ -0,0 +1,17 @@ +@if ($paginator->hasPages()) + +@endif diff --git a/resources/views/vendor/pagination/simple-default.blade.php b/resources/views/vendor/pagination/simple-default.blade.php new file mode 100644 index 00000000..cf53b897 --- /dev/null +++ b/resources/views/vendor/pagination/simple-default.blade.php @@ -0,0 +1,17 @@ +@if ($paginator->hasPages()) + +@endif