diff options
Diffstat (limited to 'lib/lsg_web/templates/irc/txt.html.eex')
-rw-r--r-- | lib/lsg_web/templates/irc/txt.html.eex | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/lsg_web/templates/irc/txt.html.eex b/lib/lsg_web/templates/irc/txt.html.eex deleted file mode 100644 index fd4ea00..0000000 --- a/lib/lsg_web/templates/irc/txt.html.eex +++ /dev/null @@ -1,27 +0,0 @@ -<style type="text/css"> -:target { - background-color: #ffa; - font-weight: bold; -} -ol > li > a { - display: none; -} -ol > li:hover > a { - display: inline-block; - color: gray; -} -</style> - -<ol class="prose space-y-3 w-auto max-w-full list-outside list-decimal m-4 leading-loose"> - <%= for {txt, id} <- Enum.with_index(@data) do %> - <li class="text-lg" id="q<%= id+1 %>"> - - <%= txt %> - <a href="#q<%= id+1 %>" class="text-xs text-gray-500 space-x-3">#</a> - </li> - <% end %> -</ol> - -<p> - <a href="/-/txt/<%= @name %>.txt" class="text-xs text-gray-500">télécharger au format texte</a> -</p> |