diff options
author | nathansmith <nathansmith@posteo.com> | 2025-05-24 12:19:07 -0600 |
---|---|---|
committer | nathansmith <nathansmith@posteo.com> | 2025-05-24 12:19:07 -0600 |
commit | 7995de4c284d370fea86e4bd2c754f0a96f42f8c (patch) | |
tree | 2a0338660ba4b344ee8af8da1c6e814e60d38fc2 /org/blog/generate-html.scm | |
parent | 1cdfd93e1f02739a685d1cdb131b3efe13adc06b (diff) |
Fixed up blog layout
Diffstat (limited to 'org/blog/generate-html.scm')
-rwxr-xr-x | org/blog/generate-html.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/org/blog/generate-html.scm b/org/blog/generate-html.scm index e4a1ad3..11da0a5 100755 --- a/org/blog/generate-html.scm +++ b/org/blog/generate-html.scm @@ -38,11 +38,12 @@ (file (cadr (list-ref article 6)))) (string-append "<br />\n" - "<table border=\"1\" width=\"60%\" bgcolor=\"#bebebe\">\n" - " <tr><td><h2 id=\"" name "\">" title "</h2>--- " pub-date - "</td></tr>\n" - " <tr><td>" (get-raw-article file) " </td></tr>\n" - "</table>\n"))) + "<div class=\"container\">\n" + " <div class=\"article-header\">\n" + " <h2 id=\"" name "\">" title "</h2>--- " pub-date "\n" + " </div>\n" + (get-raw-article file) "\n" + "</div>\n"))) ;; Generates a html blog from xml data (define (generate-html) |