about summary refs log tree commit diff stats
path: root/cmd/build/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/build/main.go')
-rw-r--r--cmd/build/main.go64
1 files changed, 31 insertions, 33 deletions
diff --git a/cmd/build/main.go b/cmd/build/main.go
index 6519fa8..6a2f375 100644
--- a/cmd/build/main.go
+++ b/cmd/build/main.go
@@ -7,6 +7,7 @@ import (
 	"io/fs"
 	"log"
 	"log/slog"
+	"net/url"
 	"os"
 	"path"
 	"path/filepath"
@@ -137,7 +138,7 @@ func layout(filename string, config Config, pageTitle string) (*goquery.Document
 	doc.Find("head > link[rel=alternate]").SetAttr("title", config.Title)
 	doc.Find(".title").SetText(config.Title)
 	doc.Find("title").Add(".p-name").SetText(pageTitle)
-	doc.Find("head > style").SetText(string(css))
+	doc.Find("head > style").SetHtml(string(css))
 	nav := doc.Find("nav")
 	navLink := doc.Find("nav a")
 	nav.Empty()
@@ -152,20 +153,20 @@ func renderPost(post Post, config Config) (string, error) {
 	if err != nil {
 		return "", err
 	}
-	doc.Find(".title").AddClass("h-card p-author").SetAttr("rel", "author")
-	datetime, err := post.PostMatter.Date.MarshalText()
-	if err != nil {
-		return "", err
-	}
-	doc.Find(".h-entry .dt-published").SetAttr("datetime", string(datetime)).SetText(
-		post.PostMatter.Date.Format("2006-01-02"),
-	)
+	doc.Find(".title").AddClass("p-author h-card").SetAttr("rel", "author")
+	doc.Find(".h-entry .dt-published").
+		SetAttr("datetime", post.PostMatter.Date.UTC().Format(time.RFC3339)).
+		SetText(
+			post.PostMatter.Date.Format("2006-01-02"),
+		)
 	doc.Find(".h-entry .e-content").SetHtml(post.Content)
 	categories := doc.Find(".h-entry .p-categories")
-	cat := categories.Find(".p-category").ParentsUntilSelection(categories)
-	cat.Remove()
+	tpl := categories.Find(".p-category").ParentsUntilSelection(categories)
+	tpl.Remove()
 	for _, tag := range post.Taxonomies.Tags {
-		categories.AppendSelection(cat.Clone().Find(".p-category").SetAttr("href", fmt.Sprintf("/tags/%s/", tag)).SetText("#" + tag)).Parent()
+		cat := tpl.Clone()
+		cat.Find(".p-category").SetAttr("href", fmt.Sprintf("/tags/%s/", tag)).SetText("#" + tag)
+		categories.AppendSelection(cat)
 	}
 	return doc.Html()
 }
@@ -179,9 +180,9 @@ func renderTags(tags Tags, config Config) (string, error) {
 	tpl := doc.Find(".h-feed")
 	tpl.Remove()
 	for _, tag := range mapset.Sorted(tags) {
-		tagList.AppendSelection(
-			tpl.Clone().SetAttr("href", fmt.Sprintf("/tags/%s/", tag)).SetText("#" + tag),
-		)
+		li := tpl.Clone()
+		li.Find("a").SetAttr("href", fmt.Sprintf("/tags/%s/", tag)).SetText("#" + tag)
+		tagList.AppendSelection(li)
 	}
 	return doc.Html()
 }
@@ -201,7 +202,7 @@ func renderListPage(tag string, config Config, posts []Post) (string, error) {
 	tpl := feed.Find(".h-entry")
 	tpl.Remove()
 
-	doc.Find(".title").AddClass("h-card p-author").SetAttr("rel", "author")
+	doc.Find(".title").AddClass("p-author h-card").SetAttr("rel", "author")
 	if tag == "" {
 		doc.Find(".filter").Remove()
 	} else {
@@ -210,13 +211,10 @@ func renderListPage(tag string, config Config, posts []Post) (string, error) {
 
 	for _, post := range posts {
 		entry := tpl.Clone()
-		datetime, err := post.PostMatter.Date.MarshalText()
-		if err != nil {
-			return "", err
-		}
-
 		entry.Find(".p-name").SetText(post.Title).SetAttr("href", post.URL)
-		entry.Find(".dt-published").SetAttr("datetime", string(datetime)).SetText(post.PostMatter.Date.Format("2006-01-02"))
+		entry.Find(".dt-published").
+			SetAttr("datetime", post.PostMatter.Date.UTC().Format(time.RFC3339)).
+			SetText(post.PostMatter.Date.Format("2006-01-02"))
 		feed.AppendSelection(entry)
 	}
 
@@ -246,17 +244,13 @@ func renderHomepage(config Config, posts []Post) (string, error) {
 	tpl := feed.Find(".h-entry")
 	tpl.Remove()
 
-	for _, post := range posts {
+	for _, post := range posts[0:3] {
 		entry := tpl.Clone()
 		entry.Find(".p-name").SetText(post.Title)
 		entry.Find(".u-url").SetAttr("href", post.URL)
-		datetime, err := post.PostMatter.Date.MarshalText()
-		if err != nil {
-			return "", err
-		}
 		entry.
 			Find(".dt-published").
-			SetAttr("datetime", string(datetime)).
+			SetAttr("datetime", post.PostMatter.Date.UTC().Format(time.RFC3339)).
 			SetText(post.PostMatter.Date.Format("2006-01-02"))
 
 		feed.AppendSelection(entry)
@@ -296,18 +290,22 @@ func renderFeed(title string, config Config, posts []Post, specific string) (str
 	feed := doc.SelectElement("feed")
 	feed.SelectElement("title").FirstChild.Data = title
 	feed.SelectElement("link").SetAttr("href", config.BaseURL)
-	feed.SelectElement("id").FirstChild.Data = makeTagURI(config, specific)
-	datetime, err := posts[0].Date.MarshalText()
+	feed.SelectElement("id").FirstChild.Data = MakeTagURI(config, specific)
+	datetime, err := posts[0].Date.UTC().MarshalText()
 	feed.SelectElement("updated").FirstChild.Data = string(datetime)
 	tpl := feed.SelectElement("entry")
 	xmlquery.RemoveFromTree(tpl)
 
 	for _, post := range posts {
+		fullURL, err := url.JoinPath(config.BaseURL, post.URL)
+		if err != nil {
+			return "", err
+		}
 		text, err := xml.MarshalIndent(&FeedEntry{
 			Title:   post.Title,
-			Link:    makeLink(post.URL),
-			Id:      makeTagURI(config, post.Basename),
-			Updated: post.Date,
+			Link:    MakeLink(fullURL),
+			Id:      MakeTagURI(config, post.Basename),
+			Updated: post.Date.UTC(),
 			Summary: post.Description,
 			Author:  config.Title,
 			Content: FeedContent{