bridgy-fed/templates/index.html

77 wiersze
3.1 KiB
HTML

{% set body_id = 'front' %}
{% extends "base.html" %}
{% block content %}
<script src="/static/jquery-3.7.1.slim.min.js"></script>
<script src="/static/bootstrap.min.js"></script>
<script src="/static/index.js"></script>
<div id="front-form" class="row front-dark">
<div id="topology" style="position: absolute; top: 0; left: 0"></div>
<div id="front-tagline" class="row bigger">
<!-- The decentralized social bridge -->
<em class="front-form-text">
Bridging the new <br class="visible-xs-inline"> social internet
</em>
</div>
<div class="row">
<table id="front-table">
<tr class="th-top">
<th colspan="2"></th>
<th colspan="2" class="text-outline">I want to follow...</th>
</tr>
<tr class="th-top">
<th colspan="2"></th>
<th>Web</th>
<th>Fediverse</th>
</tr>
<tr>
<th rowspan="2" class="th-left text-outline" style="white-space: nowrap">I'm on...</th>
<th class="th-left">Web</th>
<td>-</td>
<td>
Enter your web site:
<form method="post" action="/web-site">
<input required type="url" name="url" id="url" placeholder="snarfed.org" />
<input type="submit" class="btn btn-default" value="Go" />
</form>
</td>
</tr>
<tr>
<th class="th-left">Fediverse</th>
<td>To follow the web site <a href="https://example.com/">example.com</a>, use <em>@example.com@web.brid.gy</em></td>
<td>-</td>
</tr>
</table>
</div>
</div>
</div> <!-- front-form -->
<div class="row big front-light">
<p>Bridgy Fed connects many popular decentralized social networks. You can use it from one network to follow people on another, see their posts, and reply and like and repost like normal. All interactions work in both directions. <a href="/docs">See the docs for more info.</a></p>
</div>
<!-- <p>Blocks, mutes, and other native moderation features work automatically. You can opt out of Bridgy Fed by adding <em>#nobridge</em> or <em>#nobots</em> to your bio or <a href="mailto:opt-out@brid.gy">by private email request</a>.</p> -->
<div class="row big front-dark">
<p>Bridgy Fed currently supports web sites and blogs and the <a href="https://enwp.org/fediverse">fediverse</a> via <a href="https://activitypub.rocks/">ActivityPub</a>. More networks like <a href="https://blueskyweb.xyz/">Bluesky</a>/<a href="https://atproto.com/">AT Protocol</a> and <a href="https://en.wikipedia.org/wiki/Nostr">Nostr</a> are coming soon!</p>
</div>
<div class="row big front-light">
<p>Bridgy Fed is a free, non-commercial, <a href="https://github.com/snarfed/bridgy-fed">open source</a> service. <a href="https://snarfed.org/2023-11-27_re-introducing-bridgy-fed">More background here.</a> <a href="mailto:feedback@brid.gy">Feedback</a> and <a href="https://github.com/snarfed/bridgy-fed/issues">bug reports</a> are welcome!</a></p>
</div>
<div id="front-logo-bottom" class="row">
<p id="logo-img-bottom" class="col-sm-4 col-xs-6 col-sm-offset-4 col-xs-offset-3">
<img src="/static/bridgy_logo_with_alpha.png" class="center-block img-responsive" />
</p>
</div>
<script src="static/q5.min.js"></script>
<script src="static/topology.js"></script>
{% endblock %}