Files
Myrient-Search-Engine/views/pages/about.ejs
ovosimpatico 0138bb0b5e - i18n localization
- Add PSP support on web emu
- properly doing CORS (blame PPSSPP)
- added contributors image on about
- proxying emulatorjs to avoid internet blocking
- initial seeds for multithreading on webemu
- added new searchalikes
- Added new error page
2025-03-31 05:16:43 -03:00

61 lines
3.1 KiB
Plaintext

<div class="row h-50 w-100 m-0">
<div class="col-sm-12 my-auto text-center">
<pre style="font: 20px / 19px monospace; color: white; text-align: center; overflow: hidden;">
<%= generateAsciiArt() %>
<%= __('about.title') %>
</pre>
<div class="card w-auto mx-auto text-center d-inline-block p-3">
<div class="about-content">
<h4><%= __('about.title') %> <%= process.env.INSTANCE_NAME || 'Myrient' %> Search</h4>
<p><%= __('app.description') %></p>
<p><%= __('app.tagline') %></p>
<p class="text-secondary mb-4"><%= __('app.disclaimer') %></p>
<div class="mb-4">
<p><%= __('about.support') %></p>
<a href="https://myrient.erista.me/donate/" class="btn btn-secondary"><%= __('about.donate') %></a>
</div>
<div class="mb-4 border-top pt-3">
<h5><%= __('about.emulator.title') %></h5>
<% if (process.env.EMULATOR_ENABLED === 'true') { %>
<p><%= __('about.emulator.description') %></p>
<p><%= __('about.emulator.compatibility') %></p>
<p><%= __('about.emulator.browser_tip') %></p>
<p class="text-secondary">
<small>
<i class="fas fa-info-circle"></i>
<%= __('about.emulator.save_states') %>
</small>
<br>
<small>
<i class="fas fa-exclamation-triangle"></i>
<%= __('about.emulator.limitations') %>
</small>
</p>
<% } else { %>
<p><%= __('about.emulator.disabled') %></p>
<p><%= __('about.emulator.contact') %></p>
<% } %>
</div>
<div class="border-top pt-3">
<p><%= __('about.credits.created_by') %> <a href="https://github.com/alexankitty">Alexankitty</a></p>
<div class="mb-3">
<a href="https://github.com/alexankitty/Myrient-Search-Engine/graphs/contributors">
<img src="/proxy-image?url=<%= encodeURIComponent('https://contrib.rocks/image?repo=alexankitty/Myrient-Search-Engine') %>" alt="Contributors" />
</a>
</div>
<p><a href="https://github.com/alexankitty/myrient-global-search"><%= __('about.credits.view_github') %></a></p>
<a href='https://ko-fi.com/Q5Q4IFNAO' target='_blank'>
<img height='36' style='border:0px;height:36px;'
src='/proxy-image?url=<%= encodeURIComponent("https://storage.ko-fi.com/cdn/kofi5.png?v=3") %>' alt='Buy Me a Coffee at ko-fi.com' />
</a>
</div>
</div>
</div>
</div>
</div>