├── data └── .gitignore ├── themes └── default │ ├── archetypes │ └── default.md │ ├── layouts │ ├── shortcodes │ │ ├── fa.html │ │ ├── row.html │ │ ├── col.html │ │ ├── center.html │ │ ├── jumbotron.html │ │ ├── sponsors.html │ │ ├── support.html │ │ ├── grants.html │ │ └── release.html │ ├── _default │ │ ├── single.html │ │ ├── section.html │ │ └── baseof.html │ ├── partials │ │ ├── banner.html │ │ ├── prevnext.html │ │ ├── nav-right.html │ │ ├── nav-left.html │ │ ├── github-sponsors.html │ │ ├── navbar.html │ │ └── head.html │ └── grants │ │ └── section.html │ ├── theme.toml │ └── LICENSE.md ├── .gitignore ├── static ├── css │ ├── auto.css │ ├── dark.css │ ├── overrides.css │ └── font-awesome.css ├── img │ ├── favicon.png │ ├── reefsol.png │ ├── screenshot.png │ ├── screenshot-dark.png │ ├── favicons │ │ ├── favicon.ico │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-144x144.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ └── code.txt │ ├── logo-horizontal.svg │ ├── kastelo-light.svg │ ├── kastelo-dark.svg │ └── foundation-logo.svg ├── release-key.gpg ├── security-key.gpg ├── webfonts │ ├── fa-solid-900.eot │ ├── fa-solid-900.ttf │ ├── fa-brands-400.eot │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ └── fa-regular-400.woff2 ├── .well-known │ ├── security.txt │ └── keybase.txt ├── js │ ├── theme │ │ └── theme.switcher.js │ └── releases.js ├── security-key.txt └── release-key.txt ├── content ├── stars.jpg ├── grants │ ├── _index.md │ └── 2019-09-05-new-gui-api.md ├── android-privacy-policy.md ├── donations.md ├── foundation.md ├── downloads.md ├── security.md └── _index.md ├── layouts └── index.html ├── .github ├── dependabot.yml └── workflows │ └── page-main.yml ├── config.yaml ├── README.md └── script ├── go.mod ├── sponsors └── sponsors.go ├── go.sum └── release └── release.go /data/.gitignore: -------------------------------------------------------------------------------- 1 | release.yaml 2 | -------------------------------------------------------------------------------- /themes/default/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_site 2 | /resources 3 | /.hugo_build.lock 4 | -------------------------------------------------------------------------------- /static/css/auto.css: -------------------------------------------------------------------------------- 1 | @import url("dark.css") (prefers-color-scheme: dark); -------------------------------------------------------------------------------- /themes/default/layouts/shortcodes/fa.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/stars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncthing/website/HEAD/content/stars.jpg -------------------------------------------------------------------------------- /themes/default/layouts/shortcodes/row.html: -------------------------------------------------------------------------------- 1 |
Kastelo provides commercial support for Syncthing and sponsors Syncthing with development resources.
5 |
4 |
5 |
6 |
7 |
24 |
25 |
26 |
27 | Download the latest release from GitHub.
24 | {{ end }} 25 | -------------------------------------------------------------------------------- /content/donations.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Donations 3 | header: true 4 | --- 5 | 6 | Developing Syncthing costs money, in domain and hosting fees for the various 7 | servers we need to run the operation such as discovery servers, build 8 | servers and this website. Your donations help fund these costs. We also 9 | periodically award grants for the development of specific features, which is 10 | paid for by these donations. 11 | 12 | [Click to donate securely using any major credit or debit 13 | card.](https://donate.stripe.com/eVadSl1excyx7xScMM) We also accept 14 | donations via [GitHub Sponsors](https://github.com/sponsors/syncthing) and 15 | [Liberapay](https://liberapay.com/Syncthing/). 16 | 17 | You can manage or cancel your existing recurring donation by visiting the 18 | [subscription portal](https://billing.stripe.com/p/login/9AQ6rx2cLbRhbhS5kk) 19 | and logging in with your email address. 20 | 21 | If you experience any issues with the donation handling, regret your 22 | donation and want a refund, or want to cancel a recurring donation please 23 | feel free to contact [donations@syncthing.org](mailto:donations@syncthing.org) at any time. 24 | 25 | If you'd like to become a corporate sponsor of the project and be featured here 26 | we're happy to discuss that too! 27 | 28 | {{% sponsors %}} 29 | -------------------------------------------------------------------------------- /themes/default/layouts/partials/navbar.html: -------------------------------------------------------------------------------- 1 |