├── .gitignore
├── .gitattributes
├── postcss.config.js
├── assets
├── js
│ ├── index.js
│ ├── gallery.js
│ └── fitvids.js
└── css
│ └── screen.css
├── partials
└── card.hbs
├── index.hbs
├── page.hbs
├── error.hbs
├── tailwind.config.js
├── snowpack.config.js
├── post.hbs
├── LICENSE
├── default.hbs
├── package.json
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
3 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {}
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/assets/js/index.js:
--------------------------------------------------------------------------------
1 | import {fitVids} from './fitvids.js';
2 | import {gallery} from './gallery.js';
3 |
4 | fitVids();
5 | gallery();
6 |
--------------------------------------------------------------------------------
/partials/card.hbs:
--------------------------------------------------------------------------------
1 | {{!--
2 | Re-usable card for linking to posts
3 | --}}
4 |
5 | {{@site.description}}
7 | {{title}}
8 |
9 |
10 | {{@site.title}}
5 |
{{message}}
7 | 8 | 9 | {{#if errorDetails}} 10 |Published on
21 |{{tags separator=", " prefix="Tagged in: "}}
22 |