No description
Find a file
2023-02-26 11:08:45 +09:00
archetypes Fix typo in review archetype 2022-09-14 22:16:43 +09:00
content PUBLISH: Mission Impossible review 2023-02-26 11:08:45 +09:00
docs PUBLISH: Mission Impossible review 2023-02-26 11:08:45 +09:00
layouts PUBLISH: link home from the logo rather than a home link 2023-02-11 16:53:22 +09:00
static PUBLISH: Adjust font-size with screen size for slighlty better fonts on mobile 2023-02-18 14:13:04 +09:00
.envrc Initial commit with bare bones layout and a single post 2022-08-17 18:17:54 +09:00
.gitignore Ignore draft reviews 2022-09-02 17:55:08 +09:00
config.toml PUBLISH: Add copyright and links section to the footer 2023-01-18 17:12:52 +09:00
README.md Add a readme explaining basic usage 2023-02-11 17:03:07 +09:00
shell.nix Initial commit with bare bones layout and a single post 2022-08-17 18:17:54 +09:00

CaAlden: Films

This is the code and generation logic for my film recommendation blog. See the site for a better idea of the content.

Publishing

To publish updates to the blog, run

scripts/publish

This will regenerate the files and stage the changes for commiting to git

Authoring New Content

To pull down information about a movie and generate the shell of a review, run:

hugo new reviews/<title>.md
python scripts/bump_frontmatter.py reviews/<title>.md

where <title> is the name of the movie in kebab case.

The python script will fetch information from the open movie database including ratings and poster images. It makes a best guess about links to other sites but it's recommended that you confirm all generate content is valid

To view draft content run

hugo serve -D # -D includes draft content