aboutsummaryrefslogtreecommitdiffstats
path: root/site/templates/index.html
diff options
context:
space:
mode:
authorYigit Sever2021-04-19 18:21:06 +0300
committerYigit Sever2021-04-19 18:21:06 +0300
commitdf6fa5f322fc972b3894e720f2c406eb2d8f5f5a (patch)
tree4864006b54c512dea971d0c50efcacca65b12c6e /site/templates/index.html
parentd1b2e4bbd8f1ec5fe40c3d8c85ea4d13c8bfd755 (diff)
downloadgradecoin-df6fa5f322fc972b3894e720f2c406eb2d8f5f5a.tar.gz
gradecoin-df6fa5f322fc972b3894e720f2c406eb2d8f5f5a.tar.bz2
gradecoin-df6fa5f322fc972b3894e720f2c406eb2d8f5f5a.zip
Moving site to separate repo
Diffstat (limited to 'site/templates/index.html')
-rw-r--r--site/templates/index.html68
1 files changed, 0 insertions, 68 deletions
diff --git a/site/templates/index.html b/site/templates/index.html
deleted file mode 100644
index 08e3c8a..0000000
--- a/site/templates/index.html
+++ /dev/null
@@ -1,68 +0,0 @@
1{% extends "juice/templates/index.html" %}
2
3{% block head %}
4<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
5<link rel="stylesheet" href="/site.css" />
6{% endblock head %}
7
8{% block hero %}
9
10<section class="text-center">
11 <h1 class="heading-text animate__animated animate__jackInTheBox" style="font-size: 50px">
12 Mine your own grades
13 </h1>
14 <h3 class="title-text">
15 <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
16 </h3>
17 <div>
18 </div>
19</section>
20<img class="hero-image" style="width: 40%" src="{{ get_url(path="gradecoin.png") }}">
21
22<div class="explore-more text"
23 onclick="document.getElementById('features').scrollIntoView({behavior: 'smooth'})">
24 ⇩ Learn How ⇩
25</div>
26
27<style>
28
29.hero section {
30 padding: 0 5rem;
31}
32
33@media screen and (max-width: 768px) {
34 .hero section {
35 padding: 0 2rem;
36 }
37
38 .hero-image {
39 display: none
40 }
41
42}
43footer {
44 color: #8b8b8b;
45}
46</style>
47{% endblock hero %}
48
49{% block content %}
50<div class="tcontainer" id="features">
51 <div class="ticker-wrap">
52 <div class="ticker-move">
53 <div class="ticker-item"><b>News:</b></div>
54 <div class="ticker-item">Gradecoin is in testnet mode, API is not stable, everything might reset at any time.</div>
55 <div class="ticker-item">Transactions are now unique according to their "by" field, sorry for the trouble</div>
56 <div class="ticker-item">Blocks now require 5 transactions in them, during testnet phase</div>
57 <div class="ticker-item">It was possible (and hilarious) to mine a new block with just 1 transaction, it is now fixed</div>
58 </div>
59 </div>
60</div>
61{{ section.content | safe }}
62{% endblock content %}
63
64{% block footer %}
65<footer>
66Built For ⁂ CENG489 ⁂ Introduction to Computer Security
67</footer>
68{% endblock footer %}