philomena/lib/philomena_web/templates/search/index.html.slime

17 lines
532 B
Text
Raw Normal View History

2019-11-15 16:40:10 +01:00
= cond do
- Enum.any?(@images) ->
2019-12-07 22:55:56 +01:00
= render PhilomenaWeb.ImageView, "index.html", conn: @conn, tags: @tags, images: @images, header: "Searching for #{@conn.params["q"]}", route: fn p -> Routes.search_path(@conn, :index, p) end, scope: scope(@conn)
2019-12-08 06:12:23 +01:00
2019-11-15 16:40:10 +01:00
- assigns[:error] ->
p
' Oops, there was an error evaluating your query:
pre = assigns[:error]
2019-12-08 06:12:23 +01:00
- blank?(@conn.params["q"]) ->
/ Don't render anything.
2019-11-15 16:40:10 +01:00
- true ->
p
2019-11-18 15:14:26 +01:00
' No images found!
= render PhilomenaWeb.SearchView, "_form.html", conn: @conn