From ac96a87a02026b54190b90f09d90505f1df7ae22 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Fri, 30 Aug 2019 14:15:03 +0900 Subject: [PATCH] Minor change --- layout/layout.pixy | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/layout/layout.pixy b/layout/layout.pixy index 47ce06d1..d6b1ebb3 100644 --- a/layout/layout.pixy +++ b/layout/layout.pixy @@ -1,8 +1,6 @@ component Layout(ctx aero.Context, user *arn.User, openGraph *arn.OpenGraph, meta, tags []string, content string) html(lang="en") head - link(rel="stylesheet", href="/styles", importance="high") - if openGraph != nil title= openGraph.Tags["og:title"] else @@ -43,6 +41,9 @@ component Layout(ctx aero.Context, user *arn.User, openGraph *arn.OpenGraph, met link(rel="icon", type="image/png", sizes="512x512", href="//media.notify.moe/images/brand/512.png") link(rel="apple-touch-icon", sizes="180x180", type="image/png", href="//media.notify.moe/images/brand/180.png") + //- Styles + link(rel="stylesheet", href="/styles", importance="high") + //- Color of the embed sidebar in Discord, //- also the color of tabs on mobile browsers. meta(name="theme-color", content=assets.Manifest.ThemeColor)