Improved OG data

This commit is contained in:
2017-07-06 20:56:37 +02:00
parent 0e009f434c
commit 1937980254
3 changed files with 25 additions and 16 deletions

View File

@ -1,14 +1,17 @@
component Layout(app *aero.Application, ctx *aero.Context, user *arn.User, meta map[string]string, content string)
component Layout(app *aero.Application, ctx *aero.Context, user *arn.User, openGraph *arn.OpenGraph, content string)
html(lang="en")
head
title= app.Config.Title
meta(name="viewport", content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes")
meta(name="theme-color", content=app.Config.Manifest.ThemeColor)
if meta != nil
for property, value := range meta
meta(name=property, value=value)
if openGraph != nil
for name, value := range openGraph.Meta
meta(name=name, content=value)
for property, content := range openGraph.Tags
meta(property=property, content=content)
link(rel="chrome-webstore-item", href="https://chrome.google.com/webstore/detail/hajchfikckiofgilinkpifobdbiajfch")
link(rel="manifest", href="/manifest.json")