├── .editorconfig ├── .github ├── FUNDING.yml └── pull_request_template.md ├── .gitignore ├── README.md ├── assets └── less │ ├── app.less │ └── helpers.less ├── babel.config.js ├── check-redirects.js ├── components ├── Blog.spec.js ├── Blog.vue ├── GithubCorner.vue ├── TheFooter.vue └── TheHeader.vue ├── data.json ├── jest.config.js ├── layouts └── default.vue ├── nuxt.config.js ├── package.json ├── pages ├── index.spec.js ├── index.vue └── list.vue ├── redirects.json ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── featured-dark-large.png ├── featured-dark-small.png ├── featured-light-large.png ├── featured-light-small.png ├── icon.png ├── logo.svg ├── safari-pinned-tab.svg ├── social-media-card-atb.jpg └── socials │ ├── linkedin-black.png │ ├── linkedin-white.png │ ├── x-black.png │ └── x-white.png └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: markodenic 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/README.md -------------------------------------------------------------------------------- /assets/less/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/assets/less/app.less -------------------------------------------------------------------------------- /assets/less/helpers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/assets/less/helpers.less -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/babel.config.js -------------------------------------------------------------------------------- /check-redirects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/check-redirects.js -------------------------------------------------------------------------------- /components/Blog.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/components/Blog.spec.js -------------------------------------------------------------------------------- /components/Blog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/components/Blog.vue -------------------------------------------------------------------------------- /components/GithubCorner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/components/GithubCorner.vue -------------------------------------------------------------------------------- /components/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/components/TheFooter.vue -------------------------------------------------------------------------------- /components/TheHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/components/TheHeader.vue -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/data.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/jest.config.js -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/pages/index.spec.js -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/pages/list.vue -------------------------------------------------------------------------------- /redirects.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/featured-dark-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/featured-dark-large.png -------------------------------------------------------------------------------- /static/featured-dark-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/featured-dark-small.png -------------------------------------------------------------------------------- /static/featured-light-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/featured-light-large.png -------------------------------------------------------------------------------- /static/featured-light-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/featured-light-small.png -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/logo.svg -------------------------------------------------------------------------------- /static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/social-media-card-atb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/social-media-card-atb.jpg -------------------------------------------------------------------------------- /static/socials/linkedin-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/socials/linkedin-black.png -------------------------------------------------------------------------------- /static/socials/linkedin-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/socials/linkedin-white.png -------------------------------------------------------------------------------- /static/socials/x-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/socials/x-black.png -------------------------------------------------------------------------------- /static/socials/x-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/static/socials/x-white.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markodenic/awesome-tech-blogs/HEAD/yarn.lock --------------------------------------------------------------------------------