+263
content/blog/2024-10-11_example_post.md
+263
content/blog/2024-10-11_example_post.md
···+First off, this paragraph is after the `<!-- more -->` cutoff, which means that it *should not*+Sections headers (prefixed with `##` in markdown) are the main content separators for posts, and+I usually use `###` sub-headers to ask the question I think the reader is (or should be) asking at+this point in the article. For example, if I just posted some code with an obvious error, I might+follow that up with `### Wait, won't that crash?` or something similar. Using this approach lets+me write posts in a conversational way, and helps me continually frame myself in the mind of the+Section and sub-headers can be used to generate a table of contents at the start of the page. To+I don't like content that is nested more than 2 layers deep, so only `##` and `###` should be used+This is prominently a coding blog, so code will show up a lot. First off, a monospaced text block is+denoted by wrapping the text in triple back-tick characters <code>```</code>.+If you want syntax coloring, you put the name of the programming language immediately after the ticks.+Sometimes it can help to give a header to a code block to signal what it represents. To do this, you put+a single-line block quote immediately before the code block. So by prepending the following code with+link to the [`Option<T>::take_if`](https://doc.rust-lang.org/std/option/enum.Option.html#method.take_if)+> “What is your opinion of the inimitable video game character, Sonic the Hedgehog? Please+For when I want to have a citation, I can use the html `<cite>` tag after the quote text and it+> "I don't know half of you half as well as I should like, and I like less than half of you half+These add more colors—and therefore noise—to the page and should be used sparingly.+The warning callout specifically is to alert readers to something particularly important, such+They were shown in the previous section, but icons (provided by [Remix Icon](https://remixicon.com/)),+can be used anywhere by inserting an `<i>` tag with the icon's class. These are useful for adding++<img src="https://img.itch.zone/aW1hZ2UvNTU2NDU0LzI5MTYzNzkucG5n/original/8LIdCb.png" alt="NOISE1 screenshot">+To embed a video, you use whatever embed tag works. For example, YouTube provides an `<iframe>` tag for+<iframe src="https://www.youtube.com/embed/kiWvNwuBbEE" title="Ikenfell Launch Trailer" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>+Do not use a `width` or `height` when doing this. The video should always be the full width of the page,
+6
content/blog/_index.md
+6
content/blog/_index.md
+10
templates/blog.html
+10
templates/blog.html
···