2017-07-06 18:56:37 +00:00
|
|
|
component Layout(app *aero.Application, ctx *aero.Context, user *arn.User, openGraph *arn.OpenGraph, content string)
|
2017-06-01 13:38:08 +00:00
|
|
|
html(lang="en")
|
2016-10-28 16:11:25 +00:00
|
|
|
head
|
2017-07-06 19:38:19 +00:00
|
|
|
if openGraph != nil
|
|
|
|
title= openGraph.Tags["og:title"]
|
|
|
|
else
|
|
|
|
title= app.Config.Title
|
2017-07-06 18:56:37 +00:00
|
|
|
|
2016-11-03 04:11:00 +00:00
|
|
|
meta(name="viewport", content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes")
|
2017-06-17 12:15:33 +00:00
|
|
|
meta(name="theme-color", content=app.Config.Manifest.ThemeColor)
|
2017-07-06 18:33:46 +00:00
|
|
|
|
2017-07-06 18:56:37 +00:00
|
|
|
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)
|
2017-07-06 18:33:46 +00:00
|
|
|
|
2017-06-25 16:06:03 +00:00
|
|
|
link(rel="chrome-webstore-item", href="https://chrome.google.com/webstore/detail/hajchfikckiofgilinkpifobdbiajfch")
|
2017-06-03 23:17:00 +00:00
|
|
|
link(rel="manifest", href="/manifest.json")
|
2016-10-28 16:11:25 +00:00
|
|
|
body
|
2017-06-24 19:07:45 +00:00
|
|
|
#container(class=utils.GetContainerClass(ctx))
|
2017-07-22 13:04:54 +00:00
|
|
|
//- #header
|
|
|
|
//- Navigation(user)
|
|
|
|
#columns
|
2017-11-03 08:34:21 +00:00
|
|
|
Sidebar(user)
|
|
|
|
Content(content)
|
2017-07-22 13:04:54 +00:00
|
|
|
LoadingAnimation
|
|
|
|
StatusMessage
|
2017-06-30 15:51:17 +00:00
|
|
|
if user != nil
|
|
|
|
#user(data-id=user.ID)
|
2017-11-03 08:34:21 +00:00
|
|
|
script(src="/scripts")
|
|
|
|
|
|
|
|
component Content(content string)
|
|
|
|
#content-container
|
|
|
|
main#content.fade!= content
|