diff options
author | Jordan Bracco <href@random.sh> | 2022-12-17 14:08:54 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | 29e0342e12d3111ae3164c4478d7d5a5796665ad (patch) | |
tree | b505f11808e37c60ae0cfdba6196c32c57516eda /lib/lsg_web/templates/irc/index.html.eex | |
parent | Nola rename, cont. pt. 3. Refs T77. (diff) |
Nola rename, cont. pt. 4. Refs T77.
Diffstat (limited to 'lib/lsg_web/templates/irc/index.html.eex')
-rw-r--r-- | lib/lsg_web/templates/irc/index.html.eex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/lsg_web/templates/irc/index.html.eex b/lib/lsg_web/templates/irc/index.html.eex index 6cc3128..182624d 100644 --- a/lib/lsg_web/templates/irc/index.html.eex +++ b/lib/lsg_web/templates/irc/index.html.eex @@ -1,6 +1,6 @@ <div class="hidden sm:block"> <nav class="flex flex-wrap space-x-4"> - <%= link("live", to: LSGWeb.Router.Helpers.live_path(LSGWeb.Endpoint, LSGWeb.ChatLive, @network, LSGWeb.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) %> + <%= 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") %> @@ -19,7 +19,7 @@ <%= 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"><%= LSGWeb.LayoutView.liquid_markdown(@conn, help) %></div> + <div class="prose w-auto max-w-full"><%= NolaWeb.LayoutView.liquid_markdown(@conn, help) %></div> </div> <% end %> <% end %> @@ -39,6 +39,6 @@ <p> <small> - running beautte version <%= LSG.version() %> — <a href="<%= LSG.source_url() %>">git</a> + running beautte version <%= Nola.version() %> — <a href="<%= Nola.source_url() %>">git</a> </small> </p> |