├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config ├── app.json ├── colors.json ├── theme.js └── webpack.js ├── logo.md ├── package.json ├── src ├── components │ ├── App │ │ ├── index.css │ │ └── index.js │ ├── GitHub │ │ └── GitHubRepo.js │ ├── HackerNews │ │ └── HackerNewsStory.js │ ├── Header │ │ ├── index.css │ │ └── index.js │ ├── Icons │ │ └── index.js │ ├── Logo │ │ └── index.js │ ├── News │ │ ├── index.css │ │ └── index.js │ ├── NewsList │ │ ├── index.css │ │ └── index.js │ ├── PlaceholderShimmer │ │ ├── index.css │ │ └── index.js │ └── ProductHunt │ │ └── ProductHuntItem.js ├── data │ └── index.js ├── index.ejs ├── index.js └── static │ ├── CNAME │ ├── favicons │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-36x36.png │ ├── android-chrome-48x48.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── safari-pinned-tab.svg │ ├── icon.png │ ├── icon.svg │ ├── logo.png │ └── logo.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/README.md -------------------------------------------------------------------------------- /config/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/config/app.json -------------------------------------------------------------------------------- /config/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/config/colors.json -------------------------------------------------------------------------------- /config/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/config/theme.js -------------------------------------------------------------------------------- /config/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/config/webpack.js -------------------------------------------------------------------------------- /logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/logo.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/package.json -------------------------------------------------------------------------------- /src/components/App/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/App/index.css -------------------------------------------------------------------------------- /src/components/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/App/index.js -------------------------------------------------------------------------------- /src/components/GitHub/GitHubRepo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/GitHub/GitHubRepo.js -------------------------------------------------------------------------------- /src/components/HackerNews/HackerNewsStory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/HackerNews/HackerNewsStory.js -------------------------------------------------------------------------------- /src/components/Header/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/Header/index.css -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/Icons/index.js -------------------------------------------------------------------------------- /src/components/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/Logo/index.js -------------------------------------------------------------------------------- /src/components/News/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/News/index.css -------------------------------------------------------------------------------- /src/components/News/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/News/index.js -------------------------------------------------------------------------------- /src/components/NewsList/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/NewsList/index.css -------------------------------------------------------------------------------- /src/components/NewsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/NewsList/index.js -------------------------------------------------------------------------------- /src/components/PlaceholderShimmer/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/PlaceholderShimmer/index.css -------------------------------------------------------------------------------- /src/components/PlaceholderShimmer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/PlaceholderShimmer/index.js -------------------------------------------------------------------------------- /src/components/ProductHunt/ProductHuntItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/components/ProductHunt/ProductHuntItem.js -------------------------------------------------------------------------------- /src/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/data/index.js -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/index.js -------------------------------------------------------------------------------- /src/static/CNAME: -------------------------------------------------------------------------------- 1 | devne.ws 2 | -------------------------------------------------------------------------------- /src/static/favicons/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/android-chrome-144x144.png -------------------------------------------------------------------------------- /src/static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/static/favicons/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/android-chrome-36x36.png -------------------------------------------------------------------------------- /src/static/favicons/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/android-chrome-48x48.png -------------------------------------------------------------------------------- /src/static/favicons/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/android-chrome-72x72.png -------------------------------------------------------------------------------- /src/static/favicons/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/android-chrome-96x96.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /src/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /src/static/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/browserconfig.xml -------------------------------------------------------------------------------- /src/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /src/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /src/static/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /src/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/favicon.ico -------------------------------------------------------------------------------- /src/static/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/manifest.json -------------------------------------------------------------------------------- /src/static/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /src/static/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /src/static/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /src/static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/icon.png -------------------------------------------------------------------------------- /src/static/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/icon.svg -------------------------------------------------------------------------------- /src/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/logo.png -------------------------------------------------------------------------------- /src/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/src/static/logo.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnews/web/HEAD/yarn.lock --------------------------------------------------------------------------------