├── 301.txt ├── .nvmrc ├── CNAME ├── favicon.ico ├── siteicon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── apple-touch-icon.png ├── images ├── image-600.jpg ├── image-1200.jpg ├── screenshot.png ├── screenshot_old.png ├── supply-overlay.png └── templates │ ├── jekyll │ ├── Supply-temp.png │ ├── Supply-temp-square.png │ └── Soon_Jekyll-template-sample.png │ ├── screenplay │ ├── Screenplay_Cole_Haag_template.png │ └── Screenplay_Warner_Brothers_template.png │ ├── assignments │ └── assignments_tracker_spreadsheet.png │ └── free-pdf-storyboards │ ├── Japanese_Anime_storyboard-template_1.85x1_A4-vertical.png │ ├── storyboard-anime-template_1.85x1_A4-vertical_print_preview.png │ └── storyboard-anime-template_1.85x1_A4-vertical_photoshop_preview.png ├── src ├── _styles.css ├── _lists.css ├── sup-tachyons.css ├── _code.css ├── _images.css ├── _forms.css ├── _module-template.css ├── _debug-children.css ├── _opacity.css ├── _links.css ├── _box-sizing.css ├── _font-style.css ├── _tables.css ├── _white-space.css ├── _line-height.css ├── _outlines.css ├── _word-break.css ├── _background-size.css ├── _clears.css ├── _letter-spacing.css ├── _position.css ├── _text-decoration.css ├── _utilities.css ├── _vertical-align.css ├── _text-align.css ├── _debug-grid.css ├── _media-queries.css ├── _nested.css ├── _text-transform.css ├── _visibility.css ├── _floats.css ├── _border-style.css ├── _z-index.css ├── _rotations.css ├── _box-shadow.css ├── _font-family.css ├── _borders.css ├── _colors.css ├── _border-widths.css ├── _font-weight.css ├── _type-scale.css ├── _max-widths.css ├── _typography.css ├── _overflow.css ├── tachyons.css ├── _background-position.css ├── _display.css ├── _heights.css ├── _hovers.css ├── _border-colors.css ├── _coordinates.css ├── _border-radius.css ├── _widths.css ├── _aspect-ratios.css ├── _debug.css └── _skins.css ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── robots.txt ├── _data ├── theme.yml └── navigation.yml ├── postcss.config.js ├── _includes ├── gumroad-link.html ├── video.html ├── relative-src.html ├── gumroad-overlay.html ├── gumroad-embed.html ├── product-styles.html ├── figure.html ├── Gumroad-secured.html ├── category_tag_list.html ├── post_pagination.html ├── formcarry.html ├── site-search.html ├── footer.html ├── navigation.html └── social-icon.html ├── _pages ├── contact-success.html ├── 404.md ├── privacy.md ├── support.md ├── blog.html ├── contact.html ├── faq.md ├── free-products.html └── about.md ├── .gitignore ├── _layouts ├── page.html ├── post.html ├── product.html ├── archive.html └── default.html ├── browserconfig.xml ├── Gemfile ├── site.webmanifest ├── _posts ├── 2020-04-19-post-updated.md ├── 2020-04-21-built-in-site-search.md ├── 2020-04-23-gumroad-hyperlink.md ├── 2021-08-26-jekyll-SEO.md ├── 2020-04-20-post-video.md ├── 2020-04-23-gumroad-embed.md ├── 2020-04-17-code-blocks.md ├── 2020-04-22-add-a-product-page.md ├── 2020-04-12-how-to-use-jekyll.md ├── 2020-04-23-gumroad-overlay.md ├── 2020-04-23-post-with-products.md ├── 2020-04-15-custom-variables.md └── 2020-04-12-supply-theme-setup.md ├── SECURITY.md ├── .github └── FUNDING.yml ├── safari-pinned-tab.svg ├── LICENSE ├── assets └── search.json ├── package.json ├── _products ├── assignments-tracker.md ├── supply-jekyll-e-commerce-theme.md ├── free-anime-storyboard-template-widescreen-a4-vertical.md ├── free-Japanese-anime-storyboard-template-widescreen-a4-vertical.md ├── soon-temporary-jekyll-site-template.md └── Screenplay-template-for-Apple-Pages-Warner-Brothers.md ├── index.html ├── _config.yml ├── CODE_OF_CONDUCT.md └── README.md /301.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.9.0 -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | supply.templates.supply 2 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/favicon.ico -------------------------------------------------------------------------------- /siteicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/siteicon.png -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-144x144.png -------------------------------------------------------------------------------- /mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-150x150.png -------------------------------------------------------------------------------- /mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-310x150.png -------------------------------------------------------------------------------- /mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-310x310.png -------------------------------------------------------------------------------- /mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-70x70.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /images/image-600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/image-600.jpg -------------------------------------------------------------------------------- /images/image-1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/image-1200.jpg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /src/_styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | STYLES 4 | 5 | Add custom styles here. 6 | 7 | */ 8 | 9 | -------------------------------------------------------------------------------- /images/screenshot_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/screenshot_old.png -------------------------------------------------------------------------------- /images/supply-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/supply-overlay.png -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/android-chrome-512x512.png -------------------------------------------------------------------------------- /images/templates/jekyll/Supply-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/jekyll/Supply-temp.png -------------------------------------------------------------------------------- /images/templates/jekyll/Supply-temp-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/jekyll/Supply-temp-square.png -------------------------------------------------------------------------------- /src/_lists.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | LISTS 4 | http://tachyons.io/docs/elements/lists/ 5 | 6 | */ 7 | 8 | .list { list-style-type: none; } 9 | -------------------------------------------------------------------------------- /src/sup-tachyons.css: -------------------------------------------------------------------------------- 1 | /*! Supply style + Tachyons | https://github.com/YJPL/supply */ 2 | 3 | @import './tachyons'; 4 | @import './sup-theme'; 5 | -------------------------------------------------------------------------------- /images/templates/jekyll/Soon_Jekyll-template-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/jekyll/Soon_Jekyll-template-sample.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | sitemap: false 4 | --- 5 | User-agent: * 6 | Sitemap: {{ site.url }}/sitemap.xml 7 | User-agent: GPTBot 8 | Disallow: / -------------------------------------------------------------------------------- /src/_code.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | CODE 4 | 5 | */ 6 | 7 | .pre { 8 | overflow-x: auto; 9 | overflow-y: hidden; 10 | overflow: scroll; 11 | } 12 | -------------------------------------------------------------------------------- /images/templates/screenplay/Screenplay_Cole_Haag_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/screenplay/Screenplay_Cole_Haag_template.png -------------------------------------------------------------------------------- /images/templates/assignments/assignments_tracker_spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/assignments/assignments_tracker_spreadsheet.png -------------------------------------------------------------------------------- /images/templates/screenplay/Screenplay_Warner_Brothers_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/screenplay/Screenplay_Warner_Brothers_template.png -------------------------------------------------------------------------------- /src/_images.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | IMAGES 4 | Docs: http://tachyons.io/docs/elements/images/ 5 | 6 | */ 7 | 8 | /* Responsive images! */ 9 | 10 | img { max-width: 100%; } 11 | 12 | -------------------------------------------------------------------------------- /_data/theme.yml: -------------------------------------------------------------------------------- 1 | # UI Default Settings 2 | category_tag_list : true # Show post categories & tags 3 | 4 | # UI Default Text 5 | text: 6 | # Post Settings 7 | updated : Updated 8 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('postcss-import'), 4 | require('postcss-nested'), 5 | require('postcss-preset-env'), 6 | require('autoprefixer') 7 | ] 8 | }; -------------------------------------------------------------------------------- /_includes/gumroad-link.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /_includes/video.html: -------------------------------------------------------------------------------- 1 |
Your message is sent. We'll be in touch soon.
9 | -------------------------------------------------------------------------------- /images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_print_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_print_preview.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .git 3 | .bundle 4 | .DS_Store 5 | _asset_bundler_cache 6 | _site 7 | _drafts 8 | .jekyll-metadata 9 | .jekyll-cache 10 | codekit-config.json 11 | config.codekit3 12 | Gemfile.lock 13 | node_modules 14 | npm-debug.log* 15 | .nova -------------------------------------------------------------------------------- /images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_photoshop_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_photoshop_preview.png -------------------------------------------------------------------------------- /_includes/gumroad-overlay.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ include.button }} {{ page.text-button }} -------------------------------------------------------------------------------- /src/_forms.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | FORMS 4 | 5 | */ 6 | 7 | .input-reset { 8 | -webkit-appearance: none; 9 | -moz-appearance: none; 10 | } 11 | 12 | .button-reset::-moz-focus-inner, 13 | .input-reset::-moz-focus-inner { 14 | border: 0; 15 | padding: 0; 16 | } 17 | -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- 1 | - name: Products 2 | link: / 3 | new_window: false 4 | highlight: true 5 | - name: About 6 | link: /about/ 7 | new_window: false 8 | highlight: false 9 | - name: Contact 10 | link: /contact/ 11 | new_window: false 12 | highlight: false 13 | -------------------------------------------------------------------------------- /_includes/gumroad-embed.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /_pages/404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Not Found 3 | hero: This does not exist 4 | permalink: /404.html 5 | sitemap: false 6 | --- 7 | 8 | ## 404 9 | Sorry, but the page you were trying to view is gone amiss---perhaps you can try a site search to find it. 10 | 11 | {% include site-search.html %} 12 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |" | remove: "
" }} 8 |