From a38b812854b9c08d377ce3e6758245500bc0907c Mon Sep 17 00:00:00 2001 From: mattkae Date: Tue, 20 Jun 2023 11:46:22 -0400 Subject: Finalizing v1 of the blogging sytem --- _posts/hello.org | 15 +++++- _posts/sitemap.org | 4 +- posts/hello.html | 155 +++++++++++++++++++++++++++++++++++++++++------------ posts/sitemap.html | 6 +-- 4 files changed, 138 insertions(+), 42 deletions(-) diff --git a/_posts/hello.org b/_posts/hello.org index f16d5bc..571e1a3 100644 --- a/_posts/hello.org +++ b/_posts/hello.org @@ -2,13 +2,21 @@ :ID: 73d663b6-1aea-4d82-a0f6-b88b302e49cb :END: #+TITLE: Hello, Org -#+DATE: <2023-06-15 Thu> +#+DATE: <2023-06-20 Tue 11:45> #+filetags: :technology:home: * TLDR - +- Create a new folder +- Put [[https://raw.githubusercontent.com/mattkae/matthewkosarek-xyz/master/index.css][index.css]], [[https://raw.githubusercontent.com/mattkae/matthewkosarek-xyz/master/publish.el][publish.el]], and [[https://github.com/mattkae/matthewkosarek-xyz/blob/master/publish.sh][publish.sh]] in the folder +- Create a folder called ~_posts~ (this is where blog posts are written) +- Create an org file in ~_posts~, ideally with a ~#+DATE~ and ~#+TITLE~ attribute +- Create a folder called ~posts~ (this is where blog posts are published to) +- Put [[https://raw.githubusercontent.com/mattkae/matthewkosarek-xyz/master/posts/post.js][post.js]] and [[https://github.com/mattkae/matthewkosarek-xyz/blob/master/posts/post.css][post.css]] inside of the ~posts~ directory +- Run ~./publish.sh~ to generate the blog post files +- Run ~./python -m http.server 8080~ from the root folder +- Navigate to ~localhost:8080/posts/sitemap.html~ to see your posts * Introduction I've recently fallen in love with ~org-mode~, specifically when I use it with [[https://www.orgroam.com/][org-roam]]. I find the whole workflow of creating, tagging, and - later on - searching for information on my computer to be very elegant. On top of that, now that I have the time, I want to begin writing blog posts to better work out my thoughts. With both of these things in mind, I am again turning to the universal tool for human prospering: ~org-mode~. This time, I want to see how it can help me turn a simple org file into a blog post on my website. My requirements are: @@ -574,3 +582,6 @@ Finally, let's append the following to ~posts/posts.css~ so that our tag list is opacity: 0.8; } #+END_SRC + +* Conclusion +There are many more customizations that I plan to do on this system in the future, but I plan to leave this for now so that I can actually get to some blogging. I will proofread and fix my mistakes as time goes on, but this should be a good jumping off point for anyone interested in using org for their own blogging system. diff --git a/_posts/sitemap.org b/_posts/sitemap.org index b69317f..81ef5f4 100644 --- a/_posts/sitemap.org +++ b/_posts/sitemap.org @@ -1,12 +1,12 @@ #+TITLE: Matthew's Blog Posts -#+DATE: 2023-06-20 at 11:32 +#+DATE: 2023-06-20 at 11:46 #+HTML_LINK_HOME: / #+HTML_LINK_UP: / -- [[file:hello.org][Hello, Org]] created on June 15, 2023 +- [[file:hello.org][Hello, Org]] created on June 20, 2023 #+begin_sitemap_tag technology,home #+end_sitemap_tag \ No newline at end of file diff --git a/posts/hello.html b/posts/hello.html index 5a94493..b1fb9a4 100644 --- a/posts/hello.html +++ b/posts/hello.html @@ -21,15 +21,33 @@

Hello, Org

- Last modified: 2023-06-15 Thu 00:00 + Last modified: 2023-06-20 Tue 11:45
-
-

Introduction

-
+ +
+

TLDR

+
+
    +
  • Create a new folder
  • +
  • Put index.css, publish.el, and publish.sh in the folder
  • +
  • Create a folder called _posts (this is where blog posts are written)
  • +
  • Create an org file in _posts, ideally with a #+DATE and #+TITLE attribute
  • +
  • Create a folder called posts (this is where blog posts are published to)
  • +
  • Put post.js and post.css inside of the posts directory
  • +
  • Run ./publish.sh to generate the blog post files
  • +
  • Run ./python -m http.server 8080 from the root folder
  • +
  • Navigate to localhost:8080/posts/sitemap.html to see your posts
  • +
+
+
+ +
+

Introduction

+

I've recently fallen in love with org-mode, specifically when I use it with org-roam. I find the whole workflow of creating, tagging, and - later on - searching for information on my computer to be very elegant. On top of that, now that I have the time, I want to begin writing blog posts to better work out my thoughts. With both of these things in mind, I am again turning to the universal tool for human prospering: org-mode. This time, I want to see how it can help me turn a simple org file into a blog post on my website. My requirements are:

@@ -53,9 +71,9 @@ And that's pretty much it for now. Without further ado, let's jump into getting
-
-

Basic HTML File

-
+
+

Basic HTML File

+

As a pilot, we are going to use this org file that I am currently writing (hello.org) as our guinea pig. The goal is to have this org file be our very first blog post.

@@ -96,9 +114,9 @@ We then do a chmod +x publish.sh to make it an executable and run i
-
-

Disabling features that we don't want

-
+
+

Disabling features that we don't want

+

The next thing will be to remove some of the generated items that I didn't ask for, namely the table of contents, author, section numbers, creation time stamp, and the validation link.

@@ -127,9 +145,9 @@ The next thing will be to remove some of the generated items that I didn't ask f
-
-

Styling & Code Highlighting

-
+
+

Styling & Code Highlighting

+

Next thing on our list is custom styling. This can be achieved by first installing the htmlize package from melpa / elpa. The EmacsWiki describes this as "a package for exporting the contents of an Emacs buffer to HTML while respecting display properties such as colors, fonts, underlining, invisibility, etc" (reference). If used "out-of-the-box", the buffer will be exported to HTML with all of the styles inlined (e.g. if you underline something in your org file, you will generate a <span style="text-decoration: underline">...</span>). However, we are more interested in styling everything by ourselves: we don't want htmlize making assumptions about what underlining means to us! Luckily, htmlize gives us the option to export with class names instead of inline styles so that we can specify each style for ourselves.

@@ -300,9 +318,9 @@ If we run the publish again, we can see that we have full styling on our code sn
-
-

Images

-
+
+

Images

+

Our first two criteria have been met! Next on the list is solving images. As an example, let's use this squirrel image that I found online with an open source license. The ideal situation would be:

@@ -347,7 +365,7 @@ So what's the fix here? Well, we have two options, but I am going to go with the That's all there is to it! There are simpler ways as well, but that should do it:

-
+

squirrel.jpg

Figure 1: A Cute Squirrel

@@ -356,9 +374,9 @@ That's all there is to it! There are simpler ways as well, but that should do it
-
-

Creation Date

-
+
+

Creation Date

+

Let's add the creation date below the title next. To start, we will modify the publish command to remove the title (:with-title nil) and, in its place, show a preamble bit of HTML that contains a formatted div with the title and the "last modified" span.z

@@ -418,9 +436,9 @@ Note that the downside of this is that the created date will change whenever you
-
-

Generating the Directory

-
+
+

Generating the Directory

+

For every org file in my _posts folder, I would like to create a link to the generated HTML file at the /posts.html page of my website. You can think of this as the "directory" of all posts. My criteria is:

@@ -481,9 +499,9 @@ From here, you may customize it however you like. The following are my customiz

-
-

Sitemap Title

-
+
+

Sitemap Title

+

I changed the title to "Matthew's Blog Posts".

@@ -507,9 +525,9 @@ I changed the title to "Matthew's Blog Posts".
-
-

Format blog entries in the list

-
+
+

Format blog entries in the list

+

I like to include the creation date on the blog posts. To do this, we can use org-publish-find-property to find the date property of the org file. Afterward, we can format a string that includes our formatted timestamp and the org-publish-sitemap-default-entry, which is just a link with the title of the post.

@@ -531,9 +549,9 @@ I like to include the creation date on the blog posts. To do this, we can use
-
-

Tags & Filtering

-
+
+

Tags & Filtering

+

I use Org-roam for all of my note-taking and, in the next blog post, I plan to demonstrate how I will hook up my Org-roam note-taking workflow to my blogging. In the meantime, just know that we can add tags to the top of our org files like this:

@@ -555,6 +573,7 @@ Our criteria for the tag filtering system is:
  • Users can filter my one or many tags (i.e. "home" and "technology" but not "lifestyle")
  • By default, users see all posts with all tags
  • Searching happens on the client
  • +
  • We don't have to manually maintain a list of valid tags. The list of valid tags should be dynamically loaded from the blog posts themselves.
  • @@ -680,8 +699,6 @@ We create a new file called posts/post.js and put the following ins } }); } - - // Filter }; } } @@ -691,7 +708,75 @@ window.onload = main;

    -Finally, we can modify the org-html-head to include <script src='/posts/post.js'></script> so that this script is loaded on every blog post page. +Next, we modify the org-html-head to include <script src='/posts/post.js'></script> so that this script is loaded on every blog post page. +

    + +

    +Finally, let's append the following to posts/posts.css so that our tag list is pretty: +

    + +
    +
    #tag-filter-container {
    +    display: flex;
    +    flex-direction: row;
    +    column-gap: 8px;
    +    margin-top: 1rem;
    +}
    +
    +.tag-filter-item {
    +    display: flex;
    +    flex-direction: row;
    +    align-items: center;
    +    padding: 0.25rem 0.5rem;
    +    border: 1px solid black;
    +    border-radius: 3px;
    +    justify-content: center;
    +    column-gap: 1rem;
    +    background-color: #fffed8;
    +}
    +
    +.tag-filter-item button {
    +    background: none;
    +    border: none;
    +    outline: none;
    +    margin: 0;
    +    padding: 0;
    +    color: red;
    +    font-size: 1.5rem;
    +}
    +
    +.tag-filter-item button:before {
    +    content: '\00d7';
    +}
    +
    +.tag-filter-item.disabled button:before {
    +    content: '+';
    +}
    +
    +.tag-filter-item.disabled {
    +    background-color: #f2f2f2;
    +    color: gray;
    +    border-color: gray;
    +}
    +
    +.tag-filter-item.disabled button {
    +    color: green;
    +}
    +
    +.tag-filter-item button:hover {
    +    cursor: pointer;
    +    opacity: 0.8;
    +}
    +
    +
    +
    +
    + +
    +

    Conclusion

    +
    +

    +There are many more customizations that I plan to do on this system in the future, but I plan to leave this for now so that I can actually get to some blogging. I will proofread and fix my mistakes as time goes on, but this should be a good jumping off point for anyone interested in using org for their own blogging system.

    diff --git a/posts/sitemap.html b/posts/sitemap.html index 48771e0..efc2268 100644 --- a/posts/sitemap.html +++ b/posts/sitemap.html @@ -21,15 +21,15 @@

    Matthew's Blog Posts

    - Last modified: 2023-06-20 at 11:32 + Last modified: 2023-06-20 at 11:46
    • -Hello, Org created on June 15, 2023 +Hello, Org created on June 20, 2023

      -
      +

      technology,home

      -- cgit v1.2.1