aboutsummaryrefslogtreecommitdiff
path: root/html/blog
diff options
context:
space:
mode:
authorthinkpadmaster <a.scerba02@gmail.com>2023-07-14 00:46:44 -0500
committerthinkpadmaster <a.scerba02@gmail.com>2023-07-14 00:46:44 -0500
commit9ae34b4263dd3342ac460e9b0120d46cb4fca7e3 (patch)
tree9787fd1625447e6ea76791d52f6e5638690d788f /html/blog
parentfca693f8cf2eeeae92939488b63127a90030c8fb (diff)
Add MD to HTML Update
Diffstat (limited to 'html/blog')
-rw-r--r--html/blog/Markdown_To_HTML_Update.tmpl.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/html/blog/Markdown_To_HTML_Update.tmpl.html b/html/blog/Markdown_To_HTML_Update.tmpl.html
new file mode 100644
index 0000000..7725a0a
--- /dev/null
+++ b/html/blog/Markdown_To_HTML_Update.tmpl.html
@@ -0,0 +1,21 @@
+{{define "title"}}{{ .Title }}{{end}}
+{{define "description"}}Update on the new site underlying code.{{end}}
+{{define "keywords"}}blog site{{end}}
+
+{{define "main"}}
+<h1>Blog</h1>
+<article class="postContent">
+ <h2>{{ .Title }}</h2>
+ <p>So, I got the site to use real, authentic, true to the standard, “text/template” format for my pages and posts. No more strange, non-conforming elements. More readable source code?? We have it. The best?? Probably not… but that’s okay because progress is progress. The last few things to do are program in the tagging system, set up <a href="https://imagemagick.org/" target="_blank" rel="noopener noreferrer">ImageMagick</a> for automatically sizing images, and writing the automation scripts to move everything where it sholud go.</p>
+ <p>Getting this all to work has been a great adventure. Going back to programming has been pretty refreshing compared to working on art. A program is either right or wrong. It does what you expect, or it doesn’t. There’s not much interpretation to be had and I miss it.</p>
+ <p>Uploaded: <time datetime="2023-07-13">2023-07-13</time></p>
+ <!--<div class="tags">
+ <h4>tags:</h4>
+ <nav>
+ {{ range .Tags }}
+ <a href="/tags/{{ . }}">{{ . }}</a> <span>·</span>
+ {{ end }}
+ </nav>
+ </div>-->
+</article>
+{{end}}