File tree 6 files changed +31
-7
lines changed
6 files changed +31
-7
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import php from 'highlight.js/lib/languages/php';
3
3
import shell from 'highlight.js/lib/languages/shell' ;
4
4
import bash from 'highlight.js/lib/languages/bash' ;
5
5
import json from 'highlight.js/lib/languages/json' ;
6
+ import diff from 'highlight.js/lib/languages/diff' ;
6
7
7
8
import 'alpinejs' ;
8
9
import { listen } from "quicklink" ;
@@ -16,6 +17,7 @@ hljs.registerLanguage('php', php);
16
17
hljs . registerLanguage ( 'shell' , shell ) ;
17
18
hljs . registerLanguage ( 'bash' , bash ) ;
18
19
hljs . registerLanguage ( 'json' , json ) ;
20
+ hljs . registerLanguage ( 'diff' , diff ) ;
19
21
hljs . configure ( {
20
22
classPrefix : 'hljs-'
21
23
} ) ;
Original file line number Diff line number Diff line change 9
9
@apply .text-blue-600 ;
10
10
11
11
& :hover {
12
- @apply .text-purple-800 ;
12
+ @apply .text-blue-700 ;
13
13
}
14
14
}
15
15
Original file line number Diff line number Diff line change 9
9
10
10
<div class =" relative docs-main DocSearch-content w-full px-3 lg:ml-10 xl:ml-16 lg:px-0 mt-10 mb-20" >
11
11
<div class =" absolute top-0 right-0 h-8 w-100 lg:mt-12 xl:mt-12 hidden lg:block" >
12
- <a href =" https://github.com/pestphp /docs/edit/master/{{ $page } } .md" >Edit this page →</a >
12
+ <a href =" https://github.com/laravel-zero /docs/edit/master/{{ $page } } .md" >Edit this page →</a >
13
13
</div >
14
14
15
15
{!! $body ! !}
Original file line number Diff line number Diff line change 1
1
<x-app-layout layout =" base" :title =" $attributes->get('title')"
2
2
:description =" $attributes->get('description')"
3
- class =" text-cool-gray-800 leading-normal lg:px-2 font-sans"
3
+ class =" text-cool-gray-800 leading-normal font-sans"
4
4
x-data =" AppOffCanvasMenu()" >
5
5
<x-slot name =" head" >
6
6
<link rel =" preconnect" href =" https://fonts.gstatic.com" >
@@ -9,7 +9,9 @@ class="text-cool-gray-800 leading-normal lg:px-2 font-sans"
9
9
10
10
@include (' _partials.nav' )
11
11
12
- {{ $slot } }
12
+ <div class =" lg:px-2" >
13
+ {{ $slot } }
14
+ </div >
13
15
14
16
<x-slot name =" footer" >
15
17
{{ $footer ?? ' ' } }
Original file line number Diff line number Diff line change 41
41
42
42
{{ $footer ?? " " } }
43
43
44
+ <footer class =" bg-gray-800 text-gray-200 text-center text-sm mt-4 py-4" role =" contentinfo" >
45
+ <ul class =" flex flex-col md:flex-row justify-center list-none my-0" >
46
+ <li class =" md:mr-2" >
47
+ © ; <a href =" https://laravel-zero.com" class =" text-white font-bold hover:text-white"
48
+ title =" Laravel Zero website" >Laravel Zero</a > {{ date (' Y' ) } } .
49
+ </li >
50
+
51
+ <li >
52
+ Built with <a href =" https://laravel.com" class =" text-white font-bold hover:text-white" title =" Laravel" >Laravel</a >
53
+ and <a href =" https://tailwindcss.com" class =" text-white font-bold hover:text-white"
54
+ title =" Tailwind CSS, a utility-first CSS framework" >Tailwind CSS</a >.
55
+ Logo by <a href =" https://twitter.com/caneco" class =" text-white font-bold hover:text-white" title =" Caneco" >Caneco</a >.
56
+ </li >
57
+ </ul >
58
+ </footer >
59
+
44
60
@stack (' scripts' )
45
61
46
62
<script defer src =" {{ mix (' js/app.js' ) } }" ></script >
49
65
<script async src =" https://www.googletagmanager.com/gtag/js?id=UA-61404619-3" ></script >
50
66
<script >
51
67
window .dataLayer = window .dataLayer || [];
52
- function gtag (){dataLayer .push (arguments );}
68
+
69
+ function gtag () {
70
+ dataLayer .push (arguments );
71
+ }
72
+
53
73
gtag (' js' , new Date ());
54
74
gtag (' config' , ' UA-61404619-3' );
55
75
</script >
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ class="flex flex-col justify-between min-h-screen bg-gray-100 text-gray-900 lead
15
15
<div class =" flex flex-wrap justify-center lg:justify-start md:space-x-4 my-8 text-sm uppercase" >
16
16
<a
17
17
href =" /docs/introduction"
18
- class =" w-full md:w-auto transition duration-300 bg-blue-500 hover:bg-blue-600 font-semibold tracking-wider text-white hover:text-white rounded-full py-3 px-6"
18
+ class =" w-full md:w-auto transition duration-200 bg-blue-500 hover:bg-blue-600 font-semibold tracking-wider text-white hover:text-white rounded-full py-3 px-6"
19
19
>
20
20
Get Started
21
21
</a >
22
22
23
23
<a
24
24
rel =" noopener"
25
25
href =" https://github.com/laravel-zero/laravel-zero"
26
- class =" w-full md:w-auto transition duration-300 bg-gray-300 hover:bg-gray-400 text-gray-600 font-semibold tracking-wider rounded-full py-3 px-6 mt-4 md:mt-0"
26
+ class =" w-full md:w-auto transition duration-200 bg-gray-300 hover:bg-gray-400 hover: text-white text- gray-600 font-semibold tracking-wider rounded-full py-3 px-6 mt-4 md:mt-0"
27
27
target =" _blank"
28
28
>
29
29
View on Github
You can’t perform that action at this time.
0 commit comments