-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathindex.html
42 lines (32 loc) · 1.32 KB
/
index.html
1
2
3
4
671C
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends "base.html" %}
{% block title %}Bridgy{% endblock %}
{% block body_class %} index {% endblock %}
{% block content %}
<div class="row" id="bridgy-fed-promo">
<p style="margin-top: .5em"><span class="warning" style="padding: .5em">Looking for <a href="https://fed.brid.gy/">Bridgy Fed</a> instead? (<a href="/about#bridgy-fed">What's the difference?</a>)</span></p>
</div>
<!-- Signup buttons -->
<div id="signups">
<div id="listen-signups" class="row">
<p class="big">Connect your accounts:</p>
{{ sources['flickr'].button_html('listen')|safe }}
{{ sources['github'].button_html('listen')|safe }}
<a href="/which-bridgy">
<img class="mastodon-button shadow" alt="Mastodon" src="/oauth_dropins_static/mastodon_large.png"></a>
{{ sources['reddit'].button_html('listen')|safe }}
{{ sources['bluesky'].button_html('listen')|safe }}
</div>
<hr />
<div id="webmention-signups" class="row">
<p class="big">Using one of these? Click to <a href="/about#blogs">add webmentions</a>:</p>
{{ sources['tumblr'].button_html('webmention')|safe }}
{{ sources['wordpress'].button_html('webmention')|safe }}
{{ sources['blogger'].button_html('webmention')|safe }}
{{ sources['medium'].button_html('webmention')|safe }}
</div>
<hr />
</div>
<p class="row big">
Already signed up? <a href="/users">Find your user page here.</a>
</p>
{% endblock %}