aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 08e3c8ad06a0a16f86f5f425aace88a9268358ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{% extends "juice/templates/index.html" %}

{% block head %}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="/site.css" />
{% endblock head %}

{% block hero %}

<section class="text-center">
    <h1 class="heading-text animate__animated animate__jackInTheBox" style="font-size: 50px">
        Mine your own grades
    </h1>
    <h3 class="title-text">
        <b>Gradecoin</b> is the latest cutting edge blockchain technology agile grading framework that drives organic engagement and other buzzwords, with big data mining search engine optimization
    </h3>
    <div>
    </div>
</section>
<img class="hero-image" style="width: 40%" src="{{ get_url(path="gradecoin.png") }}">

<div class="explore-more text"
     onclick="document.getElementById('features').scrollIntoView({behavior: 'smooth'})">
    ⇩ Learn How ⇩
</div>

<style>

.hero section {
    padding: 0 5rem;
}

@media screen and (max-width: 768px) {
    .hero section {
        padding: 0 2rem;
    }

    .hero-image {
        display: none
    }

}
footer {
    color: #8b8b8b;
}
</style>
{% endblock hero %}

{% block content %}
<div class="tcontainer" id="features">
    <div class="ticker-wrap">
        <div class="ticker-move">
            <div class="ticker-item"><b>News:</b></div>
            <div class="ticker-item">Gradecoin is in testnet mode, API is not stable, everything might reset at any time.</div>
            <div class="ticker-item">Transactions are now unique according to their "by" field, sorry for the trouble</div>
            <div class="ticker-item">Blocks now require 5 transactions in them, during testnet phase</div>
            <div class="ticker-item">It was possible (and hilarious) to mine a new block with just 1 transaction, it is now fixed</div>
        </div>
    </div>
</div>
{{ section.content | safe }}
{% endblock content %}

{% block footer %}
<footer>
Built For ⁂ CENG489 ⁂ Introduction to Computer Security
</footer>
{% endblock footer %}