start9-landing/src/_includes/components/landing/bitcoin.njk

30 lines
1.4 KiB
Text
Raw Normal View History

2022-07-28 11:55:52 +00:00
<section id="bitcoin">
{% include "components/svg/grid_blend_top.svg" %}
<div class="subsection">
<h1>Become Bitcoin</h1>
<p>
<em>Don't trust, verify.</em>
<br>Run a full Bitcoin node to verify transactions and enforce the consensus rules you choose.</p>
<a class="btn" href="">why host a bitcoin node?</a>
</div>
<div class="subsection">
<h1>Become Lightning</h1>
<p>
<em>Not your keys, not your coins.</em>
<br>Run a Lightning node to take full control and custody over your Bitcoin on Lightning.</p>
<a class="btn" href="">why host a lightning node?</a>
</div>
<div id="flying-icons">
{% for service in services %}
{% for category in service.categories %}
{% if (category == "bitcoin") or (category == "lightning") or (category == "plebnet-tools") %}
<img
class="service-icon service-icon--{{ service.slug }}"
src="../assets/images/service-icons/{{ service.slug }}.png"
alt="">
{% endif %}
{% endfor %}
{% endfor %}
</div>
{% include "components/svg/grid_blend_bottom.svg" %}
</section>