You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2020/03/30 13:28:23 UTC

[camel-website] branch master updated: Color consistency in headings of blog page

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 8e2106b  Color consistency in headings of blog page
8e2106b is described below

commit 8e2106be5e70c1cf4963d35105c9beaaca9efbb3
Author: rimshach <44...@users.noreply.github.com>
AuthorDate: Mon Mar 30 06:28:13 2020 -0700

    Color consistency in headings of blog page
    
    * Update post.html
    
    * Update summary.html
---
 layouts/blog/post.html    | 2 +-
 layouts/blog/summary.html | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/layouts/blog/post.html b/layouts/blog/post.html
index a44547a..cc75d91 100644
--- a/layouts/blog/post.html
+++ b/layouts/blog/post.html
@@ -4,7 +4,7 @@
         {{ if .Params.categories }}
             {{ range .Params.categories }}<a class="category" href="{{ "/categories/" | relURL }}{{ . | urlize }}/">{{ upper . }}</a>{{ end }}
         {{ end }}
-        <h1><a href="{{.Page.Permalink}}">{{ .Title }}</a></h1>
+        <h1>{{ .Title }}</h1>
     </header>
     <div class="post">
         <aside>
diff --git a/layouts/blog/summary.html b/layouts/blog/summary.html
index ecf969f..80005f9 100644
--- a/layouts/blog/summary.html
+++ b/layouts/blog/summary.html
@@ -1,7 +1,7 @@
 <article class="blog doc">
 
     <header>
-        <h1><a href="{{.Page.RelPermalink}}">{{ .Title }}</a></h1>
+        <h1>{{ .Title }}</h1>
     </header>
     <p>{{ .Summary }}</p>
     <p><a class="continue" href="{{ .RelPermalink }}">Continue reading &#10095;</a></p>