You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2019/05/09 12:36:31 UTC

[pulsar] branch master updated: Fix top page title (#4242)

This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f6cc93  Fix top page title (#4242)
6f6cc93 is described below

commit 6f6cc93a07f32b1550b9609cc48280593b7a6929
Author: hrsakai <hs...@yahoo-corp.jp>
AuthorDate: Thu May 9 21:36:24 2019 +0900

    Fix top page title (#4242)
    
    ### Motivation
    
    
    * Currently, the top page title of http://pulsar.apache.org/ is `Apache Pulsar · `
    
    ### Modifications
    
    * Add `disableTitleTagline: true` in siteConfig and the title is changed from `Apache Pulsar · ` to `Apache Pulsar` .
---
 site2/website/siteConfig.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/site2/website/siteConfig.js b/site2/website/siteConfig.js
index 5fcf24f..f313946 100644
--- a/site2/website/siteConfig.js
+++ b/site2/website/siteConfig.js
@@ -82,6 +82,7 @@ const siteVariables = {
 
 const siteConfig = {
   title: 'Apache Pulsar' /* title for your website */,
+  disableTitleTagline: true,
   tagline: '',
   url: url /* your website url */,
   baseUrl: baseUrl /* base url for your project */,