├── .DS_Store ├── .github └── FUNDING.yml ├── .gitignore ├── .htaccess ├── 404.md ├── CNAME ├── Gemfile ├── README.md ├── _config.yml ├── _includes ├── _footer.html ├── _head.html └── _site_nav.html ├── _layouts └── page-two-col.html ├── _sass ├── custom │ └── custom.scss └── support │ └── variables.scss ├── assets ├── config.json ├── css │ └── stately.scss ├── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── fonts │ ├── Lato2OFLWeb │ │ ├── LatoLatin │ │ │ ├── fonts │ │ │ │ ├── LatoLatin-Bold.eot │ │ │ │ ├── LatoLatin-Bold.ttf │ │ │ │ ├── LatoLatin-Bold.woff │ │ │ │ ├── LatoLatin-Bold.woff2 │ │ │ │ ├── LatoLatin-BoldItalic.eot │ │ │ │ ├── LatoLatin-BoldItalic.ttf │ │ │ │ ├── LatoLatin-BoldItalic.woff │ │ │ │ ├── LatoLatin-BoldItalic.woff2 │ │ │ │ ├── LatoLatin-Italic.eot │ │ │ │ ├── LatoLatin-Italic.ttf │ │ │ │ ├── LatoLatin-Italic.woff │ │ │ │ ├── LatoLatin-Italic.woff2 │ │ │ │ ├── LatoLatin-Regular.eot │ │ │ │ ├── LatoLatin-Regular.ttf │ │ │ │ ├── LatoLatin-Regular.woff │ │ │ │ └── LatoLatin-Regular.woff2 │ │ │ └── latolatinfonts.css │ │ ├── OFL.txt │ │ └── README-WEB.txt │ └── Lora │ │ ├── OFL.txt │ │ ├── TRADEMARKS.txt │ │ ├── fonts │ │ ├── ttf │ │ │ ├── Lora-Bold.ttf │ │ │ ├── Lora-BoldItalic.ttf │ │ │ ├── Lora-Italic.ttf │ │ │ └── Lora-Regular.ttf │ │ └── webfonts │ │ │ ├── Lora-Bold.woff2 │ │ │ ├── Lora-BoldItalic.woff2 │ │ │ ├── Lora-Italic.woff2 │ │ │ └── Lora-Regular.woff2 │ │ └── lora.css ├── images │ ├── demo.png │ ├── embed.png │ ├── icons │ │ ├── icon-download-form.png │ │ ├── icon-download.png │ │ └── open-iconic │ │ │ └── sprite.min.svg │ └── logo.svg ├── js │ └── stately.js └── sitemap.txt ├── guide.md ├── guide ├── features.md ├── fix-decryption-error.md ├── matrix-vs-al.md ├── matrix-vs-discord.md ├── matrix-vs-guilded.md ├── matrix-vs-telegram.md ├── popular-rooms.md └── qna.md ├── index.html ├── robots.txt └── servers.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | Gemfile.lock 4 | \.DS_Store 5 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | Header set Strict-Transport-Security "max-age=15552000" -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/404.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | joinmatrix.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/_includes/_footer.html -------------------------------------------------------------------------------- /_includes/_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/_includes/_head.html -------------------------------------------------------------------------------- /_includes/_site_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/_includes/_site_nav.html -------------------------------------------------------------------------------- /_layouts/page-two-col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/_layouts/page-two-col.html -------------------------------------------------------------------------------- /_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/_sass/custom/custom.scss -------------------------------------------------------------------------------- /_sass/support/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/_sass/support/variables.scss -------------------------------------------------------------------------------- /assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/config.json -------------------------------------------------------------------------------- /assets/css/stately.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/css/stately.scss -------------------------------------------------------------------------------- /assets/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/browserconfig.xml -------------------------------------------------------------------------------- /assets/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /assets/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/favicon.ico -------------------------------------------------------------------------------- /assets/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /assets/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /assets/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/favicons/site.webmanifest -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.eot -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.eot -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.woff -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.eot -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/LatoLatin/latolatinfonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/LatoLatin/latolatinfonts.css -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Lato2OFLWeb/README-WEB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lato2OFLWeb/README-WEB.txt -------------------------------------------------------------------------------- /assets/fonts/Lora/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Lora/TRADEMARKS.txt: -------------------------------------------------------------------------------- 1 | Lora is a trademark of Cyreal. 2 | -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/ttf/Lora-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/ttf/Lora-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/ttf/Lora-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/ttf/Lora-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/ttf/Lora-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/ttf/Lora-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/ttf/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/ttf/Lora-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/webfonts/Lora-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/webfonts/Lora-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/webfonts/Lora-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/webfonts/Lora-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/webfonts/Lora-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/webfonts/Lora-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lora/fonts/webfonts/Lora-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/fonts/webfonts/Lora-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lora/lora.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/fonts/Lora/lora.css -------------------------------------------------------------------------------- /assets/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/images/demo.png -------------------------------------------------------------------------------- /assets/images/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/images/embed.png -------------------------------------------------------------------------------- /assets/images/icons/icon-download-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/images/icons/icon-download-form.png -------------------------------------------------------------------------------- /assets/images/icons/icon-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/images/icons/icon-download.png -------------------------------------------------------------------------------- /assets/images/icons/open-iconic/sprite.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/images/icons/open-iconic/sprite.min.svg -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/js/stately.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/js/stately.js -------------------------------------------------------------------------------- /assets/sitemap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/assets/sitemap.txt -------------------------------------------------------------------------------- /guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide.md -------------------------------------------------------------------------------- /guide/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/features.md -------------------------------------------------------------------------------- /guide/fix-decryption-error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/fix-decryption-error.md -------------------------------------------------------------------------------- /guide/matrix-vs-al.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/matrix-vs-al.md -------------------------------------------------------------------------------- /guide/matrix-vs-discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/matrix-vs-discord.md -------------------------------------------------------------------------------- /guide/matrix-vs-guilded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/matrix-vs-guilded.md -------------------------------------------------------------------------------- /guide/matrix-vs-telegram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/matrix-vs-telegram.md -------------------------------------------------------------------------------- /guide/popular-rooms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/popular-rooms.md -------------------------------------------------------------------------------- /guide/qna.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/guide/qna.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/index.html -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/robots.txt -------------------------------------------------------------------------------- /servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhuang0131/joinmatrix/HEAD/servers.md --------------------------------------------------------------------------------