-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (54 loc) · 2.32 KB
/
index.html
File metadata and controls
64 lines (54 loc) · 2.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="author" content="Jefferson Barros Vieira">
<meta name="dcterms.created" content="08-14-2025">
<meta name="email" content="jefferson.vieira@lnls.br">
<meta name="organization" content="LNLS Insertion Devices and Photon Diagnostic Group">
<meta name="copyright" content="2025">
<link rel="author" href="https://github.com/JeffersonBarrosVieira">
<title>Undulator Simulation</title>
<link rel="stylesheet" href="./src/css/main.css">
</head>
<body>
<div class="container">
<header class="site-title">
<h1>Undulator Simulation</h1>
</header>
<h2>Choose the Undulator</h2>
<p class="lead">Click on one of the cards below for the corresponding Undulator.</p>
<div class="grid">
<a href="agu.html" class="card agu" role="button" aria-label="Open AGU">
<div>
<span class="title">AGU</span>
<span class="subtitle"><code>Adjustable Gap Undulator</code>.</span>
</div>
</a>
<a href="apu.html" class="card apu" role="button" aria-label="Open APU">
<div>
<span class="title">APU</span>
<span class="subtitle"><code>Adjustable Phase Undulator</code>.</span>
</div>
</a>
<a href="apple-ii.html" class="card apple" role="button" aria-label="Open APPLE-II">
<div>
<span class="title">APPLE-II</span>
<span class="subtitle"><code>Advanced Planar Polarized Light Emitter - type II</code>.</span>
</div>
</a>
<a href="delta.html" class="card delta" role="button" aria-label="Open DELTA">
<div>
<span class="title">DELTA</span>
<span class="subtitle"><code>Advanced Planar Polarized Light Emitter - type DELTA</code>.</span>
</div>
</a>
</div>
<h3>Under construction...</h3>
<footer>
<div class="copyright">2025 © LNLS Insertion Devices and Photon Diagnostic Group</div>
</footer>
</div>
</body>
</html>