updating about and contact pages

mm-logging
lza_menace 4 years ago
parent 0d1d3c9506
commit 784105ddf0

@ -34,21 +34,14 @@
</div>
</header>
<section class="section1" id="contact">
<section class="section1" id="about">
<div class="container">
<div class="section-heading text-center">
<h2>Contact</h2>
<p>Support is provided at a best-effort level; you can expect to hear back within 24 hours.</p>
<h2>About</h2>
<p>This is an <a href="https://git.wownero.com/lza_menace/wowstash" target="_blank">open source</a>, web based, <a href="https://atomicwallet.io/custodial-non-custodial-wallets-comparison">custodial</a> wallet for the <a href="https://wownero.org" target="_blank">Wownero</a> cryptocurrency. It's development and hosting service was funded by the community using the <a href="https://funding.wownero.com/proposal/49">Wownero Funding System</a>.</p>
<br>
<p>For more information about this system please read the <a href="/faq">FAQ</a>. For contact information, please see the <a href="#contact" class="js-scroll-trigger">contact</a> section.</p>
<hr>
<ul class="list-inline list-social fp-row">
{% for social in config.SOCIAL %}
<li class="list-inline-item">
<a href="{{ config.SOCIAL[social] }}" target="_blank">
<i class="fa fa-{{ social }} fa-3x"></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</section>
@ -93,13 +86,13 @@
<p>Transactions:<br>{{ node.tx_count }}</p>
</div>
<div class="col-lg-2 my-auto">
<p>Height:<br>{{ node.height }}</p>
<p>Block Height:<br>{{ node.height }}</p>
</div>
<div class="col-lg-2 my-auto">
<p>Difficulty:<br>{{ node.difficulty }}</p>
</div>
<div class="col-lg-2 my-auto">
<p>Database Size:<br>{{ node.database_size / 1024000000 }} GB</p>
<p>Database Size:<br>{{ node.database_size / 1073741824 }} GB</p>
</div>
<div class="col-lg-2 my-auto">
<p>Daemon Address:<br>{{ config.DAEMON_HOST }}</p>
@ -111,12 +104,21 @@
</div>
</section>
<section class="section1" id="about">
<section class="section1" id="contact">
<div class="container">
<div class="section-heading text-center">
<h2>About</h2>
<p>Hack the planet!</p>
<h2>Contact</h2>
<p>Support is provided at a best-effort level; you can expect to hear back within 72 hours.</p>
<hr>
<ul class="list-inline list-social fp-row">
{% for social in config.SOCIAL %}
<li class="list-inline-item">
<a href="{{ config.SOCIAL[social] }}" target="_blank">
<i class="fa fa-{{ social }} fa-3x"></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</section>

@ -9,9 +9,9 @@
<ul class="navbar-nav ml-auto">
{% if request.path == "/" %}
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#page-top">Home</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#contact">Contact</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#statistics">Statistics</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#statistics">Statistics</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#contact">Contact</a></li>
<li class="nav-item"><a class="nav-link" href="/login">Login</a></li>
{% endif %}
</ul>