XF 2.3 Is there a template variable for Home page URL?

bzcomputers

Well-known member
This work fine for links based of the Board URL: href="{{ base_url('sample.php') }}"

Was just wondering if there was a way to base urls of the Home page URL setting.
 
Solution
href="{{ $xf.homePageUrl }}sample.php }}"

You may or may not need to enter a trailing slash, depending on whether it's set in ACP's homePageUrl.

href="{{ $xf.homePageUrl }}/sample.php }}"
Back
Top Bottom