diff options
author | Bradley Taunt <bt@btxx.org> | 2024-02-02 13:05:54 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-02-02 13:05:54 -0500 |
commit | 13cec3d0fc257d0e65c9a1c06bfc71648722a506 (patch) | |
tree | aaf959aa898357abe14c45016a9071ce4d0587c0 /content/_pages/generating-this-blog.md |
Diffstat (limited to 'content/_pages/generating-this-blog.md')
-rw-r--r-- | content/_pages/generating-this-blog.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/content/_pages/generating-this-blog.md b/content/_pages/generating-this-blog.md new file mode 100644 index 0000000..6e79219 --- /dev/null +++ b/content/_pages/generating-this-blog.md @@ -0,0 +1,32 @@ +# Generating This Blog + +**Important**: Before building and uploading your single file blog, be sure to edit all the proper details found inside the `_phpetite/_config.php` file. This includes your domain, site title, author name, etc. + +Most users won't ever need to fiddle with the other files inside the `_phpetite` directory. + +--- + +Get [PHPetite](https://git.btxx.org/phpetite "PHPetite") in order to convert a collection of Markdown files into a single HTML file with inline CSS. + +1. Make proper edits to the `/_phpetite/_config.php` file +2. Write posts in `/content` +3. (Optional) include any images under the `/content/img/` directory +4. From the command-line run: + +```.shell +make +``` + +This will generate both the single file HTML page, along with an `atom.xml` file for the use of an optional RSS feed. + +These two files are output into the `_site` directory. + +## Looking for more advanced options? + +- [Adding Custom Pages](#adding-pages) +- [Converting from Jekyll](#2021-02-07-converting-from-jekyll) + +*[HTML]: Hyper Text Markup Language +*[CSS]: Cascading Style Sheets +*[URL]: Uniform Resource Locator +*[PHP]: Personal Hypertext Processor
\ No newline at end of file |