From 40ca854045b82f2501688b96ac3150ce66fd4b33 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20Gro=C3=9Fe?= <grosse@cosmocode.de>
Date: Wed, 7 Mar 2018 11:29:15 +0100
Subject: [PATCH] feat(metaheaders): Set theme-color meta header

This color is for example shown in Chrome on Android as menu-bar
coloring.
---
 inc/template.php | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/inc/template.php b/inc/template.php
index b9fe96085..659d59049 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -246,6 +246,13 @@ function tpl_metaheaders($alt = true) {
         $head['link'][] = array('rel'=> 'manifest', 'href'=> DOKU_BASE.'lib/exe/manifest.php');
     }
 
+    $styleUtil = new \dokuwiki\StyleUtils();
+    $styleIni = $styleUtil->cssStyleini($conf['template']);
+    $replacements = $styleIni['replacements'];
+    if (!empty($replacements['__theme_color__'])) {
+        $head['meta'][] = array('name' => 'theme-color', 'content' => $replacements['__theme_color__']);
+    }
+
     if($alt) {
         if(actionOK('rss')) {
             $head['link'][] = array(
-- 
GitLab