mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
42 lines
1.6 KiB
Text
42 lines
1.6 KiB
Text
h1 Livestreams
|
|
|
|
- route = fn p -> ~p"/channels?#{p}" end
|
|
- pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @channels, route: route, conn: @conn, params: [cq: @conn.params["cq"]]
|
|
|
|
= form_for :channels, ~p"/channels", [method: "get", class: "hform", enforce_utf8: false], fn f ->
|
|
.field
|
|
= text_input f, :cq, name: :cq, value: @conn.params["cq"], class: "input hform__text", placeholder: "Search channels", autocapitalize: "none"
|
|
= submit "Search", class: "hform__button button"
|
|
|
|
.block
|
|
.block__header.page__header
|
|
.page__pagination = pagination
|
|
|
|
= if @conn.cookies["chan_nsfw"] == "true" do
|
|
a href=~p"/channels/nsfw" data-method="delete"
|
|
i.fa.fa-eye-slash>
|
|
' Hide NSFW streams
|
|
- else
|
|
a href=~p"/channels/nsfw" data-method="create"
|
|
i.fa.fa-eye>
|
|
' Show NSFW streams
|
|
|
|
.block__content
|
|
= for channel <- @channels do
|
|
= render PhilomenaWeb.ChannelView, "_channel_box.html", channel: channel, conn: @conn, subscriptions: @subscriptions
|
|
|
|
.block__header.page__header
|
|
.page__pagination = pagination
|
|
|
|
br
|
|
= if can?(@conn, :create, Philomena.Channels.Channel) do
|
|
= link "New Channel", to: ~p"/channels/new"
|
|
|
|
h2 FAQ
|
|
p
|
|
strong> Q: Do you host streams?
|
|
| A: No, we cheat and just link to streams on Picarto since that's where (almost) everyone is already. This is simply a nice way to track streaming artists.
|
|
p
|
|
strong> Q: How do I get my stream/a friend's stream/<artist>'s stream here?
|
|
' A: Send a private message to a site administrator
|
|
' with a link to the stream and the artist tag if applicable.
|