├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── package.json ├── src ├── app.js ├── css │ ├── app.css │ └── icons.css ├── index.html ├── pages │ ├── about.f7.html │ ├── dynamic-route.f7.html │ ├── form.f7.html │ ├── home.f7.html │ ├── not-found.f7.html │ ├── panel-left.f7.html │ └── panel-right.f7.html ├── routes.js └── template7-helpers-list.js └── static └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/app.js -------------------------------------------------------------------------------- /src/css/app.css: -------------------------------------------------------------------------------- 1 | /* Your app styles here */ -------------------------------------------------------------------------------- /src/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/css/icons.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/about.f7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/pages/about.f7.html -------------------------------------------------------------------------------- /src/pages/dynamic-route.f7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/pages/dynamic-route.f7.html -------------------------------------------------------------------------------- /src/pages/form.f7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/pages/form.f7.html -------------------------------------------------------------------------------- /src/pages/home.f7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/pages/home.f7.html -------------------------------------------------------------------------------- /src/pages/not-found.f7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/pages/not-found.f7.html -------------------------------------------------------------------------------- /src/pages/panel-left.f7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/pages/panel-left.f7.html -------------------------------------------------------------------------------- /src/pages/panel-right.f7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/pages/panel-right.f7.html -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/template7-helpers-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-webpack/HEAD/src/template7-helpers-list.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------