├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── _assets ├── images │ └── about_header.png ├── javascripts │ ├── about.js │ ├── lib │ │ ├── diaspora_sharer.js │ │ ├── preference_storage.js │ │ └── utils.js │ └── main.js └── stylesheets │ ├── about.scss │ └── main.scss ├── _config.yml.example ├── _data └── pods.json ├── _includes ├── loader.html ├── snippet.html └── snippets │ ├── with_js.html │ ├── with_js_and_text.html │ ├── without_js.html │ └── without_js_with_text.html ├── _plugins ├── dataurl_tag.rb └── rails_assets.rb ├── about.html ├── bin └── jekyll ├── favicon.ico ├── humans.txt ├── icons ├── diaspora-16.png ├── diaspora-32.png └── diaspora-64.png └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.5 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/Rakefile -------------------------------------------------------------------------------- /_assets/images/about_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/images/about_header.png -------------------------------------------------------------------------------- /_assets/javascripts/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/javascripts/about.js -------------------------------------------------------------------------------- /_assets/javascripts/lib/diaspora_sharer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/javascripts/lib/diaspora_sharer.js -------------------------------------------------------------------------------- /_assets/javascripts/lib/preference_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/javascripts/lib/preference_storage.js -------------------------------------------------------------------------------- /_assets/javascripts/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/javascripts/lib/utils.js -------------------------------------------------------------------------------- /_assets/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/javascripts/main.js -------------------------------------------------------------------------------- /_assets/stylesheets/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/stylesheets/about.scss -------------------------------------------------------------------------------- /_assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_assets/stylesheets/main.scss -------------------------------------------------------------------------------- /_config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_config.yml.example -------------------------------------------------------------------------------- /_data/pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_data/pods.json -------------------------------------------------------------------------------- /_includes/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_includes/loader.html -------------------------------------------------------------------------------- /_includes/snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_includes/snippet.html -------------------------------------------------------------------------------- /_includes/snippets/with_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_includes/snippets/with_js.html -------------------------------------------------------------------------------- /_includes/snippets/with_js_and_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_includes/snippets/with_js_and_text.html -------------------------------------------------------------------------------- /_includes/snippets/without_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_includes/snippets/without_js.html -------------------------------------------------------------------------------- /_includes/snippets/without_js_with_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_includes/snippets/without_js_with_text.html -------------------------------------------------------------------------------- /_plugins/dataurl_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_plugins/dataurl_tag.rb -------------------------------------------------------------------------------- /_plugins/rails_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/_plugins/rails_assets.rb -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/about.html -------------------------------------------------------------------------------- /bin/jekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/bin/jekyll -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/favicon.ico -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/humans.txt -------------------------------------------------------------------------------- /icons/diaspora-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/icons/diaspora-16.png -------------------------------------------------------------------------------- /icons/diaspora-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/icons/diaspora-32.png -------------------------------------------------------------------------------- /icons/diaspora-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/icons/diaspora-64.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaspora/sharetodiaspora/HEAD/index.html --------------------------------------------------------------------------------