-
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e53641a
commit a0e5a03
Showing
8 changed files
with
56 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<div id="modal" class="uk-flex-top" uk-modal> | ||
<div class="uk-modal-dialog uk-margin-auto-vertical"> | ||
<button class="uk-modal-close-default" type="button" uk-close></button> | ||
<div class="uk-modal-header"> | ||
<div> | ||
<% if page == "home" %> | ||
<h4 class="uk-margin-remove-bottom"><a id="modal-title-link"></a></h4> | ||
<% end %> | ||
<h3 class="uk-modal-title break-word uk-margin-remove-top" id="modal-entry-title"><span></span> | ||
<% unless page == "home" %> | ||
| ||
<% if is_admin %> | ||
<a class="uk-icon-button" uk-icon="icon:pencil"></a> | ||
<% end %> | ||
<% end %> | ||
</h3> | ||
</div> | ||
<p class="uk-text-meta uk-margin-remove-bottom break-word" id="path-text"></p> | ||
<p class="uk-text-meta uk-margin-remove-top" id="pages-text"></p> | ||
</div> | ||
<div class="uk-modal-body"> | ||
<p>Read</p> | ||
<p uk-margin> | ||
<a id="beginning-btn" class="uk-button uk-button-default">From beginning</a> | ||
<a id="continue-btn" class="uk-button uk-button-primary"></a> | ||
</p> | ||
<p>Progress</p> | ||
<p uk-margin> | ||
<button id="read-btn" class="uk-button uk-button-default">Mark as read (100%)</button> | ||
<button id="unread-btn" class="uk-button uk-button-default">Mark as unread (0%)</button> | ||
</p> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="X-UA-Compatible" content="IE=edge"> | ||
<title>Mango</title> | ||
<meta name="description" content="Mango - Manga Server and Web Reader"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/css/uikit.min.css" /> | ||
<link rel="stylesheet" href="<%= base_url %>css/mango.css" /> | ||
<link rel="icon" href="<%= base_url %>favicon.ico"> | ||
<script defer src="<%= base_url %>js/fontawesome.min.js"></script> | ||
<script defer src="<%= base_url %>js/solid.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | ||
<script src="<%= base_url %>js/theme.js"></script> | ||
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters