-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorials_refine.html
88 lines (77 loc) · 2.74 KB
/
tutorials_refine.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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="sidebar-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 new project</a></li>
<li class="active"><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>
<div class="video-description">
<p>A short video tutorial on how to perform a structure refinement with easyDiffraction.</p>
</div>
<div class="video-frame">
<video autobuffer controls muted> <!--- loop autoplay autobuffer controls muted --->
<source src="videos/ed_tutorials_analysis.mp4" type="video/mp4">
</video>
</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>