You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by mb...@apache.org on 2021/07/23 08:43:22 UTC

[roller] branch master updated (2e142a2 -> 94ebf3b)

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

mbien pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/roller.git.


    from 2e142a2  Updated: the main menu to have proper space when displaying permission message
     new 277233c  Updated: the header to show the tagline only when its available
     new 94ebf3b  Updated: gaurav theme to show the tagline only when available

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 app/src/main/webapp/themes/fauxcoly/std_header.vm | 4 +++-
 app/src/main/webapp/themes/gaurav/weblog.vm       | 7 ++++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

[roller] 02/02: Updated: gaurav theme to show the tagline only when available

Posted by mb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 94ebf3b8c36c1942bc6a1eabd398d8730b4d8720
Author: Yash Maheshwari <ya...@gmail.com>
AuthorDate: Sun Jul 18 15:40:33 2021 +0530

    Updated: gaurav theme to show the tagline only when available
---
 app/src/main/webapp/themes/gaurav/weblog.vm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/app/src/main/webapp/themes/gaurav/weblog.vm b/app/src/main/webapp/themes/gaurav/weblog.vm
index bb85c4e..b60a6a1 100755
--- a/app/src/main/webapp/themes/gaurav/weblog.vm
+++ b/app/src/main/webapp/themes/gaurav/weblog.vm
@@ -20,7 +20,12 @@
 		
 		<div class="row">
 			<div class="col-lg-12">
-				<h1 class="page-header">$model.weblog.name&nbsp;<small>$model.weblog.tagline</small></h1>
+				<h1 class="page-header">$model.weblog.name&nbsp;
+				<small>
+				#if($model.weblog.tagline)
+                    $model.weblog.tagline
+                #end
+				</small></h1>
 			</div>
 	  	</div>
 	  	

[roller] 01/02: Updated: the header to show the tagline only when its available

Posted by mb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 277233cf6965eeb18b0d7f5837a142b10f59ed3f
Author: Yash Maheshwari <ya...@gmail.com>
AuthorDate: Sun Jul 18 14:15:08 2021 +0530

    Updated: the header to show the tagline only when its available
---
 app/src/main/webapp/themes/fauxcoly/std_header.vm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app/src/main/webapp/themes/fauxcoly/std_header.vm b/app/src/main/webapp/themes/fauxcoly/std_header.vm
index 0de3af2..1310de4 100644
--- a/app/src/main/webapp/themes/fauxcoly/std_header.vm
+++ b/app/src/main/webapp/themes/fauxcoly/std_header.vm
@@ -1,6 +1,8 @@
 <div id="main_title">
 <h1><a href="$url.home">$model.weblog.name</a></h1>
-<p>$model.weblog.tagline</p>
+#if($model.weblog.tagline)
+    <p>$model.weblog.tagline</p>
+#end
 </div>
 
 <div id="page_menu">