summaryrefslogtreecommitdiff
path: root/lib/lsg_web/templates/irc/txts.html.eex
blob: 28d0220032d33a8cb97dfad01ebd20c18b50c280 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<style type="text/css">
.help-entry h1 {
  font-size: 18px;
}
.help-entry h2 {
  font-size: 16px;
}
h1 small {
  font-size: 14px;
}
</style>
<h1>
  <small><a href="/irc"><%= Keyword.get(Application.get_env(:lsg, :irc), :name, "ircbot") %></a> &rsaquo; </small><br/>
  txt</h1>

<p><strong><%= @lines %></strong> lignes dans <strong><%= @files %></strong> fichiers.
<a href="#help">Aide</a>.
</p>

<ul>
  <%= for {txt, data} <- @data do %>
    <li><a href="/irc/txt/<%= txt %>"><%= txt %></a> <i>(<%= Enum.count(data) %>)</i></li>
  <% end %>
</ul>

<div class="help-entry" id="help"><%= @doc |> Earmark.as_html! |> raw() %></div>