├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── css └── fedi-share.css ├── fedi-share.svg ├── images ├── apple-touch-icon.png ├── badges │ ├── mastodon-follow-88x31-a.gif │ ├── mastodon-follow-88x31-b.gif │ ├── mastodon-follow-88x31-c.gif │ ├── mastodon-follow-88x31-d.gif │ └── mastodon-follow-88x31-e.gif ├── favicon-96x96.png ├── favicon.ico └── favicon.svg ├── index.html ├── js └── fedi-share.js ├── mastodon-logo.svg ├── mastopy.html ├── single-post-api.html ├── single-post-oembed.html ├── single-post-pyscript.html ├── timeline-basic-rss.html ├── timeline-emfed.html ├── timeline-mastofeed.html ├── timeline-meft.html └── timeline-pyscript.html /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/TODO.md -------------------------------------------------------------------------------- /css/fedi-share.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/css/fedi-share.css -------------------------------------------------------------------------------- /fedi-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/fedi-share.svg -------------------------------------------------------------------------------- /images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/apple-touch-icon.png -------------------------------------------------------------------------------- /images/badges/mastodon-follow-88x31-a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/badges/mastodon-follow-88x31-a.gif -------------------------------------------------------------------------------- /images/badges/mastodon-follow-88x31-b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/badges/mastodon-follow-88x31-b.gif -------------------------------------------------------------------------------- /images/badges/mastodon-follow-88x31-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/badges/mastodon-follow-88x31-c.gif -------------------------------------------------------------------------------- /images/badges/mastodon-follow-88x31-d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/badges/mastodon-follow-88x31-d.gif -------------------------------------------------------------------------------- /images/badges/mastodon-follow-88x31-e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/badges/mastodon-follow-88x31-e.gif -------------------------------------------------------------------------------- /images/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/favicon-96x96.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/images/favicon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/index.html -------------------------------------------------------------------------------- /js/fedi-share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/js/fedi-share.js -------------------------------------------------------------------------------- /mastodon-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/mastodon-logo.svg -------------------------------------------------------------------------------- /mastopy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/mastopy.html -------------------------------------------------------------------------------- /single-post-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/single-post-api.html -------------------------------------------------------------------------------- /single-post-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/single-post-oembed.html -------------------------------------------------------------------------------- /single-post-pyscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/single-post-pyscript.html -------------------------------------------------------------------------------- /timeline-basic-rss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/timeline-basic-rss.html -------------------------------------------------------------------------------- /timeline-emfed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/timeline-emfed.html -------------------------------------------------------------------------------- /timeline-mastofeed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/timeline-mastofeed.html -------------------------------------------------------------------------------- /timeline-meft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/timeline-meft.html -------------------------------------------------------------------------------- /timeline-pyscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypiper/mastodon-embeds-examples/HEAD/timeline-pyscript.html --------------------------------------------------------------------------------