Added skeleton code for Library -> Series detail pages. Added a card component to keep a lot of the logic and design consistent between screens. Added ability to see your libraries and open them up.
This commit is contained in:
parent
fdc0c5753d
commit
efdbe5eb35
22 changed files with 197 additions and 15 deletions
20
src/app/series-detail/series-detail.component.html
Normal file
20
src/app/series-detail/series-detail.component.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<!-- <div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<img src="{{manga.coverImage === null ? 'image-placeholder.jpg' : manga.coverImage}}">
|
||||
<p>title</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h2>Title</h2>
|
||||
<button class="btn btn-primary">Read/Continue Reading</button>
|
||||
(metadata here)
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mt-3">
|
||||
Volumes here
|
||||
</div>
|
||||
|
||||
</div> -->
|
||||
Loading…
Add table
Add a link
Reference in a new issue