package main
import (
"fmt"
"git.dev.alexdunmow.com/block/core/templates"
)
// y2kEmailTemplate is the Y2K-branded email shell.
templ y2kEmailTemplate(emailCtx templates.EmailContext, body string) {
{ emailCtx.SiteSettings.SiteName }
if emailCtx.PreviewText != "" {
{ emailCtx.PreviewText }
}
|
if emailCtx.SiteSettings.SiteName != "" {
{ emailCtx.SiteSettings.SiteName }
} else {
y2k.fm
}
|
|
@templ.Raw(body)
|
|
* now playing * new drop friday * subscribe to the zine *
|
if emailCtx.UnsubscribeURL != "" {
unsubscribe
}
|
|
}