├── .gitignore ├── INSTALL ├── README.md ├── configs └── settings.yaml ├── datastore └── mongo.py ├── documentation ├── NewspaperInitialResearch.docx ├── article_json.png ├── dependencies_installation.md ├── sample_news_structure.json └── url_patters.md ├── env.sh.example ├── install.sh ├── nest ├── README.md ├── nest │ ├── __init__.py │ ├── items.py │ ├── news_parser.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ ├── __init__.py │ │ ├── al_jazeera_rss.py │ │ ├── newyork_times_rss.py │ │ └── the_peoples_daily_rss.py └── scrapy.cfg ├── newsblaster.sh ├── notebooks ├── TODO.ipynb ├── extracting_articles.ipynb └── query_articles.ipynb ├── scheduler ├── README.md ├── __init__.py ├── celery.py ├── cluster.py ├── summarize.py └── tasks.py ├── setup └── nltk_packages.py └── web ├── manage.py └── nbapp ├── __init__.py ├── app.py ├── config.py ├── models.py ├── static ├── font │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ ├── _banner.jpg │ ├── ad.jpg │ ├── author.jpg │ ├── banner-overlay.png │ ├── banner-overlay_s.png │ ├── banner.jpg │ ├── best-price.png │ ├── best-price@2x.png │ ├── button-pause.png │ ├── button-pause@2x.png │ ├── checkbox.png │ ├── checkbox@2x.png │ ├── dribbble.svg │ ├── facebook.svg │ ├── gallery.png │ ├── gallery │ │ ├── 1.jpg │ │ ├── 1s.jpg │ │ ├── 2.jpg │ │ ├── 2s.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg │ ├── gallery@2x.png │ ├── image-content.jpg │ ├── loading.gif │ ├── loading.png │ ├── logo.svg │ ├── menu.png │ ├── menu@2x.png │ ├── radio.png │ ├── radio@2x.png │ ├── search-mobi.png │ ├── search-mobi@2x.png │ ├── search.png │ ├── search@2x.png │ ├── slider │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── thumbs │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── toggle-panel.png │ ├── toggle-panel@2x.png │ ├── twitter.svg │ ├── user.jpg │ └── youtube.svg ├── javascript │ ├── bootstrap.min.js │ ├── gmap3.min.js │ ├── html5shiv.js │ ├── imagesloaded.min.js │ ├── jquery-waypoints.js │ ├── jquery.doubletaptogo.js │ ├── jquery.easing.js │ ├── jquery.flexslider.js │ ├── jquery.isotope.min.js │ ├── jquery.leanModal.min.js │ ├── jquery.mCustomScrollbar.js │ ├── jquery.min.js │ ├── jquery.transit.js │ ├── jquery.tweet.min.js │ ├── main.js │ ├── matchMedia.js │ ├── respond.min.js │ └── smoothscroll.js └── stylesheets │ ├── animate.css │ ├── bootstrap.css │ ├── colors │ ├── color1.css │ ├── color2.css │ ├── color3.css │ ├── color4.css │ └── color5.css │ ├── flexslider.css │ ├── font-awesome.css │ ├── mCustomScrollbar.css │ ├── shortcodes.css │ └── style.css └── templates ├── all.html ├── base.html ├── index.html └── sidebar.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/INSTALL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/README.md -------------------------------------------------------------------------------- /configs/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/configs/settings.yaml -------------------------------------------------------------------------------- /datastore/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/datastore/mongo.py -------------------------------------------------------------------------------- /documentation/NewspaperInitialResearch.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/documentation/NewspaperInitialResearch.docx -------------------------------------------------------------------------------- /documentation/article_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/documentation/article_json.png -------------------------------------------------------------------------------- /documentation/dependencies_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/documentation/dependencies_installation.md -------------------------------------------------------------------------------- /documentation/sample_news_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/documentation/sample_news_structure.json -------------------------------------------------------------------------------- /documentation/url_patters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/documentation/url_patters.md -------------------------------------------------------------------------------- /env.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/env.sh.example -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/install.sh -------------------------------------------------------------------------------- /nest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/README.md -------------------------------------------------------------------------------- /nest/nest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nest/nest/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/items.py -------------------------------------------------------------------------------- /nest/nest/news_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/news_parser.py -------------------------------------------------------------------------------- /nest/nest/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/pipelines.py -------------------------------------------------------------------------------- /nest/nest/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/settings.py -------------------------------------------------------------------------------- /nest/nest/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/spiders/__init__.py -------------------------------------------------------------------------------- /nest/nest/spiders/al_jazeera_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/spiders/al_jazeera_rss.py -------------------------------------------------------------------------------- /nest/nest/spiders/newyork_times_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/spiders/newyork_times_rss.py -------------------------------------------------------------------------------- /nest/nest/spiders/the_peoples_daily_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/nest/spiders/the_peoples_daily_rss.py -------------------------------------------------------------------------------- /nest/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/nest/scrapy.cfg -------------------------------------------------------------------------------- /newsblaster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/newsblaster.sh -------------------------------------------------------------------------------- /notebooks/TODO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/notebooks/TODO.ipynb -------------------------------------------------------------------------------- /notebooks/extracting_articles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/notebooks/extracting_articles.ipynb -------------------------------------------------------------------------------- /notebooks/query_articles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/notebooks/query_articles.ipynb -------------------------------------------------------------------------------- /scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/scheduler/README.md -------------------------------------------------------------------------------- /scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scheduler/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/scheduler/celery.py -------------------------------------------------------------------------------- /scheduler/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/scheduler/cluster.py -------------------------------------------------------------------------------- /scheduler/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/scheduler/summarize.py -------------------------------------------------------------------------------- /scheduler/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/scheduler/tasks.py -------------------------------------------------------------------------------- /setup/nltk_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/setup/nltk_packages.py -------------------------------------------------------------------------------- /web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/manage.py -------------------------------------------------------------------------------- /web/nbapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/nbapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/app.py -------------------------------------------------------------------------------- /web/nbapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/config.py -------------------------------------------------------------------------------- /web/nbapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/models.py -------------------------------------------------------------------------------- /web/nbapp/static/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/font/FontAwesome.otf -------------------------------------------------------------------------------- /web/nbapp/static/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /web/nbapp/static/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /web/nbapp/static/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /web/nbapp/static/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /web/nbapp/static/images/_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/_banner.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/ad.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/author.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/banner-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/banner-overlay.png -------------------------------------------------------------------------------- /web/nbapp/static/images/banner-overlay_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/banner-overlay_s.png -------------------------------------------------------------------------------- /web/nbapp/static/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/banner.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/best-price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/best-price.png -------------------------------------------------------------------------------- /web/nbapp/static/images/best-price@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/best-price@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/button-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/button-pause.png -------------------------------------------------------------------------------- /web/nbapp/static/images/button-pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/button-pause@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/checkbox.png -------------------------------------------------------------------------------- /web/nbapp/static/images/checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/checkbox@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/dribbble.svg -------------------------------------------------------------------------------- /web/nbapp/static/images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/facebook.svg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery.png -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery/1.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery/1s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery/1s.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery/2.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery/2s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery/2s.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery/3.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery/4.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery/5.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/gallery@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/image-content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/image-content.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/loading.gif -------------------------------------------------------------------------------- /web/nbapp/static/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/loading.png -------------------------------------------------------------------------------- /web/nbapp/static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/logo.svg -------------------------------------------------------------------------------- /web/nbapp/static/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/menu.png -------------------------------------------------------------------------------- /web/nbapp/static/images/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/menu@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/radio.png -------------------------------------------------------------------------------- /web/nbapp/static/images/radio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/radio@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/search-mobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/search-mobi.png -------------------------------------------------------------------------------- /web/nbapp/static/images/search-mobi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/search-mobi@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/search.png -------------------------------------------------------------------------------- /web/nbapp/static/images/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/search@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/slider/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/slider/1.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/slider/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/slider/2.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/slider/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/slider/3.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/1.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/10.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/11.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/2.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/3.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/4.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/5.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/6.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/7.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/8.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/thumbs/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/thumbs/9.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/toggle-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/toggle-panel.png -------------------------------------------------------------------------------- /web/nbapp/static/images/toggle-panel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/toggle-panel@2x.png -------------------------------------------------------------------------------- /web/nbapp/static/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/twitter.svg -------------------------------------------------------------------------------- /web/nbapp/static/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/user.jpg -------------------------------------------------------------------------------- /web/nbapp/static/images/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/images/youtube.svg -------------------------------------------------------------------------------- /web/nbapp/static/javascript/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/bootstrap.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/gmap3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/gmap3.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/html5shiv.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/imagesloaded.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/imagesloaded.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery-waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery-waypoints.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.doubletaptogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.doubletaptogo.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.easing.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.flexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.flexslider.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.isotope.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.isotope.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.leanModal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.leanModal.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.mCustomScrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.mCustomScrollbar.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.transit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.transit.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/jquery.tweet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/jquery.tweet.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/main.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/matchMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/matchMedia.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/respond.min.js -------------------------------------------------------------------------------- /web/nbapp/static/javascript/smoothscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/javascript/smoothscroll.js -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/animate.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/colors/color1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/colors/color1.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/colors/color2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/colors/color2.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/colors/color3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/colors/color3.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/colors/color4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/colors/color4.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/colors/color5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/colors/color5.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/flexslider.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/font-awesome.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/mCustomScrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/mCustomScrollbar.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/shortcodes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/shortcodes.css -------------------------------------------------------------------------------- /web/nbapp/static/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/static/stylesheets/style.css -------------------------------------------------------------------------------- /web/nbapp/templates/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/templates/all.html -------------------------------------------------------------------------------- /web/nbapp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/templates/base.html -------------------------------------------------------------------------------- /web/nbapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/templates/index.html -------------------------------------------------------------------------------- /web/nbapp/templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedz/newsblaster/HEAD/web/nbapp/templates/sidebar.html --------------------------------------------------------------------------------