Browse Source

Conditionally show sponsors section

pull/5882/head
Thomas Kaul 2 days ago
parent
commit
9a9cfb83c5
  1. 40
      apps/client/src/app/pages/about/overview/about-overview-page.html

40
apps/client/src/app/pages/about/overview/about-overview-page.html

@ -202,25 +202,27 @@
}
</div>
<div class="row">
<div class="col-12">
<h2 class="h4 mb-3">Sponsors</h2>
<div class="text-center">
<small>Browser testing via</small>
<br />
<a
href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio"
target="_blank"
title="LambdaTest - AI Powered Testing Tool"
>
<img
alt="LambdaTest Logo"
height="45"
src="../assets/images/sponsors/logo-lambdatest.png"
width="250"
/>
</a>
@if (user?.subscription?.type !== 'Premium') {
<div class="row">
<div class="col-12">
<h2 class="h4 mb-3">Sponsors</h2>
<div class="text-center">
<small>Browser testing via</small>
<br />
<a
href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio"
target="_blank"
title="LambdaTest - AI Powered Testing Tool"
>
<img
alt="LambdaTest Logo"
height="45"
src="../assets/images/sponsors/logo-lambdatest.png"
width="250"
/>
</a>
</div>
</div>
</div>
</div>
}
</div>

Loading…
Cancel
Save