├── .github └── workflows │ └── build-templates.yml ├── .gitignore ├── README.md ├── _template ├── build-pkg.js ├── build.sh └── create-branches.sh ├── package_template.json ├── rollup.config.js ├── scripts └── setupTypeScript.js ├── src ├── ambient.d.ts ├── client.js ├── components │ └── Nav.svelte ├── node_modules │ └── images │ │ └── successkid.jpg ├── routes │ ├── _error.svelte │ ├── _layout.svelte │ ├── about.svelte │ ├── blog │ │ ├── [slug].json.js │ │ ├── [slug].svelte │ │ ├── _posts.js │ │ ├── index.json.js │ │ └── index.svelte │ └── index.svelte ├── server.js ├── service-worker.js └── template.html ├── static ├── favicon.png ├── global.css ├── logo-192.png ├── logo-512.png └── manifest.json └── webpack.config.js /.github/workflows/build-templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/.github/workflows/build-templates.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/README.md -------------------------------------------------------------------------------- /_template/build-pkg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/_template/build-pkg.js -------------------------------------------------------------------------------- /_template/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/_template/build.sh -------------------------------------------------------------------------------- /_template/create-branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/_template/create-branches.sh -------------------------------------------------------------------------------- /package_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/package_template.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/client.js -------------------------------------------------------------------------------- /src/components/Nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/components/Nav.svelte -------------------------------------------------------------------------------- /src/node_modules/images/successkid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/node_modules/images/successkid.jpg -------------------------------------------------------------------------------- /src/routes/_error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/_error.svelte -------------------------------------------------------------------------------- /src/routes/_layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/_layout.svelte -------------------------------------------------------------------------------- /src/routes/about.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/about.svelte -------------------------------------------------------------------------------- /src/routes/blog/[slug].json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/blog/[slug].json.js -------------------------------------------------------------------------------- /src/routes/blog/[slug].svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/blog/[slug].svelte -------------------------------------------------------------------------------- /src/routes/blog/_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/blog/_posts.js -------------------------------------------------------------------------------- /src/routes/blog/index.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/blog/index.json.js -------------------------------------------------------------------------------- /src/routes/blog/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/blog/index.svelte -------------------------------------------------------------------------------- /src/routes/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/routes/index.svelte -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/server.js -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/src/template.html -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/static/global.css -------------------------------------------------------------------------------- /static/logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/static/logo-192.png -------------------------------------------------------------------------------- /static/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/static/logo-512.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/static/manifest.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/sapper-template/HEAD/webpack.config.js --------------------------------------------------------------------------------