otwarchive-symphonyarchive/app/views/home/site_map.html.erb
2026-03-11 22:22:11 +00:00

61 lines
3.3 KiB
Text

<h2 class="heading"><%= t(".page_heading") %></h2>
<div class="userstuff">
<h3 class="heading"><%= t(".explore.header") %></h3>
<ul>
<li><%= link_to t(".explore.homepage"), root_path %></li>
<li><%= link_to t(".explore.fandoms"), media_index_path %></li>
<li><%= link_to t(".explore.recent_works"), works_path %></li>
<li><%= link_to t(".explore.people"), search_people_path %></li>
<li><%= link_to t(".explore.bookmarks"), bookmarks_path %></li>
<li><%= link_to t(".explore.additional_tags_cloud"), tags_path %></li>
<li><%= link_to t(".explore.languages"), languages_path %></li>
<li><%= link_to t(".explore.collections_and_challenges"), collections_path %></li>
</ul>
<h3 class="heading"><%= t(".about.header") %></h3>
<ul>
<li><%= link_to t(".about.archive_faq"), archive_faqs_path %></li>
<li><%= link_to t(".about.ao3_news"), admin_posts_path %></li>
<li><%= link_to t(".about.known_issues"), known_issues_path %></li>
</li>
</ul>
<% if logged_in? %>
<h3 class="heading"><%= t(".access_your_account.header") %></h3>
<ul>
<li><%= link_to t(".access_your_account.my_home"), user_path(current_user) %></li>
<li><%= link_to t(".access_your_account.post_new"), new_work_path %></li>
<li><%= link_to t(".access_your_account.my_works"), user_works_path(current_user) %></li>
<li><%= link_to t(".access_your_account.drafts"), drafts_user_works_path(current_user) %></li>
<li><%= link_to t(".access_your_account.my_series"), user_series_index_path(current_user) %></li>
<li><%= link_to t(".access_your_account.my_bookmarks"), user_bookmarks_path(current_user) %></li>
<li><%= link_to t(".access_your_account.my_collections_and_challenges"), user_collections_path(current_user) %></li>
<li><%= link_to t(".access_your_account.my_inbox"), user_inbox_path(current_user) %></li>
<% if current_user.preference.history_enabled? %>
<li><%= link_to t(".access_your_account.my_history"), user_readings_path(current_user) %></li>
<% end %>
<li><%= link_to t(".access_your_account.my_subscriptions"), user_subscriptions_path(current_user) %></li>
<li><%= link_to t(".access_your_account.set_my_preferences"), user_preferences_path(current_user) %></li>
</ul>
<h3 class="heading"><%= t(".change_your_account_settings.header") %></h3>
<ul>
<li><%= link_to t(".change_your_account_settings.edit_my_profile"), edit_user_path(current_user) %></li>
<li><%= link_to t(".change_your_account_settings.my_profile"), user_profile_path(current_user) %></li>
<li><%= link_to t(".change_your_account_settings.manage_my_pseuds"), user_pseuds_path(current_user) %></li>
<li>
<%= link_to t(".change_your_account_settings.delete_my_account"),
user_path(current_user),
data: { confirm: t(".change_your_account_settings.delete_account_confirmation") },
method: :delete %>
</li>
</ul>
<% end %>
<h3 class="heading"><%= t(".contact_us.header") %></h3>
<ul>
<li><%= link_to t(".contact_us.technical_support_and_feedback"), new_feedback_report_path %></li>
<li><%= link_to t(".contact_us.policy_questions_and_abuse_reports"), new_abuse_report_path %></li>
<li><%= link_to t(".contact_us.donations"), donate_path %></li>
</ul>
</div>