start9-landing/src/_includes/components/landing/be-your-own.njk

35 lines
1.6 KiB
Text
Raw Normal View History

2022-08-08 16:44:43 +00:00
<section id="be-your-own">
<h1>be
<em>your own</em>
everything</h1>
<p>Anything you can do in the permissioned, subscription-based, privacy-invading, insecure model of cloud computing, you
can also do in the open, free, private, secure model of sovereign computing</p>
2022-07-28 11:55:52 +00:00
<div id='ticker'>
<div id="ticker__selected-frame">
<span>be your own</span>
{# <div id="services"></div> #}
2022-07-28 11:55:52 +00:00
</div>
<div id="ticker__window">
<ul class='pseudoservices'>
{% for pseudoservice in pseudoservices %}
<li class="pseudoservice">{{ pseudoservice.name }}</li>
2022-07-28 11:55:52 +00:00
{% endfor %}
</ul>
</div>
<ul class="services">
{% for service in services %}
{# |selectattr("pseudoservices",pseudoservice.name) #}
<li class="service">
<a href="">{% include "components/svg/chevron-left.svg" %}</a>
<a href="">
<img class="service__image" src="{{ service.slug }}.png" alt="">
<div class="service__name">{{ service.name }}</div>
<div class="service__desc">{{ service.description }}</div>
</a>
<a href="">{% include "components/svg/chevron-right.svg" %}</a>
</li>
{% endfor %}
</ul>
</div>
<a href="https://marketplace.start9.com/" class="btn">browse the start9 marketplace</a>
</section>