Add Twitter metadata
This commit is contained in:
parent
7800cd9fe1
commit
6fba490392
|
@ -51,11 +51,14 @@ func JamIndex2024_Learning(c *RequestContext) ResponseData {
|
||||||
|
|
||||||
baseData := getBaseDataAutocrumb(c, hmndata.LJ2024.Name)
|
baseData := getBaseDataAutocrumb(c, hmndata.LJ2024.Name)
|
||||||
baseData.OpenGraphItems = []templates.OpenGraphItem{
|
baseData.OpenGraphItems = []templates.OpenGraphItem{
|
||||||
|
{Property: "og:title", Value: "Learning Jam"},
|
||||||
{Property: "og:site_name", Value: "Handmade Network"},
|
{Property: "og:site_name", Value: "Handmade Network"},
|
||||||
{Property: "og:type", Value: "website"},
|
{Property: "og:type", Value: "website"},
|
||||||
{Property: "og:image", Value: hmnurl.BuildPublic("learningjam2024/2024LJOpenGraph.png", true)},
|
{Property: "og:image", Value: hmnurl.BuildPublic("learningjam2024/2024LJOpenGraph.png", true)},
|
||||||
{Property: "og:description", Value: "A two-weekend jam where you dive deep into a topic, then teach it to the rest of the community."},
|
{Property: "og:description", Value: "A two-weekend jam where you dive deep into a topic, then teach it to the rest of the community."},
|
||||||
{Property: "og:url", Value: hmnurl.BuildJamIndex2024_Learning()},
|
{Property: "og:url", Value: hmnurl.BuildJamIndex2024_Learning()},
|
||||||
|
{Name: "twitter:card", Value: "summary_large_image"},
|
||||||
|
{Name: "twitter:image", Value: hmnurl.BuildPublic("learningjam2024/2024LJTwitterCard.png", true)},
|
||||||
}
|
}
|
||||||
|
|
||||||
type JamPageData struct {
|
type JamPageData struct {
|
||||||
|
|
Loading…
Reference in New Issue