summaryrefslogtreecommitdiff
path: root/lib/lsg_web/templates/irc/index.html.eex
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2022-12-20 00:21:54 +0000
committerJordan Bracco <href@random.sh>2022-12-20 19:29:41 +0100
commit2d83df8b32bff7f0028923bb5b64dc0b55f20d03 (patch)
tree1207e67b5b15f540963db05e7be89f3ca950e724 /lib/lsg_web/templates/irc/index.html.eex
parentNola rename, the end. pt 6. Refs T77. (diff)
Nola rename: The Big Move, Refs T77
Diffstat (limited to 'lib/lsg_web/templates/irc/index.html.eex')
-rw-r--r--lib/lsg_web/templates/irc/index.html.eex44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/lsg_web/templates/irc/index.html.eex b/lib/lsg_web/templates/irc/index.html.eex
deleted file mode 100644
index 182624d..0000000
--- a/lib/lsg_web/templates/irc/index.html.eex
+++ /dev/null
@@ -1,44 +0,0 @@
-<div class="hidden sm:block">
- <nav class="flex flex-wrap space-x-4">
- <%= link("live", to: NolaWeb.Router.Helpers.live_path(NolaWeb.Endpoint, NolaWeb.ChatLive, @network, NolaWeb.format_chan(@chan)), class: "py-4 font-medium leading-5 rounded-md text-gray-500 hover:text-gray-700 focus:outline-none focus:text-indigo-600 focus:bg-indigo-50", 'data-turbo': false) %>
- <% list = for {identifier, _} <- @commands do %>
- <% name = String.replace(identifier, "_", " ") %>
- <%= link(name, to: "##{identifier}", class: "py-4 font-medium leading-5 rounded-md text-gray-500 hover:text-gray-700 focus:outline-none focus:text-indigo-600 focus:bg-indigo-50") %>
- <% end %>
- <%= list %>
- </nav>
-</div>
-
-<%= if @members != [] do %>
- <ul class="flex flew-wrap space-x-4 mt-12">
- <%= for user <- @members do %><li><%= user.nick %></li><% end %>
- </ul>
-<% end %>
-
-<div class="irchelps space-y-6 mt-12">
- <%= for {identifier, help} <- @commands do %>
- <%= if help do %>
- <div class="bg-white border-b border-gray-200" id="<%= identifier %>">
- <div class="prose w-auto max-w-full"><%= NolaWeb.LayoutView.liquid_markdown(@conn, help) %></div>
- </div>
- <% end %>
- <% end %>
-</div>
-
-<br/><br/><br/>
-
-<p>
-<small>
- <strong>Légende:</strong><br />
- entre <code>< ></code>: argument obligatoire,<br />
- entre <code>[ ]</code>: argument optionel; <code>[1 | ]</code>: argument optionel avec valeur par défaut.
-</small>
-</p>
-
-<br/><br/><br/>
-
-<p>
-<small>
- running beautte version <%= Nola.version() %> &mdash; <a href="<%= Nola.source_url() %>">git</a>
-</small>
-</p>