├── CNAME ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── css └── app.css ├── favicon.ico ├── images └── neonbrand-unsplash.jpg ├── index.html ├── js └── i18nextify.min.js ├── locales ├── ar │ └── translation.json ├── ca │ └── translation.json ├── cs │ └── translation.json ├── da │ └── translation.json ├── de │ └── translation.json ├── en │ └── translation.json ├── eo │ └── translation.json ├── es │ └── translation.json ├── eu │ └── translation.json ├── fa │ └── translation.json ├── fi │ └── translation.json ├── fr │ └── translation.json ├── gl │ ├── credit.md │ └── translation.json ├── he │ └── translation.json ├── id │ └── translation.json ├── it │ └── translation.json ├── ja │ └── translation.json ├── ms │ └── translation.json ├── nl │ └── translation.json ├── no │ └── translation.json ├── oc │ └── translation.json ├── pl │ └── translation.json ├── pt-BR │ └── translation.json ├── ru │ └── translation.json ├── sv │ └── translation.json └── zh-TW │ └── translation.json └── robots.txt /CNAME: -------------------------------------------------------------------------------- 1 | pixelfed.org -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PixelFed Project Website -------------------------------------------------------------------------------- /css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/css/app.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/neonbrand-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/images/neonbrand-unsplash.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/index.html -------------------------------------------------------------------------------- /js/i18nextify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/js/i18nextify.min.js -------------------------------------------------------------------------------- /locales/ar/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/ar/translation.json -------------------------------------------------------------------------------- /locales/ca/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/ca/translation.json -------------------------------------------------------------------------------- /locales/cs/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/cs/translation.json -------------------------------------------------------------------------------- /locales/da/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/da/translation.json -------------------------------------------------------------------------------- /locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/de/translation.json -------------------------------------------------------------------------------- /locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/en/translation.json -------------------------------------------------------------------------------- /locales/eo/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/eo/translation.json -------------------------------------------------------------------------------- /locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/es/translation.json -------------------------------------------------------------------------------- /locales/eu/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/eu/translation.json -------------------------------------------------------------------------------- /locales/fa/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/fa/translation.json -------------------------------------------------------------------------------- /locales/fi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/fi/translation.json -------------------------------------------------------------------------------- /locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/fr/translation.json -------------------------------------------------------------------------------- /locales/gl/credit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/gl/credit.md -------------------------------------------------------------------------------- /locales/gl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/gl/translation.json -------------------------------------------------------------------------------- /locales/he/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/he/translation.json -------------------------------------------------------------------------------- /locales/id/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/id/translation.json -------------------------------------------------------------------------------- /locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/it/translation.json -------------------------------------------------------------------------------- /locales/ja/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/ja/translation.json -------------------------------------------------------------------------------- /locales/ms/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/ms/translation.json -------------------------------------------------------------------------------- /locales/nl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/nl/translation.json -------------------------------------------------------------------------------- /locales/no/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/no/translation.json -------------------------------------------------------------------------------- /locales/oc/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/oc/translation.json -------------------------------------------------------------------------------- /locales/pl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/pl/translation.json -------------------------------------------------------------------------------- /locales/pt-BR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/pt-BR/translation.json -------------------------------------------------------------------------------- /locales/ru/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/ru/translation.json -------------------------------------------------------------------------------- /locales/sv/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/sv/translation.json -------------------------------------------------------------------------------- /locales/zh-TW/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed/project-website/HEAD/locales/zh-TW/translation.json -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | --------------------------------------------------------------------------------