| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | <!doctype html> | 
					
						
							| 
									
										
										
										
											2019-08-19 01:57:35 +08:00
										 |  |  | <html lang="{{ config('app.lang') }}"> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | <head> | 
					
						
							|  |  |  |     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | 
					
						
							|  |  |  |     <title>{{ $book->name }}</title> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-15 23:34:06 +08:00
										 |  |  |     @include('partials.export-styles', ['format' => $format]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |     <style> | 
					
						
							|  |  |  |         .page-break { | 
					
						
							|  |  |  |             page-break-after: always; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         .chapter-hint { | 
					
						
							|  |  |  |             color: #888;
 | 
					
						
							|  |  |  |             margin-top: 32px; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         .chapter-hint + h1 { | 
					
						
							|  |  |  |             margin-top: 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ul.contents ul li { | 
					
						
							|  |  |  |             list-style: circle; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         @media screen { | 
					
						
							|  |  |  |             .page-break { | 
					
						
							|  |  |  |                 border-top: 1px solid #DDD;
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     </style> | 
					
						
							|  |  |  |     @yield('head') | 
					
						
							| 
									
										
										
										
											2018-09-22 18:53:40 +08:00
										 |  |  |     @include('partials.custom-head') | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  | <div class="page-content"> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |     <h1 style="font-size: 4.8em">{{$book->name}}</h1> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |     <p>{{ $book->description }}</p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if(count($bookChildren) > 0) | 
					
						
							|  |  |  |         <ul class="contents"> | 
					
						
							|  |  |  |             @foreach($bookChildren as $bookChild) | 
					
						
							|  |  |  |                 <li><a href="#{{$bookChild->getType()}}-{{$bookChild->id}}">{{ $bookChild->name }}</a></li> | 
					
						
							|  |  |  |                 @if($bookChild->isA('chapter') && count($bookChild->pages) > 0) | 
					
						
							|  |  |  |                     <ul> | 
					
						
							|  |  |  |                         @foreach($bookChild->pages as $page) | 
					
						
							|  |  |  |                             <li><a href="#page-{{$page->id}}">{{ $page->name }}</a></li> | 
					
						
							|  |  |  |                         @endforeach | 
					
						
							|  |  |  |                     </ul> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |                 @endif | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |             @endforeach | 
					
						
							|  |  |  |         </ul> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @foreach($bookChildren as $bookChild) | 
					
						
							|  |  |  |         <div class="page-break"></div> | 
					
						
							|  |  |  |         <h1 id="{{$bookChild->getType()}}-{{$bookChild->id}}">{{ $bookChild->name }}</h1> | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |         @if($bookChild->isA('chapter')) | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             <p>{{ $bookChild->description }}</p> | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             @if(count($bookChild->pages) > 0) | 
					
						
							|  |  |  |                 @foreach($bookChild->pages as $page) | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |                     <div class="page-break"></div> | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |                     <div class="chapter-hint">{{$bookChild->name}}</div> | 
					
						
							|  |  |  |                     <h1 id="page-{{$page->id}}">{{ $page->name }}</h1> | 
					
						
							|  |  |  |                     {!! $page->html !!} | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |                 @endforeach | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |             @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         @else | 
					
						
							|  |  |  |             {!! $bookChild->html !!} | 
					
						
							|  |  |  |         @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @endforeach | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | </div> | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | </body> | 
					
						
							|  |  |  | </html> |