├── .editorconfig ├── .github └── dependabot.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── data-visuals-create ├── lib ├── colors.js ├── index.js └── utils.js ├── package.json └── templates ├── __common__ ├── LICENSE ├── _.editorconfig ├── _.eslintrc ├── _.gitattributes ├── _.gitignore ├── _.npmrc ├── _.prettierignore ├── _babel.config.json ├── _package.json ├── app │ ├── assets │ │ └── .gitkeep │ ├── scripts │ │ ├── embeds │ │ │ └── frames.js │ │ └── utils │ │ │ ├── camel-case.js │ │ │ ├── clamp.js │ │ │ ├── d3-base.js │ │ │ ├── debounce.js │ │ │ ├── geoip.js │ │ │ ├── get-attributes.js │ │ │ ├── get-current-url.js │ │ │ ├── get-json.js │ │ │ ├── get-matching-attributes.js │ │ │ ├── last.js │ │ │ ├── lazy-load-images.js │ │ │ ├── load-json-script.js │ │ │ ├── load-script.js │ │ │ ├── make-api-request.js │ │ │ ├── on-document-complete.js │ │ │ ├── on-document-ready.js │ │ │ ├── parse-query-string.js │ │ │ ├── prepare-data.js │ │ │ ├── select-all.js │ │ │ ├── select.js │ │ │ ├── serialize-query-string.js │ │ │ ├── sum-values.js │ │ │ ├── throttle.js │ │ │ └── unique-id.js │ ├── styles │ │ ├── _buttons.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _icons.scss │ │ ├── _mixins.scss │ │ ├── _overrides.scss │ │ ├── _pills.scss │ │ ├── _polls.scss │ │ ├── _reset.scss │ │ ├── _typography-queso.scss │ │ ├── _typography.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── components │ │ │ ├── _chart.scss │ │ │ ├── _graphic.scss │ │ │ └── _table.scss │ │ ├── mixins │ │ │ ├── _clearfix.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _links.scss │ │ │ ├── _lists.scss │ │ │ ├── _pill.scss │ │ │ ├── _resize.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _site-logo-height.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ └── utilities │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ └── templates │ │ ├── includes │ │ ├── figma2html-config.html │ │ └── nomodule-shim.html │ │ └── macros │ │ ├── prose-queso.html │ │ ├── prose.html │ │ └── shares.html ├── config │ ├── build │ │ └── yarn-check.js │ ├── env.js │ ├── legacy-polyfills.js │ ├── modern-polyfills.js │ ├── paths.js │ ├── polyfills │ │ └── classlist.js │ ├── scripts │ │ ├── build.js │ │ ├── develop.js │ │ └── parse.js │ ├── tasks │ │ ├── api.js │ │ ├── check-node-versions.js │ │ ├── clean.js │ │ ├── copy.js │ │ ├── graphics-meta.js │ │ ├── images.js │ │ ├── last-build-time.js │ │ ├── nunjucks.js │ │ ├── parse-figma2html.js │ │ ├── rev-replace.js │ │ ├── rev.js │ │ ├── scripts.js │ │ ├── serve.js │ │ ├── styles.js │ │ ├── templates.js │ │ └── unused-css.js │ ├── utils.js │ ├── webpack-utils.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── data │ └── .gitkeep ├── project-metadata.md ├── tsconfig.json ├── utils │ ├── deployment │ │ ├── cache-lookup.js │ │ ├── deploy.js │ │ ├── pull-assets.js │ │ ├── pull-workspace.js │ │ ├── push-assets.js │ │ ├── push-workspace.js │ │ ├── s3.js │ │ ├── update-log-sheet.js │ │ └── update-readme.js │ ├── fetch │ │ ├── authorize.js │ │ ├── doc-to-archieml.js │ │ ├── get-data.js │ │ ├── sheet-by-range.js │ │ └── sheet-to-data.js │ └── parse-data.js └── workspace │ └── README.md ├── feature ├── README.md ├── app │ ├── index.html │ ├── scripts │ │ ├── components │ │ │ ├── AsyncComponent.js │ │ │ ├── Portal.js │ │ │ ├── RelatedContent.js │ │ │ ├── Ribbon.js │ │ │ ├── Story.js │ │ │ └── utils.js │ │ ├── kickstart.js │ │ ├── packs │ │ │ ├── graphic-embed.js │ │ │ ├── graphic.js │ │ │ ├── main-embed.js │ │ │ └── main.js │ │ └── utils │ │ │ ├── ad-loader.js │ │ │ └── feeds.js │ ├── styles │ │ ├── components │ │ │ ├── _ads.scss │ │ │ ├── _authors.scss │ │ │ ├── _brief-promo.scss │ │ │ ├── _details.scss │ │ │ ├── _footer.scss │ │ │ ├── _images.scss │ │ │ ├── _masthead.scss │ │ │ ├── _navbar.scss │ │ │ ├── _related-content.scss │ │ │ ├── _ribbon.scss │ │ │ ├── _share-buttons.scss │ │ │ └── _site-header.scss │ │ ├── layout │ │ │ └── _container.scss │ │ ├── main-queso.scss │ │ └── main.scss │ └── templates │ │ ├── base-embed.html │ │ ├── base.html │ │ ├── components │ │ ├── footer.html │ │ ├── masthead.html │ │ ├── navbar.html │ │ ├── share.html │ │ └── simple-masthead.html │ │ ├── embed.html │ │ ├── includes │ │ ├── authors.html │ │ ├── brief-promo.html │ │ ├── contributors.html │ │ ├── ldjson.html │ │ ├── logo.html │ │ ├── metas.html │ │ ├── shares.html │ │ ├── svg-defs.html │ │ └── trust-project.html │ │ ├── index-old.html │ │ └── macros │ │ ├── processors-queso.html │ │ └── processors.html └── project.config.js └── graphic ├── README.md ├── app ├── index.html ├── scripts │ └── packs │ │ ├── graphic.js │ │ ├── main.js │ │ └── static.js ├── styles │ ├── main.scss │ └── raw-plugin-styles.html └── templates │ ├── base.html │ ├── graphic-static.html │ ├── graphic.html │ └── macros │ └── processors.html └── project.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/README.md -------------------------------------------------------------------------------- /bin/data-visuals-create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/bin/data-visuals-create -------------------------------------------------------------------------------- /lib/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/lib/colors.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/package.json -------------------------------------------------------------------------------- /templates/__common__/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/LICENSE -------------------------------------------------------------------------------- /templates/__common__/_.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/_.editorconfig -------------------------------------------------------------------------------- /templates/__common__/_.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/_.eslintrc -------------------------------------------------------------------------------- /templates/__common__/_.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /templates/__common__/_.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/_.gitignore -------------------------------------------------------------------------------- /templates/__common__/_.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/_.npmrc -------------------------------------------------------------------------------- /templates/__common__/_.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/_.prettierignore -------------------------------------------------------------------------------- /templates/__common__/_babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/_babel.config.json -------------------------------------------------------------------------------- /templates/__common__/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/_package.json -------------------------------------------------------------------------------- /templates/__common__/app/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/__common__/app/scripts/embeds/frames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/embeds/frames.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/camel-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/camel-case.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/clamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/clamp.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/d3-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/d3-base.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/debounce.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/geoip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/geoip.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/get-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/get-attributes.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/get-current-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/get-current-url.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/get-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/get-json.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/get-matching-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/get-matching-attributes.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/last.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/last.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/lazy-load-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/lazy-load-images.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/load-json-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/load-json-script.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/load-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/load-script.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/make-api-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/make-api-request.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/on-document-complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/on-document-complete.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/on-document-ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/on-document-ready.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/parse-query-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/parse-query-string.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/prepare-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/prepare-data.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/select-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/select-all.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/select.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/serialize-query-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/serialize-query-string.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/sum-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/sum-values.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/throttle.js -------------------------------------------------------------------------------- /templates/__common__/app/scripts/utils/unique-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/scripts/utils/unique-id.js -------------------------------------------------------------------------------- /templates/__common__/app/styles/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_buttons.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_functions.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_grid.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_icons.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_mixins.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_overrides.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_pills.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_pills.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_polls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_polls.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_reset.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_typography-queso.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_typography-queso.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_typography.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_utilities.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/_variables.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/components/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/components/_chart.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/components/_graphic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/components/_graphic.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/components/_table.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_clearfix.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_grid.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_hover.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_image.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_links.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_lists.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_pill.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_resize.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_screenreaders.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_site-logo-height.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_site-logo-height.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_transition.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/mixins/_visibility.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_clearfix.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_display.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_embed.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_float.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_position.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_shadows.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_sizing.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_text.scss -------------------------------------------------------------------------------- /templates/__common__/app/styles/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/styles/utilities/_visibility.scss -------------------------------------------------------------------------------- /templates/__common__/app/templates/includes/figma2html-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/templates/includes/figma2html-config.html -------------------------------------------------------------------------------- /templates/__common__/app/templates/includes/nomodule-shim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/templates/includes/nomodule-shim.html -------------------------------------------------------------------------------- /templates/__common__/app/templates/macros/prose-queso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/templates/macros/prose-queso.html -------------------------------------------------------------------------------- /templates/__common__/app/templates/macros/prose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/templates/macros/prose.html -------------------------------------------------------------------------------- /templates/__common__/app/templates/macros/shares.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/app/templates/macros/shares.html -------------------------------------------------------------------------------- /templates/__common__/config/build/yarn-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/build/yarn-check.js -------------------------------------------------------------------------------- /templates/__common__/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/env.js -------------------------------------------------------------------------------- /templates/__common__/config/legacy-polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/legacy-polyfills.js -------------------------------------------------------------------------------- /templates/__common__/config/modern-polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/modern-polyfills.js -------------------------------------------------------------------------------- /templates/__common__/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/paths.js -------------------------------------------------------------------------------- /templates/__common__/config/polyfills/classlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/polyfills/classlist.js -------------------------------------------------------------------------------- /templates/__common__/config/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/scripts/build.js -------------------------------------------------------------------------------- /templates/__common__/config/scripts/develop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/scripts/develop.js -------------------------------------------------------------------------------- /templates/__common__/config/scripts/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/scripts/parse.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/api.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/check-node-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/check-node-versions.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/clean.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/copy.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/graphics-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/graphics-meta.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/images.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/last-build-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/last-build-time.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/nunjucks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/nunjucks.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/parse-figma2html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/parse-figma2html.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/rev-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/rev-replace.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/rev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/rev.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/scripts.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/serve.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/styles.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/templates.js -------------------------------------------------------------------------------- /templates/__common__/config/tasks/unused-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/tasks/unused-css.js -------------------------------------------------------------------------------- /templates/__common__/config/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/utils.js -------------------------------------------------------------------------------- /templates/__common__/config/webpack-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/webpack-utils.js -------------------------------------------------------------------------------- /templates/__common__/config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/webpack.config.dev.js -------------------------------------------------------------------------------- /templates/__common__/config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/config/webpack.config.prod.js -------------------------------------------------------------------------------- /templates/__common__/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/__common__/project-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/project-metadata.md -------------------------------------------------------------------------------- /templates/__common__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/tsconfig.json -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/cache-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/cache-lookup.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/deploy.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/pull-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/pull-assets.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/pull-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/pull-workspace.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/push-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/push-assets.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/push-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/push-workspace.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/s3.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/update-log-sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/update-log-sheet.js -------------------------------------------------------------------------------- /templates/__common__/utils/deployment/update-readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/deployment/update-readme.js -------------------------------------------------------------------------------- /templates/__common__/utils/fetch/authorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/fetch/authorize.js -------------------------------------------------------------------------------- /templates/__common__/utils/fetch/doc-to-archieml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/fetch/doc-to-archieml.js -------------------------------------------------------------------------------- /templates/__common__/utils/fetch/get-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/fetch/get-data.js -------------------------------------------------------------------------------- /templates/__common__/utils/fetch/sheet-by-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/fetch/sheet-by-range.js -------------------------------------------------------------------------------- /templates/__common__/utils/fetch/sheet-to-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/fetch/sheet-to-data.js -------------------------------------------------------------------------------- /templates/__common__/utils/parse-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/utils/parse-data.js -------------------------------------------------------------------------------- /templates/__common__/workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/__common__/workspace/README.md -------------------------------------------------------------------------------- /templates/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/README.md -------------------------------------------------------------------------------- /templates/feature/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/index.html -------------------------------------------------------------------------------- /templates/feature/app/scripts/components/AsyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/components/AsyncComponent.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/components/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/components/Portal.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/components/RelatedContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/components/RelatedContent.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/components/Ribbon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/components/Ribbon.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/components/Story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/components/Story.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/components/utils.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/kickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/kickstart.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/packs/graphic-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/packs/graphic-embed.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/packs/graphic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/packs/graphic.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/packs/main-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/packs/main-embed.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/packs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/packs/main.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/utils/ad-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/utils/ad-loader.js -------------------------------------------------------------------------------- /templates/feature/app/scripts/utils/feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/scripts/utils/feeds.js -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_ads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_ads.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_authors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_authors.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_brief-promo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_brief-promo.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_details.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_footer.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_images.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_masthead.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_navbar.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_related-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_related-content.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_ribbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_ribbon.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_share-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_share-buttons.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/components/_site-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/components/_site-header.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/layout/_container.scss: -------------------------------------------------------------------------------- 1 | .l-container--share { 2 | max-width: 30rem; 3 | } 4 | -------------------------------------------------------------------------------- /templates/feature/app/styles/main-queso.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/main-queso.scss -------------------------------------------------------------------------------- /templates/feature/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/styles/main.scss -------------------------------------------------------------------------------- /templates/feature/app/templates/base-embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/base-embed.html -------------------------------------------------------------------------------- /templates/feature/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/base.html -------------------------------------------------------------------------------- /templates/feature/app/templates/components/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/components/footer.html -------------------------------------------------------------------------------- /templates/feature/app/templates/components/masthead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/components/masthead.html -------------------------------------------------------------------------------- /templates/feature/app/templates/components/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/components/navbar.html -------------------------------------------------------------------------------- /templates/feature/app/templates/components/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/components/share.html -------------------------------------------------------------------------------- /templates/feature/app/templates/components/simple-masthead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/components/simple-masthead.html -------------------------------------------------------------------------------- /templates/feature/app/templates/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/embed.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/authors.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/brief-promo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/brief-promo.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/contributors.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/ldjson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/ldjson.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/logo.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/metas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/metas.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/shares.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/shares.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/svg-defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/svg-defs.html -------------------------------------------------------------------------------- /templates/feature/app/templates/includes/trust-project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/includes/trust-project.html -------------------------------------------------------------------------------- /templates/feature/app/templates/index-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/index-old.html -------------------------------------------------------------------------------- /templates/feature/app/templates/macros/processors-queso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/macros/processors-queso.html -------------------------------------------------------------------------------- /templates/feature/app/templates/macros/processors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/app/templates/macros/processors.html -------------------------------------------------------------------------------- /templates/feature/project.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/feature/project.config.js -------------------------------------------------------------------------------- /templates/graphic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/README.md -------------------------------------------------------------------------------- /templates/graphic/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/index.html -------------------------------------------------------------------------------- /templates/graphic/app/scripts/packs/graphic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/scripts/packs/graphic.js -------------------------------------------------------------------------------- /templates/graphic/app/scripts/packs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/scripts/packs/main.js -------------------------------------------------------------------------------- /templates/graphic/app/scripts/packs/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/scripts/packs/static.js -------------------------------------------------------------------------------- /templates/graphic/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/styles/main.scss -------------------------------------------------------------------------------- /templates/graphic/app/styles/raw-plugin-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/styles/raw-plugin-styles.html -------------------------------------------------------------------------------- /templates/graphic/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/templates/base.html -------------------------------------------------------------------------------- /templates/graphic/app/templates/graphic-static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/templates/graphic-static.html -------------------------------------------------------------------------------- /templates/graphic/app/templates/graphic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/templates/graphic.html -------------------------------------------------------------------------------- /templates/graphic/app/templates/macros/processors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/app/templates/macros/processors.html -------------------------------------------------------------------------------- /templates/graphic/project.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texastribune/data-visuals-create/HEAD/templates/graphic/project.config.js --------------------------------------------------------------------------------