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:
Joseph Milazzo 2020-12-31 13:19:18 -06:00
parent fdc0c5753d
commit efdbe5eb35
22 changed files with 197 additions and 15 deletions

View 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> -->