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

turbaszek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c43db0  Add blog post link to its title (#395)
3c43db0 is described below

commit 3c43db077666bf3be2d97e21c2f0e05ee4cee1b5
Author: Ehsan Poursaeed <[email protected]>
AuthorDate: Sun Mar 21 15:27:04 2021 +0330

    Add blog post link to its title (#395)
---
 landing-pages/site/layouts/partials/boxes/blogpost.html | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/landing-pages/site/layouts/partials/boxes/blogpost.html 
b/landing-pages/site/layouts/partials/boxes/blogpost.html
index f17e94e..d8b1188 100644
--- a/landing-pages/site/layouts/partials/boxes/blogpost.html
+++ b/landing-pages/site/layouts/partials/boxes/blogpost.html
@@ -29,7 +29,11 @@
             </div>
             <span class="bodytext__medium--brownish-grey 
box-event__blogpost--date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
         </div>
-        <p class="box-event__blogpost--header">{{ .Params.title }}</p>
+        <p class="box-event__blogpost--header">
+            <a href="{{ .RelPermalink }}">
+                {{ .Params.title }}
+            </a>
+        </p>
         <p class="box-event__blogpost--author">{{ .Params.author }}</p>
         <p class="box-event__blogpost--description">{{ .Params.description 
}}</p>
         <div class="mt-auto">

Reply via email to