├── favicon.ico ├── img ├── left.png └── right.png ├── README.md ├── embed.html ├── index.html ├── css ├── embed.css └── stylesheet.css └── js └── fetch.js /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/fossasia-webfeeds/gh-pages/favicon.ico -------------------------------------------------------------------------------- /img/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/fossasia-webfeeds/gh-pages/img/left.png -------------------------------------------------------------------------------- /img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/fossasia-webfeeds/gh-pages/img/right.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FOSSASIA Webfeeds 2 | 3 | This is a feeder of the official FOSSASIA blog for static websites. 4 | 5 | The `index.html` file has a designed version that can be used as a standalone site. The `embed.html` version is designed to be embedded into websites. For example, one can make an iframe and display it on his or her site. -------------------------------------------------------------------------------- /embed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |