-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
83 lines (73 loc) · 2.46 KB
/
tutorials.html
File metadata and controls
83 lines (73 loc) · 2.46 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<!--- HEAD --->
<head>
<meta charset="UTF-8">
<link href="style/main.css" rel="stylesheet">
<link href="style/tutorials.css" rel="stylesheet">
<link href="icons/easydiffraction.ico" rel="shortcut icon" type="image/x-icon">
<title>easyDiffraction Video Tutorials</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-153564910-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-153564910-1');
</script>
</head>
<!--- HEAD --->
<!--- BODY --->
<body>
<!--- header with navigation --->
<header>
<section>
<nav>
<ul>
<li><a href="index.html"><img src="icons/easydiffraction.svg">easyDiffraction</a></li>
<li><a class="active" href="documentation.html"><img src="icons/book-reader.svg">Documentation</a></li>
<li><a href="contact.html"><img src="icons/envelope.svg">Contact</a></li>
</ul>
</nav>
</section>
</header>
<!--- header with navigation --->
<!--- main --->
<div class="main">
<section>
<div class="title-area">
<h1>Video Tutorials</h1>
<p>Last update: 18 May 2020</p>
</div>
<div class="toc-area">
<ul>
<li><a href="tutorials_start.html">easyDiffraction in 8 minutes</a></li>
<li><a href="tutorials_install.html">How to install</a></li>
<li><a href="tutorials_new-project.html">Create a new project</a></li>
<li><a href="tutorials_refine.html">Structure refinement</a></li>
<li><a href="tutorials_undo-redo.html">Undo/redo changes</a></li>
<li><a href="tutorials_save-project.html">Unsaved project warnings</a></li>
<li><a href="tutorials_slider.html">Manual change of parameters</a></li>
</ul>
</div>
</section>
</div>
<!--- main --->
<!--- footer with navigation --->
<footer>
<section>
<nav>
<ul>
<li>2020 <a href="index.html">easyDiffraction.org</a></li>
<li>•</li>
<li><a href="https://github.com/easyDiffraction/easyDiffraction"><img src="icons/github.svg">GitHub</a></li>
<li>•</li>
<li>Designed by <a href="http://sazonov.org">Andrew Sazonov</a></li>
</ul>
</nav>
</section>
</footer>
<!--- footer with navigation --->
<!--- BODY --->
</body>
</html>