Last active
May 16, 2023 17:10
-
-
Save Mycoola/b0b4e907c7791460058b3a32f0bd5550 to your computer and use it in GitHub Desktop.
condensedThemeLayout.cmp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<aura:component implements="forceCommunity:themeLayout"> | |
<aura:attribute name="search" type="Aura.Component[]"/> | |
<aura:attribute name="sidebarFooter" type="Aura.Component[]"/> | |
<aura:attribute name="showSearch" type="Boolean" default="true" /> | |
<div class="slds-grid slds-grid--align-center"> | |
<div class="slds-col"> | |
<div class="slds-grid slds-grid--vertical"> | |
<div class="slds-col"> | |
<div class="logoContainer"></div> | |
</div> | |
<aura:if isTrue="{!v.showSearch}"> | |
<div class="slds-col"> | |
{!v.search} | |
</div> | |
</aura:if> | |
<div class="slds-col"> | |
<c:verticalNav></c:verticalNav> | |
</div> | |
<div class="slds-col"> | |
{!v.sidebarFooter} | |
</div> | |
</div> | |
</div> | |
<div class="slds-col content"> | |
{!v.body} | |
</div> | |
</div> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment