<%- if new_user && empty_library -%>

Add your first manga

We can't find any files yet. Add some to your library and they'll appear here.

Current library path
<%= Config.current.library_path %>
Want to change your library path?
Update config.yml located at: <%= Config.current.path %>
Can't see your files yet?
You must wait <%= Config.current.scan_interval_minutes %> minutes for the library scan to complete <% if is_admin %> , or manually re-scan from Admin <% end %>.
<%- elsif new_user && empty_library == false -%>

Read your first manga

Once you start reading, Mango will remember where you left off and show your entries here.

View library
<%- elsif new_user == false && empty_library == false -%> <%- if continue_reading.empty? && recently_added.empty? -%>

A self-hosted manga server and reader

View library
<%- end -%> <%- unless continue_reading.empty? -%>

Continue Reading

<%- continue_reading.each do |cr| -%> <% item = cr[:entry] %> <% progress = cr[:percentage] %> <%= render_component "card" %> <%- end -%>
<%- end -%> <%- unless start_reading.empty? -%>

Start Reading

<%- start_reading.each do |t| -%> <% item = t %> <% progress = 0.0 %> <%= render_component "card" %> <%- end -%>
<%- end -%> <%- unless recently_added.empty? -%>

Recently Added

<%- recently_added.each do |ra| -%> <% item = ra %> <% progress = ra[:percentage] %> <%= render_component "card" %> <%- end -%>
<%- end -%> <%= render_component "entry-modal" %> <%- end -%> <% content_for "script" do %> <%= render_component "dots" %> <% end %>