Skip to content

Commit b1afd73

Browse files
committed
remove research from front page
1 parent 72f988d commit b1afd73

File tree

4 files changed

+39
-29
lines changed

4 files changed

+39
-29
lines changed

_i18n/en.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ seo:
8282
exchanges:
8383
title: "Where to buy Masari?"
8484
desc: "Masari can be purchased on many exchanges and from many individuals. Depending on your selection of an exchange, you may be able to purchase Masari directly with USD, CNY, RUB or any other fiat currency!"
85+
research:
86+
title: "Masari Research Corner"
87+
desc: "Masari has brought innovative ideas to the cryptonote space such as Weighted-Weighted Harmonic Mean (improved to become LWMA), uncle mining (SECOR) as well as the idea of blocktree and simple private tokens. THese are our white papers regarding those ideas."
8588
about:
8689
paragraph_1: "Masari (MSR) is a proof of work (PoW) peer-to-peer internet currency using the well researched and cryptographically sound <a href='https://lab.getmonero.org/pubs/MRL-0005.pdf' target='_blank'>RingCT</a> and <a href='https://cryptonote.org/whitepaper.pdf' target='_blank'>CryptoNote</a> protocols. This means that every transaction origin, amount, and destination is obfuscated by default. Masari is an open source project that is fully decentralized without any central authorities, similar to bitcoin. With several CryptoNote firsts such as uncle mining via the <a href='https://github.com/masari-project/research-corner/blob/master/secor/secor.pdf' target='_blank'>SECOR protocol</a>, a <a href='https://wallet.getmasari.org' target='_blank'>fully client side web wallet</a>, and PoW sharding via the <a href='https://github.com/masari-project/research-corner/blob/master/blocktree/blocktree.pdf' target='_blank'>blocktree protocol</a>, Masari is a fast, fungible, secure, private and soon-to-be efficiently scalable currency."
8790
paragraph_2: "With ring signatures, ring confidential transactions, and stealth addresses, every transaction origin, amount, and destination is untraceable and unlinkable. Transactions on the Masari blockchain cannot be linked to a particular user or real-world identity."

_includes/header.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
</li>
4848
<li class="nav-item">
4949
{% if site.lang != "en" %}
50-
<a href="/{{ site.lang }}/#research" data-href="#research">{% t navigation.research %}</a>
50+
<a href="/{{ site.lang }}/research" data-href="#research">{% t navigation.research %}</a>
5151
{% else %}
52-
<a href="/#research" data-href="#research">{% t navigation.research %}</a>
52+
<a href="/research" data-href="#research">{% t navigation.research %}</a>
5353
{% endif %}
5454
</li>
5555
<li class="nav-item">

index.html

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -214,31 +214,4 @@ <h2 class="centered">
214214
{% endfor %}
215215
</div>
216216
</div>
217-
</section>
218-
<!-- research -->
219-
<section id="research" class="section section-padded">
220-
<div class="container">
221-
<div class="flex-row text-center title">
222-
<h1 class="centered">{% t sections.research.heading %}</h1>
223-
<p class="light">{% t sections.research.paragraph %}</p>
224-
</div>
225-
<div class="row centered">
226-
<div class="col-md-12">
227-
{% for order in (1..10) %}
228-
{% for research in site.data[site.lang].research %}
229-
{% assign article = research[1] %}
230-
{% if article.order == order %}
231-
<div class="abstract light-shadow">
232-
<h4>
233-
<a href="{{ article.url }}" target="_blank">
234-
{{ article.title }}
235-
</a>
236-
</h4>
237-
<p>{% t sections.research.abstract %}: {{ article.abstract }}</p>
238-
</div>
239-
{%endif%}
240-
{%endfor%}
241-
{%endfor%}
242-
</div>
243-
</div>
244217
</section>

research.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
permalink: "/research"
3+
layout: external
4+
ref: research
5+
title: '{{ site.translations[site.lang].seo.meta.research.title }}'
6+
description: '{{ site.translations[site.lang].seo.meta.research.desc }}'
7+
---
8+
9+
<!-- research -->
10+
<section id="research" class="section section-padded">
11+
<div class="container">
12+
<div class="flex-row text-center title">
13+
<p class="light">{% t sections.research.paragraph %}</p>
14+
</div>
15+
<div class="row centered">
16+
<div class="col-md-12">
17+
{% for order in (1..10) %}
18+
{% for research in site.data[site.lang].research %}
19+
{% assign article = research[1] %}
20+
{% if article.order == order %}
21+
<div class="abstract light-shadow">
22+
<h4>
23+
<a href="{{ article.url }}" target="_blank">
24+
{{ article.title }}
25+
</a>
26+
</h4>
27+
<p>{% t sections.research.abstract %}: {{ article.abstract }}</p>
28+
</div>
29+
{%endif%}
30+
{%endfor%}
31+
{%endfor%}
32+
</div>
33+
</div>
34+
</section>

0 commit comments

Comments
 (0)