mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-28 03:52:25 -05:00
# Description Fix links and typos in docs and settings page: * Fix https://codeberg.org/superseriousbusiness/gotosocial/issues/4328 * Fix https://codeberg.org/superseriousbusiness/gotosocial/issues/4360 Also fix broken issuetracker links as forgejo does not support search queries like "label:bug" The translation for Zh-cn still says "this project" according to google translate, I only fixed the link. ## Checklist Please put an x inside each checkbox to indicate that you've read and followed it: `[ ]` -> `[x]` If this is a documentation change, only the first checkbox must be filled (you can delete the others if you want). - [x] I/we have read the [GoToSocial contribution guidelines](https://codeberg.org/superseriousbusiness/gotosocial/src/branch/main/CONTRIBUTING.md). - [ ] I/we have discussed the proposed changes already, either in an issue on the repository, or in the Matrix chat. - [x] I/we have not leveraged AI to create the proposed changes. - [x] I/we have performed a self-review of added code. - [x] I/we have written code that is legible and maintainable by others. - [ ] I/we have commented the added code, particularly in hard-to-understand areas. - [x] I/we have made any necessary changes to documentation. - [ ] I/we have added tests that cover new code. - [ ] I/we have run tests and they pass locally with the changes. - [ ] I/we have run `go fmt ./...` and `golangci-lint run`. Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4418 Co-authored-by: Markus Unterwaditzer <markus-tarpit+git@unterwaditzer.net> Co-committed-by: Markus Unterwaditzer <markus-tarpit+git@unterwaditzer.net>
77 lines
No EOL
3.7 KiB
Cheetah
77 lines
No EOL
3.7 KiB
Cheetah
{{- /*
|
|
// GoToSocial
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/ -}}
|
|
|
|
{{- with . }}
|
|
<section role="region" class="about-section what-is-this" aria-labelledby="what-is-this">
|
|
<h3 id="what-is-this">What is this?</h3>
|
|
<div class="about-section-contents">
|
|
<p>
|
|
The web page you're reading right now is served by an instance of GoToSocial,
|
|
a federated, distributed, open-source microblogging software which connects
|
|
to other instances across a network known as the "fediverse".
|
|
</p>
|
|
<h4 id="what-is-an-instance">What is an "instance"?</h4>
|
|
<p>
|
|
"Instance" is a term commonly used for one node in the fediverse. Each instance
|
|
has its own web address, user(s), culture, rules, and settings. Instances exchange
|
|
data by "talking" to each other over the internet using a protocol called ActivityPub.
|
|
</p>
|
|
<a
|
|
class="activitypub-logo-wrapper"
|
|
href="https://activitypub.rocks/"
|
|
rel="nofollow noreferrer noopener"
|
|
target="_blank"
|
|
>
|
|
<img
|
|
class="activitypub-logo"
|
|
src="/assets/activitypub_light.svg"
|
|
alt="ActivityPub logo by mray, CC0 1.0"
|
|
title="ActivityPub logo by mray, CC0 1.0"
|
|
width="250"
|
|
height="65"
|
|
/>
|
|
Learn more about ActivityPub (opens in a new tab).
|
|
</a>
|
|
<p>
|
|
Each instance can, in theory, talk to each other instance, allowing people to talk
|
|
to one another across a decentralized network that has no single authority in charge.
|
|
</p>
|
|
<p>
|
|
There are thousands of fediverse instances, connecting millions of people together.
|
|
</p>
|
|
<h4 id="how-do-i-join-the-fediverse">How do I join the fediverse?</h4>
|
|
<p>
|
|
You can join the fediverse by running your own instance of an ActivityPub software,
|
|
or by finding an existing instance that aligns with your values and expectations,
|
|
and registering an account.
|
|
</p>
|
|
<p>
|
|
To help you find an instance that suits you, you can try one of the following tools (all links open in a new tab):
|
|
</p>
|
|
<ul>
|
|
<li>GoToSocial-specific: <a href="https://thefedi.wiki/gotosocial/user/gotosocial-servers" rel="nofollow noreferrer noopener" target="_blank">thefedi.wiki list of open registration GoToSocial servers</a></li>
|
|
<li>Mastodon-specific: <a href="https://joinmastodon.org/servers" rel="nofollow noreferrer noopener" target="_blank">joinmastodon.org server picker</a></li>
|
|
<li>Various fedi tools: <a href="https://fedi.garden/" rel="nofollow noreferrer noopener" target="_blank">fedi.garden server picker</a></li>
|
|
</ul>
|
|
{{- if .instance.Registrations }}
|
|
<p>Or, just <a href="signup">register for an account on this instance</a>!</p>
|
|
{{- end }}
|
|
</div>
|
|
</section>
|
|
{{- end }} |