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
{# Prepare query #} | |
{% set query = section.type == 'entries' | |
? craft.entries().section( section.handle ).with(['property']) | |
: craft.users() %} | |
{# Get query params #} | |
{% set accountQuery = craft.app.request.getQueryParam('account') ?? currentUserAccountId %} | |
{% set orderbyQuery = craft.app.request.getQueryParam('orderby') ?? null %} | |
{% set propertyQuery = craft.app.request.getQueryParam('property') ?? null %} | |
{% set searchQuery = craft.app.request.getQueryParam('search') ?? null %} |
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
@import "https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i,800,800i";body{background-color:#fff;font-feature-settings:"kern";font-kerning:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}.pageHeader .headerContent,.homeIntroWrapper,.homeFeatures,.homeFeeds,.headerText,.contentBlockWrapper,.searchListingIntro,.menuSub ul,.signInForm,.registerForm,.customForm,.passwordForm,.container404,.formWrapper,.contentBlockWrapper.appealActionsWrapper,.appealActionsWrapper{max-width:1170px;padding-left:20px;padding-right:20px}.appealActionsWrapper,.container404{margin:0 auto}::-moz-selection{background:#FCBB69}::selection{background:#FCBB69}html,button,body,legend{font-family:"Open Sans",sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size:16px;line-height:1.5;color:#444}h1,h2,h3,h4,h5,h6{color:#004B88;font-family:"Open Sans",sans-serif;font-weight:800;line-height:1.2}h1,h2,h3{margin-top:1em;margin-bottom:0.5em}h4,h5,h6{ |