https://kbeezie.com
First I made the theme that closely resembled what WP theme I was using before, a very monotone style blocky theme that's kind of straight to the point. This time without a side bar or any additional static pages.
To get all my content over I wrote a WP to Bludit plugin since doing so by python was causing page ordering issues, so figured it would be best to do it internally to help retain the behavior of date or position ordering. The plugin also helped strip a lot of the unnecessary tags, and classes and so forth.
But I also wanted to retain the syntax highlighting I previously had on wordpress, so set up another plugin that basically allowed for using PrismJS on my site so that in my editor I can just do something like
Code: Select all
<pre class="language-nginx"><code>
#ssl_stapling on;
#ssl_stapling_verify on;
</code></pre>
And then I was missing how none of my pages would be pagenated with <!-- pagebreak --> so I wrote another plugin as a "page breaker" so that where it detects <!-- pagebreak --> within the content it would divide them up into pages and to allow for the url to reflect that (Same style as my blog listing pagenation and tag/category). Course I had to circle around and make sure the plugin respected that the Markdown parser was turned off in the main settings, or it would start parsing the content pieces.
I used one of my ancient configuration sample guides to break it up into four pages with <!-- pagebreak -->
https://kbeezie.com/nginx-configuration-examples
https://kbeezie.com/nginx-configuration-examples/page/2
https://kbeezie.com/nginx-configuration-examples/page/3
and so on.
What I'm hoping to do next is be able to configure the theme options in the sidebar such as accent colors, and styling. But that'll come after I go thru and actually update my old content that's salvageable and add on some new stuff.

