diff options
Diffstat (limited to 'lib/lsg_web/templates/irc/txts.html.eex')
-rw-r--r-- | lib/lsg_web/templates/irc/txts.html.eex | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/lsg_web/templates/irc/txts.html.eex b/lib/lsg_web/templates/irc/txts.html.eex index 5039c29..28d0220 100644 --- a/lib/lsg_web/templates/irc/txts.html.eex +++ b/lib/lsg_web/templates/irc/txts.html.eex @@ -9,10 +9,13 @@ h1 small { font-size: 14px; } </style> -<h1><small><a href="https://115ans.net">115ans.net</a> › <a href="/irc">irc</a> ›</small><br/> +<h1> + <small><a href="/irc"><%= Keyword.get(Application.get_env(:lsg, :irc), :name, "ircbot") %></a> › </small><br/> txt</h1> -<p><strong><%= @lines %></strong> lignes dans <strong><%= @files %></strong> fichiers.</p> +<p><strong><%= @lines %></strong> lignes dans <strong><%= @files %></strong> fichiers. +<a href="#help">Aide</a>. +</p> <ul> <%= for {txt, data} <- @data do %> @@ -20,5 +23,5 @@ h1 small { <% end %> </ul> -<div class="help-entry"><%= @doc |> Earmark.as_html! |> raw() %></div> +<div class="help-entry" id="help"><%= @doc |> Earmark.as_html! |> raw() %></div> |