-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
64 lines (63 loc) · 1.83 KB
/
index.html
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
---
layout: html
title: CrypTools - Learn
description: The best platform to learn cryptography
---
<article>
<section class="what">
<h1>Welcome on our platform to learn cryptography</h1>
<p>
Cryptography is the art of writing and solving problems in order to prevent third parties or the public from reading private messages. And as any art, it can be taught. This was our mission by creating this platform. You'll have some challenges to complete,
the first ones are easy, but don't worry, it will get much harder after some point.
<br><br>
<span class="italic">- CrypTools</span>
<br>
<a href="#levels">
Get Started
</a>
</p>
</section>
<section id="levels" class="levels">
<h2>Levels:</h2>
<h3>You don't know code?</h3>
<div class="progress">
<div class="bg"></div>
</div>
<div class="row noob">
{% for i in site.data.noob %}
<a href="./noob#{{i.name}}" target="_blank" id="{{i.name}}">
<span class="done"></span>
<h1>#{{ forloop.index }}</h1>
<h3>{{i.fancy}}</h3>
</a> {% endfor %}
</div>
<div class="expand">
<div class="more" id="0">
More <i class="material-icons">expand_more</i>
</div>
</div>
<h3>Know JavaScript?</h3>
<div class="progress">
<div class="bg"></div>
</div>
<div class="row js">
{% for i in site.data.challenges %}
<a href="./levels#{{i.name}}" target="_blank" id="{{i.name}}">
<span class="done"></span>
<h1>#{{ forloop.index }}</h1>
<h3>{{i.fancy}}</h3>
</a> {% endfor %}
</div>
<div class="expand">
<div class="more" id="1">
More <i class="material-icons">expand_more</i>
</div>
</div>
<div class="beoncomp">
<i class="material-icons">computer</i>
<p>
This section is not optimized for mobile devices. Please try on a computer. Otherwise it will be glitchy !
</p>
</div>
</section>
</article>