Advertisement
tomschall

fluid snippet

Nov 16th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.79 KB | None | 0 0
  1. <f:layout name="Default" />
  2.  
  3. <f:section name="Main">
  4.     <f:render partial="Structure/MainNavigation" arguments="{_all}" />
  5.     <main class="my-row {data.sbc_page_class}">
  6.         <div class="alternative-sidepannel">
  7.             <f:render partial="Structure/SidePanel" arguments="{_all}" />
  8.         </div>
  9.  
  10.         <f:format.raw>
  11.           <script type="text/javascript">
  12.             // Redirect to angular rout for current template because we have no content otherwise
  13.             if (window.location.href.indexOf('#') === -1) {
  14.                 window.location.href = window.location.href + '#/contact';
  15.             }
  16.           </script>
  17.         </f:format.raw>
  18.  
  19.         <div ui-view></div>
  20.     </main>
  21.     <f:render partial="Structure/Footer" arguments="{_all}" />
  22.  
  23. </f:section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement