summaryrefslogtreecommitdiffstats
path: root/routers/web/home.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/web/home.go')
-rw-r--r--routers/web/home.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/routers/web/home.go b/routers/web/home.go
index d4be0931e8..4ea961c055 100644
--- a/routers/web/home.go
+++ b/routers/web/home.go
@@ -61,6 +61,9 @@ func Home(ctx *context.Context) {
ctx.Data["PageIsHome"] = true
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
+
+ ctx.Data["OpenGraphDescription"] = setting.UI.Meta.Description
+
ctx.HTML(http.StatusOK, tplHome)
}