about summary refs log tree commit diff stats
path: root/internal/builder/homepage.templ
diff options
context:
space:
mode:
Diffstat (limited to 'internal/builder/homepage.templ')
-rw-r--r--internal/builder/homepage.templ17
1 files changed, 2 insertions, 15 deletions
diff --git a/internal/builder/homepage.templ b/internal/builder/homepage.templ
index 1df401b..df5bc32 100644
--- a/internal/builder/homepage.templ
+++ b/internal/builder/homepage.templ
@@ -2,23 +2,10 @@ package builder
 
 import (
 	"website/internal/config"
-	"path"
 	"website/internal/content"
 )
 
-func getContent(filename string) templ.Component {
-	return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
-		_, index, err := content.GetPost(path.Join("content", filename))
-		if err != nil {
-			return err
-		}
-		_, err = io.WriteString(w, string(index))
-
-		return err
-	})
-}
-
-templ homepage(config config.Config, posts []content.Post) {
+templ homepage(config config.Config, posts []content.Post, content string) {
 	@page(config, PageSettings{
 		Title: config.Title,
 		TitleAttrs: templ.Attributes{
@@ -30,7 +17,7 @@ templ homepage(config config.Config, posts []content.Post) {
 		},
 	}) {
 		<div id="content">
-			@getContent("_index.md")
+			@Unsafe(content)
 		</div>
 		<section>
 			<h2>Latest Posts</h2>