├── license.txt ├── readme.rst ├── rename.json ├── root ├── Gruntfile.js ├── _gitignore ├── license.txt ├── package.json ├── project.json ├── src │ ├── assets │ │ ├── seattletimes.svg │ │ ├── social.jpg │ │ └── st-logo.png │ ├── css │ │ ├── comments.less │ │ ├── flexbox.less │ │ ├── seattletimes.less │ │ ├── seed.less │ │ └── values.less │ ├── index.html │ ├── js │ │ ├── lib │ │ │ ├── ads.js │ │ │ ├── animateScroll.js │ │ │ ├── closest.js │ │ │ ├── colors.js │ │ │ ├── debounce.js │ │ │ ├── delegate.js │ │ │ ├── dom.js │ │ │ ├── dot.js │ │ │ ├── flip.js │ │ │ ├── geolocation.js │ │ │ ├── paywall.js │ │ │ ├── prefixed.js │ │ │ ├── qsa.js │ │ │ └── xhr.js │ │ └── main.js │ └── partials │ │ ├── _ad.html │ │ ├── _analytics.html │ │ ├── _comments.html │ │ ├── _credits.html │ │ ├── _dataLayer.html │ │ ├── _dontMiss.html │ │ ├── _gtm.html │ │ ├── _gtmNoScript.html │ │ ├── _head.html │ │ ├── _marketing.html │ │ ├── _nav.html │ │ ├── _navBottom.html │ │ └── _workHere.html └── tasks │ ├── archieml.js │ ├── build.js │ ├── bundle.js │ ├── checklist.txt │ ├── clean.js │ ├── connect.js │ ├── copyAssets.js │ ├── cron.js │ ├── googleauth.js │ ├── less.js │ ├── lib │ ├── browserify-less.js │ ├── browserify-text.js │ ├── npm-less.js │ ├── rollup-plugins.js │ ├── s3.js │ └── template.js │ ├── loadCSV.js │ ├── loadDocs.js │ ├── loadJSON.js │ ├── loadSheets.js │ ├── markdown.js │ ├── publish.js │ ├── state.js │ └── watch.js └── template.js /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/license.txt -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/readme.rst -------------------------------------------------------------------------------- /rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/rename.json -------------------------------------------------------------------------------- /root/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/Gruntfile.js -------------------------------------------------------------------------------- /root/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/_gitignore -------------------------------------------------------------------------------- /root/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/license.txt -------------------------------------------------------------------------------- /root/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/package.json -------------------------------------------------------------------------------- /root/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/project.json -------------------------------------------------------------------------------- /root/src/assets/seattletimes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/assets/seattletimes.svg -------------------------------------------------------------------------------- /root/src/assets/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/assets/social.jpg -------------------------------------------------------------------------------- /root/src/assets/st-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/assets/st-logo.png -------------------------------------------------------------------------------- /root/src/css/comments.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/css/comments.less -------------------------------------------------------------------------------- /root/src/css/flexbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/css/flexbox.less -------------------------------------------------------------------------------- /root/src/css/seattletimes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/css/seattletimes.less -------------------------------------------------------------------------------- /root/src/css/seed.less: -------------------------------------------------------------------------------- 1 | @import "seattletimes"; -------------------------------------------------------------------------------- /root/src/css/values.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/css/values.less -------------------------------------------------------------------------------- /root/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/index.html -------------------------------------------------------------------------------- /root/src/js/lib/ads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/ads.js -------------------------------------------------------------------------------- /root/src/js/lib/animateScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/animateScroll.js -------------------------------------------------------------------------------- /root/src/js/lib/closest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/closest.js -------------------------------------------------------------------------------- /root/src/js/lib/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/colors.js -------------------------------------------------------------------------------- /root/src/js/lib/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/debounce.js -------------------------------------------------------------------------------- /root/src/js/lib/delegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/delegate.js -------------------------------------------------------------------------------- /root/src/js/lib/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/dom.js -------------------------------------------------------------------------------- /root/src/js/lib/dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/dot.js -------------------------------------------------------------------------------- /root/src/js/lib/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/flip.js -------------------------------------------------------------------------------- /root/src/js/lib/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/geolocation.js -------------------------------------------------------------------------------- /root/src/js/lib/paywall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/paywall.js -------------------------------------------------------------------------------- /root/src/js/lib/prefixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/prefixed.js -------------------------------------------------------------------------------- /root/src/js/lib/qsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/qsa.js -------------------------------------------------------------------------------- /root/src/js/lib/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/lib/xhr.js -------------------------------------------------------------------------------- /root/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/js/main.js -------------------------------------------------------------------------------- /root/src/partials/_ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_ad.html -------------------------------------------------------------------------------- /root/src/partials/_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_analytics.html -------------------------------------------------------------------------------- /root/src/partials/_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_comments.html -------------------------------------------------------------------------------- /root/src/partials/_credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_credits.html -------------------------------------------------------------------------------- /root/src/partials/_dataLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_dataLayer.html -------------------------------------------------------------------------------- /root/src/partials/_dontMiss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_dontMiss.html -------------------------------------------------------------------------------- /root/src/partials/_gtm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_gtm.html -------------------------------------------------------------------------------- /root/src/partials/_gtmNoScript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_gtmNoScript.html -------------------------------------------------------------------------------- /root/src/partials/_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_head.html -------------------------------------------------------------------------------- /root/src/partials/_marketing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_marketing.html -------------------------------------------------------------------------------- /root/src/partials/_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_nav.html -------------------------------------------------------------------------------- /root/src/partials/_navBottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_navBottom.html -------------------------------------------------------------------------------- /root/src/partials/_workHere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/src/partials/_workHere.html -------------------------------------------------------------------------------- /root/tasks/archieml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/archieml.js -------------------------------------------------------------------------------- /root/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/build.js -------------------------------------------------------------------------------- /root/tasks/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/bundle.js -------------------------------------------------------------------------------- /root/tasks/checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/checklist.txt -------------------------------------------------------------------------------- /root/tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/clean.js -------------------------------------------------------------------------------- /root/tasks/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/connect.js -------------------------------------------------------------------------------- /root/tasks/copyAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/copyAssets.js -------------------------------------------------------------------------------- /root/tasks/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/cron.js -------------------------------------------------------------------------------- /root/tasks/googleauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/googleauth.js -------------------------------------------------------------------------------- /root/tasks/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/less.js -------------------------------------------------------------------------------- /root/tasks/lib/browserify-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/lib/browserify-less.js -------------------------------------------------------------------------------- /root/tasks/lib/browserify-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/lib/browserify-text.js -------------------------------------------------------------------------------- /root/tasks/lib/npm-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/lib/npm-less.js -------------------------------------------------------------------------------- /root/tasks/lib/rollup-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/lib/rollup-plugins.js -------------------------------------------------------------------------------- /root/tasks/lib/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/lib/s3.js -------------------------------------------------------------------------------- /root/tasks/lib/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/lib/template.js -------------------------------------------------------------------------------- /root/tasks/loadCSV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/loadCSV.js -------------------------------------------------------------------------------- /root/tasks/loadDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/loadDocs.js -------------------------------------------------------------------------------- /root/tasks/loadJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/loadJSON.js -------------------------------------------------------------------------------- /root/tasks/loadSheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/loadSheets.js -------------------------------------------------------------------------------- /root/tasks/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/markdown.js -------------------------------------------------------------------------------- /root/tasks/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/publish.js -------------------------------------------------------------------------------- /root/tasks/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/state.js -------------------------------------------------------------------------------- /root/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/root/tasks/watch.js -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seattletimes/newsapp-template/HEAD/template.js --------------------------------------------------------------------------------