2021-09-02 23:32:52 -04:00
|
|
|
<div class="flex flex-col justify-center items-center text-center space-y-4">
|
2022-07-25 22:04:10 -04:00
|
|
|
<h1 class="title text-primary-400 text-2xl">
|
2022-07-25 19:31:54 -04:00
|
|
|
<%= gettext("memex") %>
|
2021-09-02 23:32:52 -04:00
|
|
|
</h1>
|
2022-02-25 21:58:07 -05:00
|
|
|
|
2022-07-25 22:04:10 -04:00
|
|
|
<hr class="hr" />
|
|
|
|
|
|
|
|
<ul class="flex flex-col space-y-4 text-center">
|
|
|
|
<li class="flex flex-col justify-center items-center
|
|
|
|
space-y-2">
|
|
|
|
<b class="whitespace-nowrap">
|
|
|
|
<%= gettext("Notes:") %>
|
|
|
|
</b>
|
|
|
|
<p>
|
|
|
|
<%= gettext("Document notes about individual items or concepts") %>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flex flex-col justify-center items-center
|
|
|
|
space-y-2">
|
|
|
|
<b class="whitespace-nowrap">
|
|
|
|
<%= gettext("Contexts:") %>
|
|
|
|
</b>
|
|
|
|
<p>
|
|
|
|
<%= gettext("Provide context around a single topic and hotlink to your notes") %>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flex flex-col justify-center items-center
|
|
|
|
space-y-2">
|
|
|
|
<b class="whitespace-nowrap">
|
|
|
|
<%= gettext("Pipelines:") %>
|
|
|
|
</b>
|
|
|
|
<p>
|
|
|
|
<%= gettext("Document your processes, attaching contexts to each step") %>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<hr class="hr" />
|
|
|
|
|
|
|
|
<ul class="flex flex-col space-y-4 text-center">
|
|
|
|
<h2 class="title text-primary-400 text-lg">
|
|
|
|
<%= gettext("Features") %>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<li class="flex flex-col justify-center items-center
|
|
|
|
space-y-2">
|
|
|
|
<b class="whitespace-nowrap">
|
|
|
|
<%= gettext("Multi-user:") %>
|
|
|
|
</b>
|
|
|
|
<p>
|
|
|
|
<%= gettext("Built with sharing and collaboration in mind") %>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flex flex-col justify-center items-center
|
|
|
|
space-y-2">
|
|
|
|
<b class="whitespace-nowrap">
|
|
|
|
<%= gettext("Privacy:") %>
|
|
|
|
</b>
|
|
|
|
<p>
|
|
|
|
<%= gettext("Privacy controls on a per-note, context or pipeline basis") %>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flex flex-col justify-center items-center
|
|
|
|
space-y-2">
|
|
|
|
<b class="whitespace-nowrap">
|
|
|
|
<%= gettext("Convenient:") %>
|
|
|
|
</b>
|
|
|
|
<p>
|
|
|
|
<%= gettext("Accessible from any internet-capable device") %>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2022-07-30 16:20:32 -04:00
|
|
|
|
|
|
|
<hr class="hr" />
|
|
|
|
|
|
|
|
<ul class="flex flex-col space-y-4 text-center">
|
|
|
|
<h2 class="title text-primary-400 text-lg">
|
|
|
|
<%= gettext("Instance Information") %>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<li class="flex flex-col justify-center space-x-2">
|
|
|
|
<b>
|
|
|
|
<%= gettext("Admins:") %>
|
|
|
|
</b>
|
|
|
|
<p>
|
|
|
|
<%= if @admins |> Enum.empty?() do %>
|
2022-11-16 21:11:02 -05:00
|
|
|
<.link
|
|
|
|
href={Routes.user_registration_path(MemexWeb.Endpoint, :new)}
|
|
|
|
class="hover:underline"
|
|
|
|
>
|
|
|
|
<%= dgettext("prompts", "Register to setup %{name}", name: "memex") %>
|
|
|
|
</.link>
|
2022-07-30 16:20:32 -04:00
|
|
|
<% else %>
|
|
|
|
<div class="flex flex-wrap justify-center space-x-2">
|
|
|
|
<%= for admin <- @admins do %>
|
|
|
|
<a class="hover:underline" href={"mailto:#{admin.email}"}>
|
|
|
|
<%= admin.email %>
|
|
|
|
</a>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flex flex-row justify-center space-x-2">
|
|
|
|
<b>Registration:</b>
|
|
|
|
<p>
|
2022-11-16 21:11:02 -05:00
|
|
|
<%= Application.get_env(:memex, MemexWeb.Endpoint)[:registration]
|
2022-07-30 16:20:32 -04:00
|
|
|
|> case do
|
|
|
|
"public" -> gettext("Public Signups")
|
|
|
|
_ -> gettext("Invite Only")
|
|
|
|
end %>
|
|
|
|
</p>
|
|
|
|
</li>
|
2022-10-26 22:08:54 -04:00
|
|
|
|
|
|
|
<li class="flex flex-row justify-center items-center space-x-2">
|
|
|
|
<b>Version:</b>
|
2022-11-16 21:11:02 -05:00
|
|
|
<.link
|
|
|
|
href="https://gitea.bubbletea.dev/shibao/memex/src/branch/stable/CHANGELOG.md"
|
|
|
|
class="flex flex-row justify-center items-center space-x-2 hover:underline"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2022-10-26 22:08:54 -04:00
|
|
|
<p>0.1.0</p>
|
|
|
|
<i class="fas fa-md fa-info-circle"></i>
|
2022-11-16 21:11:02 -05:00
|
|
|
</.link>
|
2022-10-26 22:08:54 -04:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<hr class="hr" />
|
|
|
|
|
|
|
|
<ul class="flex flex-col space-y-2 text-center justify-center">
|
|
|
|
<h2 class="title text-primary-400 text-lg">
|
|
|
|
<%= gettext("Get involved!") %>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<li class="flex flex-col justify-center space-x-2">
|
2022-11-16 21:11:02 -05:00
|
|
|
<.link
|
|
|
|
href="https://gitea.bubbletea.dev/shibao/memex"
|
|
|
|
class="flex flex-row justify-center items-center space-x-2 hover:underline"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2022-10-26 22:08:54 -04:00
|
|
|
<p><%= gettext("View the source code") %></p>
|
|
|
|
<i class="fas fa-md fa-code"></i>
|
2022-11-16 21:11:02 -05:00
|
|
|
</.link>
|
2022-10-26 22:08:54 -04:00
|
|
|
</li>
|
|
|
|
<li class="flex flex-col justify-center space-x-2">
|
2022-11-16 21:11:02 -05:00
|
|
|
<.link
|
|
|
|
href="https://weblate.bubbletea.dev/engage/memex"
|
|
|
|
class="flex flex-row justify-center items-center space-x-2 hover:underline"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2022-10-26 22:08:54 -04:00
|
|
|
<p><%= gettext("Help translate") %></p>
|
|
|
|
<i class="fas fa-md fa-language"></i>
|
2022-11-16 21:11:02 -05:00
|
|
|
</.link>
|
2022-10-26 22:08:54 -04:00
|
|
|
</li>
|
|
|
|
<li class="flex flex-col justify-center space-x-2">
|
2022-11-16 21:11:02 -05:00
|
|
|
<.link
|
|
|
|
href="https://gitea.bubbletea.dev/shibao/memex/issues/new"
|
|
|
|
class="flex flex-row justify-center items-center space-x-2 hover:underline"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2022-10-26 22:08:54 -04:00
|
|
|
<p><%= gettext("Report bugs or request features") %></p>
|
|
|
|
<i class="fas fa-md fa-spider"></i>
|
2022-11-16 21:11:02 -05:00
|
|
|
</.link>
|
2022-10-26 22:08:54 -04:00
|
|
|
</li>
|
2022-07-30 16:20:32 -04:00
|
|
|
</ul>
|
2022-02-25 21:58:07 -05:00
|
|
|
</div>
|