-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
45 lines (42 loc) · 1.78 KB
/
404.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
<!DOCTYPE html>
<html>
<head>
<title>Vitruvius Updatesites</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
}
@media (max-width: 839px) {
.images {
width: 100%;
}
}
@media (min-width: 840px) {
body {
max-width: 840px;
margin: auto;
}
.images {
width: 620px;
}
}
.page-title, .images {
align-self: center;
}
</style>
</head>
<body>
<h1 class="page-title">Vitruvius Updatesites</h1>
<span>To install Vitruvius, you can add our nightly or release updatesites within Eclipse and start installing features from them:</span>
<ul>
<li>Nightly: <a href=https://vitruv-tools.github.io/updatesite/nightly/aggregated>https://vitruv-tools.github.io/updatesite/nightly/aggregated</a></li>
<li>Release: <a href=https://vitruv-tools.github.io/updatesite/release>https://vitruv-tools.github.io/updatesite/release</a></li>
</ul>
<p>Within Eclipse, navigate to <em>Help - Install New Software</em> and click on the option.</p>
<img class="images" src="/updatesite/img/menu_install.png" alt="Eclipse menu to navigate to the installation window" />
<p>In the new window, paste the updatesite link into <em>Work with:</em>, press enter, and select the plugins you want to install.</p>
<img class="images" src="/updatesite/img/window_install.png" alt="Eclipse window to install new plugins" width="620px" />
</body>
</html>