├── .babelrc ├── .gitignore ├── .postcss.config.js ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENCE ├── README.md ├── elm.json ├── firebase.json ├── functions ├── .eslintrc.json ├── index.js ├── package.json └── yarn.lock ├── package.json ├── public ├── favicon.ico ├── img │ ├── banner-photo.jpg │ ├── loading.gif │ └── neptune │ │ └── separator.png ├── index.html └── sitemap.xml ├── src ├── elm │ ├── Article.elm │ ├── Article │ │ ├── Decoder.elm │ │ └── Encoder.elm │ ├── Html │ │ └── Extra.elm │ ├── LocalStorage.elm │ ├── Main.elm │ ├── Ports.elm │ ├── Remote.elm │ ├── Routing.elm │ ├── Seeds │ │ └── Articles.elm │ ├── Types.elm │ ├── Update.elm │ ├── User.elm │ ├── User │ │ └── Decoder.elm │ └── View │ │ ├── Archives.elm │ │ ├── Article.elm │ │ ├── Article │ │ └── Edit.elm │ │ ├── Contact.elm │ │ ├── Dashboard.elm │ │ ├── Home.elm │ │ ├── Login.elm │ │ └── Static │ │ ├── About.elm │ │ ├── Footer.elm │ │ ├── Header.elm │ │ └── NotFound.elm ├── js │ ├── main.js │ └── post.js └── styles │ ├── main.css │ └── neptune │ ├── base.css │ ├── hamburgers.css │ ├── main.css │ └── markdown.css ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/.postcss.config.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/README.md -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/elm.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/functions/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/banner-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/public/img/banner-photo.jpg -------------------------------------------------------------------------------- /public/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/public/img/loading.gif -------------------------------------------------------------------------------- /public/img/neptune/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/public/img/neptune/separator.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/public/index.html -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /src/elm/Article.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Article.elm -------------------------------------------------------------------------------- /src/elm/Article/Decoder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Article/Decoder.elm -------------------------------------------------------------------------------- /src/elm/Article/Encoder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Article/Encoder.elm -------------------------------------------------------------------------------- /src/elm/Html/Extra.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Html/Extra.elm -------------------------------------------------------------------------------- /src/elm/LocalStorage.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/LocalStorage.elm -------------------------------------------------------------------------------- /src/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Main.elm -------------------------------------------------------------------------------- /src/elm/Ports.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Ports.elm -------------------------------------------------------------------------------- /src/elm/Remote.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Remote.elm -------------------------------------------------------------------------------- /src/elm/Routing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Routing.elm -------------------------------------------------------------------------------- /src/elm/Seeds/Articles.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Seeds/Articles.elm -------------------------------------------------------------------------------- /src/elm/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Types.elm -------------------------------------------------------------------------------- /src/elm/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/Update.elm -------------------------------------------------------------------------------- /src/elm/User.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/User.elm -------------------------------------------------------------------------------- /src/elm/User/Decoder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/User/Decoder.elm -------------------------------------------------------------------------------- /src/elm/View/Archives.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Archives.elm -------------------------------------------------------------------------------- /src/elm/View/Article.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Article.elm -------------------------------------------------------------------------------- /src/elm/View/Article/Edit.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Article/Edit.elm -------------------------------------------------------------------------------- /src/elm/View/Contact.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Contact.elm -------------------------------------------------------------------------------- /src/elm/View/Dashboard.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Dashboard.elm -------------------------------------------------------------------------------- /src/elm/View/Home.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Home.elm -------------------------------------------------------------------------------- /src/elm/View/Login.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Login.elm -------------------------------------------------------------------------------- /src/elm/View/Static/About.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Static/About.elm -------------------------------------------------------------------------------- /src/elm/View/Static/Footer.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Static/Footer.elm -------------------------------------------------------------------------------- /src/elm/View/Static/Header.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Static/Header.elm -------------------------------------------------------------------------------- /src/elm/View/Static/NotFound.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/elm/View/Static/NotFound.elm -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/js/post.js -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /src/styles/neptune/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/styles/neptune/base.css -------------------------------------------------------------------------------- /src/styles/neptune/hamburgers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/styles/neptune/hamburgers.css -------------------------------------------------------------------------------- /src/styles/neptune/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/styles/neptune/main.css -------------------------------------------------------------------------------- /src/styles/neptune/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/src/styles/neptune/markdown.css -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/webpack.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/fireblog/HEAD/yarn.lock --------------------------------------------------------------------------------