mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-18 18:55:49 +00:00
63 lines
3.4 KiB
Django/Jinja
63 lines
3.4 KiB
Django/Jinja
{% extends "base.html.jinja" %}
|
||
{% block head %}
|
||
|
||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||
<!--[if lt IE 9]>
|
||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||
<![endif]-->
|
||
|
||
{% endblock %}
|
||
|
||
{% block bodyclasses %}no-sidebar{% endblock %}
|
||
{% block mainclasses %}landing{% endblock %}
|
||
|
||
{% block breadcrumbs %}{% endblock %}
|
||
|
||
{% block main %}
|
||
<div id="page-overview-bg" class="pt-40-until-sm">
|
||
<div class="container">
|
||
<section class="row mt-20 mb-50-until-sm mb-20">
|
||
<div class="col-md-6 mb-10 offset-md-3 text-center">
|
||
<h6 class="text-primary mb-4">{% trans %}XRP Overview{% endtrans %}</h6>
|
||
<h1 class="mb-18">{% trans %}Your Questions About XRP, Answered.{% endtrans %}</h1>
|
||
</div>
|
||
<div class="w-100"></div>
|
||
<div class="col-md-8">
|
||
<h2 class="mb-10">{% trans %}What is XRP?{% endtrans %}</h2>
|
||
<div class="row">
|
||
<p class="col-sm">{% trans %}XRP is a digital asset that’s native to the XRP Ledger, an open-source, permissionless and decentralized <a href="https://www.distributedagreement.com/2018/09/24/what-is-a-blockchain/" target="_blank">blockchain technology</a>.{% endtrans %}</p>
|
||
<p class="col-sm">{% trans %}Created in 2012 specifically for payments, XRP can settle transactions on the ledger in 3-5 seconds. It was built to be a better Bitcoin—faster, cheaper and greener than any other digital asset. {% endtrans %}</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
<div class="new-container">
|
||
<h2>Why Developers</h2>
|
||
<section class="mt-10 card-grid card-grid-3xN">
|
||
<div class="card-new">
|
||
<h5>{% trans %}Micropayments{% endtrans %}</h5>
|
||
<p class="my-10">{% trans %}Many businesses are building on the XRP Ledger, pursuing powerful use cases in decentralized finance, micropayments, gaming, web monetization and more. Additionally, Ripple, the technology company, is focused on building a network and infrastructure that leverages XRP to power faster, more affordable cross-border payments around the world.{% endtrans %}</p>
|
||
</div>
|
||
<div class="card-new">
|
||
<h5>{% trans %}Cryptocurrency Wallets{% endtrans %}</h5>
|
||
<p class="my-10">{% trans %}Individual consumers can use XRP to move different currencies around the world. For example, through wallets and exchanges that use <a href="https://paystring.org/" target="_blank">PayID</a>, anyone can use XRP—or any currency, be it fiat or digital assets—to easily make purchases across any payments network.{% endtrans %}</p>
|
||
</div>
|
||
<div class="card-new">
|
||
<h5>{% trans %}Exchanges{% endtrans %}</h5>
|
||
<p class="my-10">{% trans %}By building on the XRP Ledger, developers can easily integrate payments into their products—seamlessly putting money at the center of their applications. Projects like <a href="https://github.com/XRPLF/xrpl-py" target="_blank">xrpl-py</a> are making it easier for developers to leverage XRP.{% endtrans %}</p>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|
||
|
||
|
||
{% block endbody %}
|
||
|
||
<script type="application/javascript">
|
||
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
|
||
</script>
|
||
{% endblock %}
|