Index: src/webapp/decorations/layout/simple/decorator-macros.vm
===================================================================
--- src/webapp/decorations/layout/simple/decorator-macros.vm (revision 559793)
+++ src/webapp/decorations/layout/simple/decorator-macros.vm (working copy)
@@ -104,3 +104,14 @@
#end
+
+#macro (PageActionBar)
+ #set($_actions = $layoutDecoration.actions)
+
+ #if($_actions.size() >0)
+ #foreach ($_action in $_actions)
+
${_action.Alt}
+ #end
+ #end
+
+#end
Index: src/webapp/decorations/layout/simple/header.vm
===================================================================
--- src/webapp/decorations/layout/simple/header.vm (revision 559793)
+++ src/webapp/decorations/layout/simple/header.vm (working copy)
@@ -1,9 +1,9 @@
#*
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
@@ -42,3 +42,5 @@
+
+ #PageActionBar()