forked from
jollywhoppers.com/witchsky.app
fork
Configure Feed
Select the types of activity you want to include in your feed.
Bluesky app fork with some witchin' additions 馃挮
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{% extends "base.html" %}
2
3{% block html_head_extra -%}
4 <meta name="apple-itunes-app" content="app-id=app.witchsky, app-clip-bundle-id=app.witchsky.AppClip, app-clip-display=card">
5 {%- if requestURI %}
6 <meta property="og:url" content="{{ requestURI }}">
7 {% endif -%}
8 {%- if imgThumbUrl %}
9 <meta property="og:image" content="{{ imgThumbUrl }}">
10 <meta property="twitter:image" content="{{ imgThumbUrl }}">
11 {%- else -%}
12 <meta property="og:image" content="https://bsky.app/static/social-card-default-gradient.png" />
13 <meta property="twitter:image" content="https://bsky.app/static/social-card-default-gradient.png" />
14 {% endif -%}
15 <meta name="twitter:card" content="summary_large_image" />
16 {%- if title %}
17 <meta property="og:title" content="{{ title }}" />
18 <meta name="twitter:title" content="{{ title }}" />
19 {%- else -%}
20 <meta property="og:title" content="Bluesky" />
21 <meta name="twitter:title" content="Bluesky" />
22 {% endif -%}
23 <meta name="description" content="Join the conversation" />
24 <meta name="og:description" content="Join the conversation" />
25 <meta name="twitter:description" content="Join the conversation" />
26{%- endblock %}