mysociety / whatdotheyknow-theme

The Alaveteli theme for WhatDoTheyKnow (UK)
http://www.whatdotheyknow.com/
MIT License
31 stars 26 forks source link

Present FOI & Transparency TICTeC videos on the front page #1434

Closed garethrees closed 1 year ago

garethrees commented 1 year ago

A specific of https://github.com/mysociety/whatdotheyknow-theme/issues/791.

95% of our users won't necessarily watch the talks, but it shows that we're about more than just running a service.

Basically copy & paste of https://economicprinciples.org/. Should be quite a quick win.

Screenshot 2022-10-04 at 17 28 03

The video summaries can get quite long (or don't exist). We don't want to have to write lots of new content for updates, so I think just rendering the title and image is fine.

We should have a "Donate £10 to support our research or browse more" link at the end.

It shows that we're about more than just running a service. Not worth a huge engineering effort to automate as they're relatively low frequency.

I don't think there's a relevant feed so we'd have to manually update them now and then, but that feels fine. Not worth a huge engineering effort as they're relatively low frequency. We can either just hard code the ones we want, or create a data structure and pick a random selection, along the lines of:

@research_videos = [
  { title: 'The FOI Clearing House: an openDemocracy investigation into FOI at the heart of government',
    url: 'https://www.youtube.com/watch?v=wXbhBHfeOzk' },
  # and so on…
]
<% @research_videos.sample(3).each do |article| %>
  <div class="research-video">
    <!-- … -->
  </div>
<% end %>
RichardTaylor commented 1 year ago

We should consider the specific videos.

Do we have existing content relevant to the WDTK readership?

We could create specific content, being prepared to give it prominence on the front page might encourage the creation of content.

Are we just boosting viewcounts and donating Google juice to other parts of the organisation?

New video ideas which might fit well on the WDTK front page:

garethrees commented 1 year ago

Do we have existing content relevant to the WDTK readership?

Probably

We could create specific content

This issue isn't about this – it's about better promoting what we have right now, and if some specific is created later, having an established place to put it.

Are we just boosting viewcounts and donating Google juice to other parts of the organisation?

As explained above, mySociety does not only run services; it attempts to fix underlying societal issues. The two go hand in hand. We are not in competition with ourselves.

garethrees commented 1 year ago

Do we have existing content relevant to the WDTK readership?

From a quick scan:

lucascumsille commented 1 year ago

We should have a "Donate £10 to support our research or browse more" link at the end.

Hey @garethrees I think UX wise it would make sense to add a browse more button. However I think we shouldn't miss the opportunity to add a donate CTA section right below the video section. Let me know you opinion on this last part. I know we have a donate button in the footer, but not sure how many users actually see the footer or pay attention to it, personally I tend to ignore the footer unless I'm looking for a page that would be easier to find in the footer more than in the header. If you like the CTA approach I could ask Myf for a catchy copy.

lucascumsille commented 1 year ago

PR here: https://github.com/mysociety/whatdotheyknow-theme/pull/1541